Install
Connect your coding agent.
Drop the Grapha install into your project. Your coding agent reads the workspace, picks up tasks, and writes back what it ships. You stay in control.
How it works
- Open your project in Grapha. Hit
+ Agentin the top bar. Grapha generates a project token and an install command. - Run the install. Paste it into your agent's terminal or config. The agent receives a SKILL.md with your project's API endpoints and behavioral policy.
- Start building. Your agent reads the project, picks up tasks, writes code, and reports back. Every step shows up in Grapha.
Supported agents
Claude Code
Drops SKILL.md into your project's skill directory. Claude Code reads it on the next session.
mkdir -p .claude/skills/rigor && curl -s https://grapha.agency/p/{project_id}/skill -o .claude/skills/rigor/SKILL.mdCursor
Writes the policy to .cursorrules. Cursor loads it on the next edit.
curl -s https://grapha.agency/p/{project_id}/skill -o .cursorrulesAny HTTP agent
Any agent that speaks HTTP. Read project state, push edits, move tasks. All via REST.
curl -H "Authorization: Bearer <your-token>" \
-H "X-Agent-Id: my-agent" \
https://grapha.agency/api/coplanner/agent/stateHTTP surface
Every workspace action is also available over HTTP. Bearer-token auth, project-scoped.
GET/stateRead the full projectPOST/writeEdit a documentPOST/cardsCreate or move a taskPOST/annotateDrop a finding on the canvasPOST/presenceStream live status