Loading...
Loading...
Manage a Paperclip company as a board member via chat. Covers onboarding (company creation, CEO setup, hiring plans), agent management, approvals, task monitoring, cost oversight, and work product review. Use this skill whenever the user wants to interact with their Paperclip control plane.
npx skill4agent add getpaperclipai/paperclip paperclip-boardpaperclipai board setupPAPERCLIP_API_URLhttp://localhost:3100PAPERCLIP_COMPANY_IDlocal_trustedPAPERCLIP_API_KEYAuthorization: Bearer $PAPERCLIP_API_KEYcurl -sS/apiContent-Type: application/json$PAPERCLIP_API_URL$PAPERCLIP_API_URL/{companyPrefix}/...PAPERCLIP_API_URLpnpm paperclipai board setupPAPERCLIP_COMPANY_IDGET $PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/issues?q=board+operations&status=todo,in_progressdecision-log# Fetch dashboard
curl -sS "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/dashboard"{Company Name} Dashboard
────────────────────────
Agents: {active} active, {paused} paused
Tasks: {open} open ({inProgress} in progress, {blocked} blocked)
Budget: ${monthSpendCents/100} / ${monthBudgetCents/100} this month ({utilization}%)
Pending approvals: {pendingApprovals}
{If pendingApprovals > 0: list them briefly}
{If blocked > 0: mention blocked tasks}# List existing companies
curl -sS "$PAPERCLIP_API_URL/api/companies"
# Create a new company
curl -sS -X POST "$PAPERCLIP_API_URL/api/companies" \
-H "Content-Type: application/json" \
-d '{
"name": "Company Name",
"description": "Company mission / description",
"budgetMonthlyCents": 50000
}'descriptionidissuePrefixPAPERCLIP_COMPANY_IDrequireBoardApprovalForNewAgents: truecurl -sS -X PATCH "$PAPERCLIP_API_URL/api/companies/{companyId}" \
-H "Content-Type: application/json" \
-d '{"requireBoardApprovalForNewAgents": true}'# Discover available adapters
curl -sS "$PAPERCLIP_API_URL/llms/agent-configuration.txt"
# Read adapter-specific docs (e.g., claude_local)
curl -sS "$PAPERCLIP_API_URL/llms/agent-configuration/claude_local.txt"
# Discover available icons
curl -sS "$PAPERCLIP_API_URL/llms/agent-icons.txt"
# Submit hire request
curl -sS -X POST "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/agent-hires" \
-H "Content-Type: application/json" \
-d '{
"name": "CEO Name",
"role": "ceo",
"title": "Chief Executive Officer",
"icon": "crown",
"capabilities": "Strategic planning, team management, task delegation",
"adapterType": "claude_local",
"adapterConfig": {
"cwd": "/path/to/working/directory",
"model": "sonnet"
},
"runtimeConfig": {
"heartbeat": {"enabled": true, "intervalSec": 300, "wakeOnDemand": true}
},
"permissions": {"canCreateAgents": true},
"budgetMonthlyCents": 10000
}'claude_localrequireBoardApprovalForNewAgents: true# Check pending approvals
curl -sS "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/approvals?status=pending"
# Approve the CEO hire
curl -sS -X POST "$PAPERCLIP_API_URL/api/approvals/{approvalId}/approve" \
-H "Content-Type: application/json" \
-d '{"decisionNote": "CEO hire approved by board during onboarding"}'curl -sS -X POST "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/issues" \
-H "Content-Type: application/json" \
-d '{
"title": "Board Operations",
"description": "Standing issue for board decision log and operations tracking",
"status": "in_progress",
"priority": "medium"
}'curl -sS -X PUT "$PAPERCLIP_API_URL/api/issues/{boardIssueId}/documents/decision-log" \
-H "Content-Type: application/json" \
-d '{
"title": "Decision Log",
"format": "markdown",
"body": "# Decision Log — {Company Name}\n\n## {today date}\n- Created company {name} with mission: {description}\n- Hired CEO agent \"{ceo name}\"\n"
}'./artifacts/decision-log.mdcurl -sS -X POST "$PAPERCLIP_API_URL/api/agents/{ceoId}/heartbeat/invoke" \
-H "Content-Type: application/json"# Create the hiring plan issue
curl -sS -X POST "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/issues" \
-H "Content-Type: application/json" \
-d '{
"title": "Hiring Plan",
"description": "Develop and execute the team hiring plan",
"status": "in_progress",
"priority": "high"
}'
# Attach the plan document
curl -sS -X PUT "$PAPERCLIP_API_URL/api/issues/{issueId}/documents/hiring-plan" \
-H "Content-Type: application/json" \
-d '{
"title": "Hiring Plan",
"format": "markdown",
"body": "# Hiring Plan\n\n## Roles\n\n### 1. Role Name\n- Focus: ...\n- Reports to: ...\n- Budget: ...\n"
}'./artifacts/hiring-plan.md./artifacts/hiring-plan.mdGET /api/issues/{id}/documents/hiring-plan# {Agent Name}
## Description
{One-line role summary}
## Expertise
{Core expertise — what this agent knows, how it thinks, what it does}
## Priorities
{Ordered list of what matters most for this agent's work}
## Boundaries
{What this agent should NOT do, scope limits, guardrails}
## Tool Permissions
{Which tools/APIs this agent can use, and any exclusions}
## Communication Guidelines
{How this agent reports status, asks for help, formats output}
## Collaboration & Escalation
{Which agents this one works with, when to escalate, to whom}# Compare existing agent configurations
curl -sS "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/agent-configurations"
# Submit hire request
curl -sS -X POST "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/agent-hires" \
-H "Content-Type: application/json" \
-d '{
"name": "Agent Name",
"role": "general",
"title": "Role Title",
"icon": "icon-name",
"reportsTo": "{ceo-or-manager-agent-id}",
"capabilities": "What this agent can do",
"adapterType": "claude_local",
"adapterConfig": {
"cwd": "/path/to/working/directory",
"model": "sonnet",
"systemPrompt": "... the full system prompt from the template ..."
},
"runtimeConfig": {
"heartbeat": {"enabled": true, "intervalSec": 300, "wakeOnDemand": true}
},
"budgetMonthlyCents": 5000
}'reportsToHiring @designer — proposed escalation path updates:
Org-based (same reporting chain):
@ceo — add: "@designer handles brand assets, visual design, UX research.
Route design reviews through @designer."
@frontend-engineer — add: "Escalate visual design decisions to @designer.
Request mockups before building new UI components."
Additionally recommended:
@content-strategist — add: "Request visual assets (headers, social images)
from @designer. Coordinate brand voice with design."
Reason: Content pipeline will need visual assets for blog posts and social.
Approve these updates? (approve all / review individually / edit)# Fetch current config first (write-path freshness)
curl -sS "$PAPERCLIP_API_URL/api/agents/{agentId}"
# Update the agent's config with new escalation paths
curl -sS -X PATCH "$PAPERCLIP_API_URL/api/agents/{agentId}" \
-H "Content-Type: application/json" \
-d '{
"adapterConfig": { ... updated config with new Collaboration section ... }
}'# List pending approvals
curl -sS "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/approvals?status=pending"
# Approve
curl -sS -X POST "$PAPERCLIP_API_URL/api/approvals/{id}/approve" \
-H "Content-Type: application/json" \
-d '{"decisionNote": "Approved by board"}'
# Reject
curl -sS -X POST "$PAPERCLIP_API_URL/api/approvals/{id}/reject" \
-H "Content-Type: application/json" \
-d '{"decisionNote": "Reason for rejection"}'
# Request revision
curl -sS -X POST "$PAPERCLIP_API_URL/api/approvals/{id}/request-revision" \
-H "Content-Type: application/json" \
-d '{"decisionNote": "Please adjust X, Y, Z"}'Pending Approvals
─────────────────
1. [hire] Designer — submitted by @ceo
View: {baseUrl}/{prefix}/approvals/{id}
→ approve / reject / request revision
2. [tool] Icon library ($12/mo) — requested by @designer
→ approve / reject# List open tasks
curl -sS "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/issues?status=todo,in_progress,blocked"
# Get task detail
curl -sS "$PAPERCLIP_API_URL/api/issues/{issueId}"
# Get task comments
curl -sS "$PAPERCLIP_API_URL/api/issues/{issueId}/comments"
# Create a task
curl -sS -X POST "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/issues" \
-H "Content-Type: application/json" \
-d '{
"title": "Task title",
"description": "What needs to be done",
"status": "todo",
"priority": "medium",
"assigneeAgentId": "{agent-id}",
"projectId": "{project-id}",
"parentId": "{parent-issue-id}"
}'
# Update a task
curl -sS -X PATCH "$PAPERCLIP_API_URL/api/issues/{issueId}" \
-H "Content-Type: application/json" \
-d '{"status": "done", "comment": "Completed"}'
# Add a comment
curl -sS -X POST "$PAPERCLIP_API_URL/api/issues/{issueId}/comments" \
-H "Content-Type: application/json" \
-d '{"body": "Comment text in markdown"}'
# Search issues
curl -sS "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/issues?q=search+term"{PREFIX}-{number}: {title} [{status}] → @{assignee}
Priority: {priority}
Latest: "{last comment snippet...}"
View: {baseUrl}/{prefix}/issues/{identifier}# List all agents
curl -sS "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/agents"
# Get agent detail
curl -sS "$PAPERCLIP_API_URL/api/agents/{id}"
# Get agent config revisions (change history)
curl -sS "$PAPERCLIP_API_URL/api/agents/{id}/config-revisions"Team Overview
─────────────
@ceo (Atlas) — active, last heartbeat 5m ago
Budget: $45 / $100 (45%)
Working on: PAP-12 Homepage redesign
@frontend-engineer — active, last heartbeat 2m ago
Budget: $30 / $50 (60%)
Working on: PAP-15 Blog template# Overall summary
curl -sS "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/costs/summary"
# Breakdown by agent
curl -sS "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/costs/by-agent"
# Breakdown by project
curl -sS "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/costs/by-project"
# Optional date range
curl -sS "$PAPERCLIP_API_URL/api/companies/$PAPERCLIP_COMPANY_ID/costs/summary?from=2026-03-01&to=2026-03-31"Costs This Month
────────────────
Total: $145.23 / $500.00 (29%)
By Agent:
@ceo $45.12 (31%)
@frontend-eng $62.30 (43%)
@content-strat $37.81 (26%)# List work products for an issue
curl -sS "$PAPERCLIP_API_URL/api/issues/{issueId}/work-products"
# View a document
curl -sS "$PAPERCLIP_API_URL/api/issues/{issueId}/documents/{key}"
# View document revisions
curl -sS "$PAPERCLIP_API_URL/api/issues/{issueId}/documents/{key}/revisions"Work Products — PAP-12
──────────────────────
1. Homepage mockup [ready_for_review] — artifact
View: {baseUrl}/{prefix}/issues/PAP-12#document-mockup
2. Feature branch [active] — branch
URL: https://github.com/...# Always re-fetch before modifying
curl -sS "$PAPERCLIP_API_URL/api/agents/{id}"
# Then update
curl -sS -X PATCH "$PAPERCLIP_API_URL/api/agents/{id}" \
-H "Content-Type: application/json" \
-d '{"adapterConfig": { ... updated config ... }}'instructionsFilePath{baseUrl}/{prefix}/agents/{agentUrlKey}curl -sS "$PAPERCLIP_API_URL/api/agents/{id}/config-revisions"Config History — @designer
──────────────────────────
Rev 3 (2026-03-21 14:30) — changed: systemPrompt
Added UX research to expertise section
Rev 2 (2026-03-21 10:15) — changed: budgetMonthlyCents
Budget increased from $50 to $100
Rev 1 (2026-03-20 16:00) — initial configuration# Fetch current log
curl -sS "$PAPERCLIP_API_URL/api/issues/{boardIssueId}/documents/decision-log"
# Update with new entries appended
curl -sS -X PUT "$PAPERCLIP_API_URL/api/issues/{boardIssueId}/documents/decision-log" \
-H "Content-Type: application/json" \
-d '{
"title": "Decision Log",
"format": "markdown",
"body": "... existing content ... \n\n## {date}\n- New decision\n",
"baseRevisionId": "{current revision id}"
}'./artifacts/decision-log.mdView: {PAPERCLIP_API_URL}/{prefix}/issues/{identifier}PAP-123: Build landing page [in_progress] → @engineerPAP-315PAP/{prefix}/issues/{identifier}/PAP/issues/PAP-12/{prefix}/agents/{agent-url-key}/{prefix}/approvals/{approval-id}/{prefix}/projects/{project-url-key}/{prefix}/issues/{identifier}#document-{key}| Action | Method | Endpoint |
|---|---|---|
| List companies | GET | |
| Create company | POST | |
| Update company | PATCH | |
| Get company | GET | |
| Dashboard | GET | |
| List agents | GET | |
| Get agent | GET | |
| Update agent | PATCH | |
| Agent configs | GET | |
| Config revisions | GET | |
| Hire agent | POST | |
| Invoke heartbeat | POST | |
| List issues | GET | |
| Create issue | POST | |
| Get issue | GET | |
| Update issue | PATCH | |
| Issue comments | GET | |
| Add comment | POST | |
| Issue documents | GET | |
| Get document | GET | |
| Create/update doc | PUT | |
| Work products | GET | |
| List approvals | GET | |
| Approve | POST | |
| Reject | POST | |
| Request revision | POST | |
| Cost summary | GET | |
| Costs by agent | GET | |
| Costs by project | GET | |
| Adapter docs | GET | |
| Adapter detail | GET | |
| Agent icons | GET | |
| Set instructions | PATCH | |
| Search issues | GET | |