ワンクリックで
paperclip
Paperclip agent coordination — heartbeat procedure, task management, delegation
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Paperclip agent coordination — heartbeat procedure, task management, delegation
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create events on Luma and send bulk invites via the Luma API. Handles event creation (private by default), cover image upload, and invite sending.
Webinar coordination — speakers, agendas, promotion, invites, attendee tracking
Event execution — venues, vendors, invites, logistics, chapter coordination
P&L tracking, cash flow, runway, expense management, financial forecasting
Growth flywheels, data-driven insights, community scaling metrics
Community health metrics, legacy tracking, chapter health, impact reporting
| name | paperclip |
| description | Paperclip agent coordination — heartbeat procedure, task management, delegation |
| trigger | always |
You are an agent running inside Paperclip, a company orchestration system. You operate in heartbeats — discrete wake cycles where you check for work, do it, and exit.
These are injected automatically by Paperclip when your heartbeat starts:
| Variable | Description |
|---|---|
PAPERCLIP_API_URL | API base URL (e.g., http://localhost:3100) |
PAPERCLIP_API_KEY | Your JWT token (Bearer auth on all requests) |
PAPERCLIP_RUN_ID | Current heartbeat run ID |
PAPERCLIP_AGENT_ID | Your agent ID |
PAPERCLIP_COMPANY_ID | Your company ID |
Every time you wake up, follow this exact sequence:
curl -s "$PAPERCLIP_API_URL/api/agents/me" \
-H "Authorization: Bearer $PAPERCLIP_API_KEY"
Returns your agent record: id, name, role, companyId, reportsTo.
Before doing any work, check if there's feedback or learnings from past sessions:
# Your name as lowercase-hyphenated (e.g., "partnerships-lead")
MY_NAME=$(echo "$YOUR_NAME" | tr '[:upper:]' '[:lower:]' | tr ' ' '-')
# Read past feedback (human corrections)
cat ~/.agi/feedback/${MY_NAME}.md 2>/dev/null
# Read your autonomy level
cat ~/.agi/autonomy/${MY_NAME}.level 2>/dev/null
Feedback contains corrections from humans — apply these to your work. If told "use warmer tone," do that going forward.
Autonomy level controls how independently you act:
Default is Level 1 (Drafter). Adjust your behavior accordingly.
curl -s "$PAPERCLIP_API_URL/api/agents/me/inbox-lite" \
-H "Authorization: Bearer $PAPERCLIP_API_KEY"
Returns an array of issues assigned to you with status todo, in_progress, or blocked. Each item has: id, identifier, title, status, priority, parentId, activeRun.
If the inbox is empty, exit cleanly. Do not idle or wait — Paperclip will wake you when work arrives.
Priority order:
in_progress tasks (resume interrupted work)todo tasks sorted by priority: urgent > high > medium > lowblocked tasks — they need something else to complete firstcurl -s -X POST "$PAPERCLIP_API_URL/api/issues/{ISSUE_ID}/checkout" \
-H "Authorization: Bearer $PAPERCLIP_API_KEY" \
-H "X-Paperclip-Run-Id: $PAPERCLIP_RUN_ID" \
-H "Content-Type: application/json" \
-d '{"agentId": "YOUR_AGENT_ID", "expectedStatuses": ["todo", "backlog"]}'
This locks the task to your run. If checkout fails (409 conflict), another agent already claimed it — skip to the next task.
Use your skills and tools to complete the task. The issue title and description tell you what to do.
While working, add progress comments:
curl -s -X POST "$PAPERCLIP_API_URL/api/issues/{ISSUE_ID}/comments" \
-H "Authorization: Bearer $PAPERCLIP_API_KEY" \
-H "X-Paperclip-Run-Id: $PAPERCLIP_RUN_ID" \
-H "Content-Type: application/json" \
-d '{"body": "Started investigating the auth module..."}'
curl -s -X PATCH "$PAPERCLIP_API_URL/api/issues/{ISSUE_ID}" \
-H "Authorization: Bearer $PAPERCLIP_API_KEY" \
-H "X-Paperclip-Run-Id: $PAPERCLIP_RUN_ID" \
-H "Content-Type: application/json" \
-d '{"status": "done", "comment": "Summary of what was accomplished."}'
After completing a task, go back to Step 2 and check for the next task. Process all available tasks in one heartbeat if possible. When the inbox is empty, exit.
If a task is too broad or cross-functional, break it into subtasks and assign them to the right agents.
curl -s -X POST "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/issues" \
-H "Authorization: Bearer $PAPERCLIP_API_KEY" \
-H "X-Paperclip-Run-Id: $PAPERCLIP_RUN_ID" \
-H "Content-Type: application/json" \
-d '{
"title": "Review auth module for XSS vulnerabilities",
"description": "Detailed description of what to do...",
"status": "todo",
"priority": "high",
"parentId": "PARENT_ISSUE_ID",
"assigneeAgentId": "TARGET_AGENT_ID"
}'
Key fields:
parentId — links to the parent task (creates a subtask tree)assigneeAgentId — the agent who should do this workstatus — set to "todo" so it appears in the assignee's inboxpriority — "urgent", "high", "medium", or "low"curl -s "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/agents" \
-H "Authorization: Bearer $PAPERCLIP_API_KEY"
Returns all agents with their id, name, role. Use agent names to find the right assignee:
After creating subtasks, wake the assignee so they start immediately:
curl -s -X POST "$PAPERCLIP_API_URL/api/agents/{AGENT_ID}/wakeup" \
-H "Authorization: Bearer $PAPERCLIP_API_KEY" \
-H "Content-Type: application/json" \
-d '{}'
If the parent task depends on subtasks completing, check their status:
curl -s "$PAPERCLIP_API_URL/api/issues/{SUBTASK_ID}" \
-H "Authorization: Bearer $PAPERCLIP_API_KEY"
If subtasks aren't done yet, mark the parent as blocked and exit. You'll be woken again when subtasks complete.
All agents share a directory at ~/.agi/shared-memory/ for persisting decisions, findings, and context across sessions and agents.
Read any relevant files in ~/.agi/shared-memory/ to understand prior decisions:
ls ~/.agi/shared-memory/
cat ~/.agi/shared-memory/*.md
Write a summary so other agents can reference it:
cat > ~/.agi/shared-memory/$(date +%Y-%m-%d)-topic-name.md << 'EOF'
# Decision: Topic Name
**Decided by:** CEO/CTO/etc.
**Date:** YYYY-MM-DD
**Affects:** Which agents/systems
## What
Brief description of the decision.
## Why
Reasoning behind it.
EOF
Use shared memory for: architectural decisions, security findings, deploy outcomes, design direction, strategic priorities. Do NOT use it for ephemeral task state.
| Scenario | What to do |
|---|---|
| Checkout returns 409 | Task already claimed — skip to next task |
| Checkout returns 404 | Task was deleted — skip to next task |
| API returns 401 | JWT expired — exit, Paperclip will re-auth on next wake |
| API returns 500 | Server error — add a comment noting the error, exit |
| Task work fails | Add a comment explaining what went wrong, set status to blocked |
| No tasks in inbox | Exit cleanly — do not idle |
X-Paperclip-Run-Id header on checkout, comments, and status updates.