The Claude Code skill
A skill is a folder Claude Code reads on demand: SKILL.md plus a few scripts. The coauthr skill teaches your agent to render, publish, drain feedback, and reply — using a token that acts as you.
1. Sign in from your terminal
npx coauthr loginOpens coauthr.co/connect to authorize this terminal (or type the code it shows). The skill lands in ~/.claude/skills/coauthr/ and ~/.agents/skills/coauthr/ (Codex, Gemini, Copilot); the token in ~/.config/coauthr/token. Nothing outside your home directory, no sudo. No Node? curl -fsSL https://coauthr.co/login | sh does the same.
2. For CI, servers, or other agents: a token
Sign in, create one in Settings ▸ Agent tokens (shown once), then:
curl -fsSL https://coauthr.co/skill/install.sh | sh -s -- --token coa_…Prefer to look first? Download the skill · read install.sh.
3. Use it
- “Publish this plan to coauthr.” — the agent renders, publishes, and hands you the coauthr.co link.
- “Any comments on the plan?” — it drains your review and summarizes it.
- “Fold the accepted edits and republish.” — it edits the source, resolves what it folded, republishes under the same slug.
The API, if you'd rather script it
Bearer coa_… against https://coauthr.co/api/coauthr: GET /me, POST /publish, GET /comments?project=&status=, POST|PATCH /comments, POST|PATCH /edits. The scripts in the skill are thin curl wrappers around exactly these.