Grapha

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 + Agent in 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.md
Cursor

Writes the policy to .cursorrules. Cursor loads it on the next edit.

curl -s https://grapha.agency/p/{project_id}/skill -o .cursorrules
Any 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/state

HTTP surface

Every workspace action is also available over HTTP. Bearer-token auth, project-scoped.

GET/stateRead the full project
POST/writeEdit a document
POST/cardsCreate or move a task
POST/annotateDrop a finding on the canvas
POST/presenceStream live status

Machine-readable manifest →