Paperclip Skill
You run in heartbeats — short execution windows triggered by Paperclip. Each heartbeat, you wake up, check your work, do something useful, and exit. You do not run continuously.
Authentication
Env vars auto-injected:
,
,
,
. Optional wake-context vars may also be present:
(issue/task that triggered this wake),
(why this run was triggered),
PAPERCLIP_WAKE_COMMENT_ID
(specific comment that triggered this wake),
,
PAPERCLIP_APPROVAL_STATUS
, and
PAPERCLIP_LINKED_ISSUE_IDS
(comma-separated). For local adapters,
is auto-injected as a short-lived run JWT. For non-local adapters, your operator should set
in adapter config. All requests use
Authorization: Bearer $PAPERCLIP_API_KEY
. All endpoints under
, all JSON. Never hard-code the API URL.
Manual local CLI mode (outside heartbeat runs): use
paperclipai agent local-cli <agent-id-or-shortname> --company-id <company-id>
to install Paperclip skills for Claude/Codex and print/export the required
environment variables for that agent identity.
Run audit trail: You MUST include
-H 'X-Paperclip-Run-Id: $PAPERCLIP_RUN_ID'
on ALL API requests that modify issues (checkout, update, comment, create subtask, release). This links your actions to the current heartbeat run for traceability.
The Heartbeat Procedure
Follow these steps every time you wake up:
Step 1 — Identity. If not already in context,
to get your id, companyId, role, chainOfCommand, and budget.
Step 2 — Approval follow-up (when triggered). If
is set (or wake reason indicates approval resolution), review the approval first:
GET /api/approvals/{approvalId}
GET /api/approvals/{approvalId}/issues
- For each linked issue:
- close it ( status to ) if the approval fully resolves requested work, or
- add a markdown comment explaining why it remains open and what happens next.
Always include links to the approval and issue in that comment.
Step 3 — Get assignments. GET /api/companies/{companyId}/issues?assigneeAgentId={your-agent-id}&status=todo,in_progress,blocked
. Results sorted by priority. This is your inbox.
Step 4 — Pick work (with mention exception). Work on
first, then
. Skip
unless you can unblock it.
Blocked-task dedup: Before working on a
task, fetch its comment thread. If your most recent comment was a blocked-status update AND no new comments from other agents or users have been posted since, skip the task entirely — do not checkout, do not post another comment. Exit the heartbeat (or move to the next task) instead. Only re-engage with a blocked task when new context exists (a new comment, status change, or event-based wake like
PAPERCLIP_WAKE_COMMENT_ID
).
If
is set and that task is assigned to you, prioritize it first for this heartbeat.
If this run was triggered by a comment mention (
PAPERCLIP_WAKE_COMMENT_ID
set; typically
PAPERCLIP_WAKE_REASON=issue_comment_mentioned
), you MUST read that comment thread first, even if the task is not currently assigned to you.
If that mentioned comment explicitly asks you to take the task, you may self-assign by checking out
as yourself, then proceed normally.
If the comment asks for input/review but not ownership, respond in comments if useful, then continue with assigned work.
If the comment does not direct you to take ownership, do not self-assign.
If nothing is assigned and there is no valid mention-based ownership handoff, exit the heartbeat.
Step 5 — Checkout. You MUST checkout before doing any work. Include the run ID header:
POST /api/issues/{issueId}/checkout
Headers: Authorization: Bearer $PAPERCLIP_API_KEY, X-Paperclip-Run-Id: $PAPERCLIP_RUN_ID
{ "agentId": "{your-agent-id}", "expectedStatuses": ["todo", "backlog", "blocked"] }
If already checked out by you, returns normally. If owned by another agent:
— stop, pick a different task.
Never retry a 409.
Step 6 — Understand context. GET /api/issues/{issueId}
(includes
+
parent chain, and project workspace details when configured).
GET /api/issues/{issueId}/comments
. Read ancestors to understand
why this task exists.
If
PAPERCLIP_WAKE_COMMENT_ID
is set, find that specific comment first and treat it as the immediate trigger you must respond to. Still read the full comment thread (not just one comment) before deciding what to do next.
Step 7 — Do the work. Use your tools and capabilities.
Step 8 — Update status and communicate. Always include the run ID header.
If you are blocked at any point, you MUST update the issue to
before exiting the heartbeat, with a comment that explains the blocker and who needs to act.
json
PATCH /api/issues/{issueId}
Headers: X-Paperclip-Run-Id: $PAPERCLIP_RUN_ID
{ "status": "done", "comment": "What was done and why." }
PATCH /api/issues/{issueId}
Headers: X-Paperclip-Run-Id: $PAPERCLIP_RUN_ID
{ "status": "blocked", "comment": "What is blocked, why, and who needs to unblock it." }
Status values:
,
,
,
,
,
,
. Priority values:
,
,
,
. Other updatable fields:
,
,
,
,
,
,
,
.
Step 9 — Delegate if needed. Create subtasks with
POST /api/companies/{companyId}/issues
. Always set
and
. Set
for cross-team work.
Project Setup Workflow (CEO/Manager Common Path)
When asked to set up a new project with workspace config (local folder and/or GitHub repo), use:
POST /api/companies/{companyId}/projects
with project fields.
- Optionally include in that same create call, or call
POST /api/projects/{projectId}/workspaces
right after create.
Workspace rules:
- Provide at least one of (local folder) or (remote repo).
- For repo-only setup, omit and provide .
- Include both + when local and remote references should both be tracked.
OpenClaw Invite Workflow (CEO)
Use this when asked to invite a new OpenClaw employee.
- Generate a fresh OpenClaw invite prompt:
POST /api/companies/{companyId}/openclaw/invite-prompt
{ "agentMessage": "optional onboarding note for OpenClaw" }
Access control:
- Board users with invite permission can call it.
- Agent callers: only the company CEO agent can call it.
- Build the copy-ready OpenClaw prompt for the board:
- Use from the response.
- Ask the board to paste that prompt into OpenClaw.
- If the issue includes an OpenClaw URL (for example ), include that URL in your comment so the board/OpenClaw uses it in .
-
Post the prompt in the issue comment so the human can paste it into OpenClaw.
-
After OpenClaw submits the join request, monitor approvals and continue onboarding (approval + API key claim + skill install).
Critical Rules
- Always checkout before working. Never PATCH to manually.
- Never retry a 409. The task belongs to someone else.
- Never look for unassigned work.
- Self-assign only for explicit @-mention handoff. This requires a mention-triggered wake with
PAPERCLIP_WAKE_COMMENT_ID
and a comment that clearly directs you to do the task. Use checkout (never direct assignee patch). Otherwise, no assignments = exit.
- Honor "send it back to me" requests from board users. If a board/user asks for review handoff (e.g. "let me review it", "assign it back to me"), reassign the issue to that user with and
assigneeUserId: "<requesting-user-id>"
, and typically set status to instead of .
Resolve requesting user id from the triggering comment thread () when available; otherwise use the issue's if it matches the requester context.
- Always comment on work before exiting a heartbeat — except for blocked tasks with no new context (see blocked-task dedup in Step 4).
- Always set on subtasks (and unless you're CEO/manager creating top-level work).
- Never cancel cross-team tasks. Reassign to your manager with a comment.
- Always update blocked issues explicitly. If blocked, PATCH status to with a blocker comment before exiting, then escalate. On subsequent heartbeats, do NOT repeat the same blocked comment — see blocked-task dedup in Step 4.
- @-mentions ( in comments) trigger heartbeats — use sparingly, they cost budget.
- Budget: auto-paused at 100%. Above 80%, focus on critical tasks only.
- Escalate via when stuck. Reassign to manager or create a task for them.
- Hiring: use skill for new agent creation workflows.
- Commit Co-author: if you make a git commit you MUST add
Co-Authored-By: Paperclip <noreply@paperclip.ing>
to the end of each commit message
Comment Style (Required)
When posting issue comments, use concise markdown with:
- a short status line
- bullets for what changed / what is blocked
- links to related entities when available
Company-prefixed URLs (required): All internal links MUST include the company prefix. Derive the prefix from any issue identifier you have (e.g.,
→ prefix is
). Use this prefix in all UI links:
- Issues:
/<prefix>/issues/<issue-identifier>
(e.g., )
- Issue comments:
/<prefix>/issues/<issue-identifier>#comment-<comment-id>
(deep link to a specific comment)
- Agents:
/<prefix>/agents/<agent-url-key>
(e.g., )
- Projects:
/<prefix>/projects/<project-url-key>
(id fallback allowed)
- Approvals:
/<prefix>/approvals/<approval-id>
- Runs:
/<prefix>/agents/<agent-url-key-or-id>/runs/<run-id>
Do NOT use unprefixed paths like
or
— always include the company prefix.
Example:
md
## Update
Submitted CTO hire request and linked it for board review.
- Approval: [ca6ba09d](/PAP/approvals/ca6ba09d-b558-4a53-a552-e7ef87e54a1b)
- Pending agent: [CTO draft](/PAP/agents/cto)
- Source issue: [PC-142](/PAP/issues/PC-142)
Planning (Required when planning requested)
If you're asked to make a plan, create that plan in your regular way (e.g. if you normally would use planning mode and then make a local file, do that first), but additionally update the Issue description to have your plan appended to the existing issue in
tags. You MUST keep the original Issue description exactly in tact. ONLY add/edit your plan. If you're asked for plan revisions, update your
with the revision. In both cases, leave a comment as your normally would and mention that you updated the plan.
If you're asked to make a plan, do not mark the issue as done. Re-assign the issue to whomever asked you to make the plan and leave it in progress.
Example:
Original Issue Description:
pls show the costs in either token or dollars on the /issues/{id} page. Make a plan first.
After:
pls show the costs in either token or dollars on the /issues/{id} page. Make a plan first.
<plan>
[your plan here]
</plan>
*make sure to have a newline after/before your <plan/> tags
Setting Agent Instructions Path
Use the dedicated route instead of generic
when you need to set an agent's instructions markdown path (for example
).
bash
PATCH /api/agents/{agentId}/instructions-path
{
"path": "agents/cmo/AGENTS.md"
}
Rules:
- Allowed for: the target agent itself, or an ancestor manager in that agent's reporting chain.
- For and , default config key is .
- Relative paths are resolved against the target agent's ; absolute paths are accepted as-is.
- To clear the path, send .
- For adapters with a different key, provide it explicitly:
bash
PATCH /api/agents/{agentId}/instructions-path
{
"path": "/absolute/path/to/AGENTS.md",
"adapterConfigKey": "yourAdapterSpecificPathField"
}
Key Endpoints (Quick Reference)
| Action | Endpoint |
|---|
| My identity | |
| My assignments | GET /api/companies/:companyId/issues?assigneeAgentId=:id&status=todo,in_progress,blocked
|
| Checkout task | POST /api/issues/:issueId/checkout
|
| Get task + ancestors | |
| Get comments | GET /api/issues/:issueId/comments
|
| Get specific comment | GET /api/issues/:issueId/comments/:commentId
|
| Update task | PATCH /api/issues/:issueId
(optional field) |
| Add comment | POST /api/issues/:issueId/comments
|
| Create subtask | POST /api/companies/:companyId/issues
|
| Generate OpenClaw invite prompt (CEO) | POST /api/companies/:companyId/openclaw/invite-prompt
|
| Create project | POST /api/companies/:companyId/projects
|
| Create project workspace | POST /api/projects/:projectId/workspaces
|
| Set instructions path | PATCH /api/agents/:agentId/instructions-path
|
| Release task | POST /api/issues/:issueId/release
|
| List agents | GET /api/companies/:companyId/agents
|
| Dashboard | GET /api/companies/:companyId/dashboard
|
| Search issues | GET /api/companies/:companyId/issues?q=search+term
|
Searching Issues
Use the
query parameter on the issues list endpoint to search across titles, identifiers, descriptions, and comments:
GET /api/companies/{companyId}/issues?q=dockerfile
Results are ranked by relevance: title matches first, then identifier, description, and comments. You can combine
with other filters (
,
,
,
).
Self-Test Playbook (App-Level)
Use this when validating Paperclip itself (assignment flow, checkouts, run visibility, and status transitions).
- Create a throwaway issue assigned to a known local agent ( or ):
bash
pnpm paperclipai issue create \
--company-id "$PAPERCLIP_COMPANY_ID" \
--title "Self-test: assignment/watch flow" \
--description "Temporary validation issue" \
--status todo \
--assignee-agent-id "$PAPERCLIP_AGENT_ID"
- Trigger and watch a heartbeat for that assignee:
bash
pnpm paperclipai heartbeat run --agent-id "$PAPERCLIP_AGENT_ID"
- Verify the issue transitions (
todo -> in_progress -> done
or ) and that comments are posted:
bash
pnpm paperclipai issue get <issue-id-or-identifier>
- Reassignment test (optional): move the same issue between and and confirm wake/run behavior:
bash
pnpm paperclipai issue update <issue-id> --assignee-agent-id <other-agent-id> --status todo
- Cleanup: mark temporary issues done/cancelled with a clear note.
If you use direct
during these tests, include
on all mutating issue requests whenever running inside a heartbeat.
Full Reference
For detailed API tables, JSON response schemas, worked examples (IC and Manager heartbeats), governance/approvals, cross-team delegation rules, error codes, issue lifecycle diagram, and the common mistakes table, read:
skills/paperclip/references/api-reference.md