Board operator workflows for Paperclip — dashboard monitoring, approval handling, activity audit, and governance. Use this skill when the user wants to "check the dashboard", "review approvals", "approve a hire", "reject an approval", "see recent activity", "check what agents are doing", "review pending requests", "audit the company", or any board-level oversight of a Paperclip company. Also trigger when the user asks about governance, monitoring, or operational health.
The board operator (you, the human) has full visibility and control over the Paperclip company. Every mutation is logged in an activity audit trail.
Get a real-time overview of company health:
pnpm paperclipai dashboard get
The dashboard shows:
Some actions require board approval. This is a governance gate.
pnpm paperclipai approval list --status pending
pnpm paperclipai approval get <approval-id>
# Approve
pnpm paperclipai approval approve <approval-id> \
--decision-note "Looks good, proceed"
# Reject
pnpm paperclipai approval reject <approval-id> \
--decision-note "Budget too high, propose a lower amount"
# Request revision
pnpm paperclipai approval request-revision <approval-id> \
--decision-note "Please clarify the scope before I approve"
# Resubmit after revision
pnpm paperclipai approval resubmit <approval-id> \
--payload '{"name": "revised-agent", "budgetMonthlyCents": 3000}'
# Comment on an approval
pnpm paperclipai approval comment <approval-id> \
--body "Can you add more detail on the expected output?"
Every action in Paperclip is logged:
# All recent activity
pnpm paperclipai activity list
# Filter by agent
pnpm paperclipai activity list --agent-id <agent-id>
# Filter by entity
pnpm paperclipai activity list --entity-type issue --entity-id <issue-id>
Use the activity log to understand what happened, who did it, and when. This is your audit trail for accountability.
As board operator, you can: