Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Yesterday-AI/paperclip-plugin-company-wizard --skill routinesgit clone --depth 1 https://github.com/Yesterday-AI/paperclip-plugin-company-wizardWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/yesterday-ai/paperclip-plugin-company-wizard/routines)<a href="https://agentmods.dev/skills/yesterday-ai/paperclip-plugin-company-wizard/routines"><img src="https://agentmods.dev/badge/skills/yesterday-ai/paperclip-plugin-company-wizard/routines/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/yesterday-ai/paperclip-plugin-company-wizard/routines"><img src="https://agentmods.dev/badge/skills/yesterday-ai/paperclip-plugin-company-wizard/routines.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00067 | $0.02298 |
| Opus 5 | $0.00034 | $0.01149 |
| Sonnet 5 | $0.00013 | $0.00460 |
| Haiku 4.5 | $0.00007 | $0.00230 |
Grade A, and why
routines scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s "$PAPERCLIP_API_URL/api/agents/me" \ How it starts
The opening of the file, as written. The whole thing — 239 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Routines — Recurring Agent Tasks
Routines are Paperclip's scheduling primitive. Instead of agents burning tokens on timer heartbeats polling for work, routines fire only when needed — on a cron schedule, webhook, or explicit API call — and create a targeted heartbeat run for the assigned agent.
Why Routines > Always-On Heartbeats
| Approach | Token cost | Responsiveness |
|---|---|---|
| Heartbeat every 5 min | ~288 runs/day, most idle | High but wasteful |
| Routines (cron + webhook) | Only fires when scheduled or triggered | Same responsiveness, fraction of the cost |
The key insight: clean up heartbeats = token reducing = cheaper.
Quick Start
1. Find your IDs
# Company ID
curl -s "$PAPERCLIP_API_URL/api/agents/me" \
-H "Authorization: Bearer $PAPERCLIP_API_KEY" | jq '.companyId, .id'
# Agents in company
curl -s "$PAPERCLIP_API_URL/api/companies/{companyId}/agents" \
-H "Authorization: Bearer $PAPERCLIP_API_KEY" | jq '.[] | {id, name, role}'
# Projects
curl -s "$PAPERCLIP_API_URL/api/companies/{companyId}/projects" \
-H "Authorization: Bearer $PAPERCLIP_API_KEY" | jq '.[] | {id, name}'
2. Create a routine
curl -s -X POST "$PAPERCLIP_API_URL/api/companies/{companyId}/routines" \
-H "Authorization: Bearer $PAPERCLIP_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"title": "Daily standup check",
"description": "CEO reviews all in_progress issues and nudges stalled agents",
"assigneeAgentId": "{ceo-agent-id}",
"projectId": "{project-id}",
"priority": "medium",
"status": "active",
"concurrencyPolicy": "skip_if_active",
"catchUpPolicy": "skip_missed"
}'
3. Add a cron trigger
curl -s -X POST "$PAPERCLIP_API_URL/api/routines/{routineId}/triggers" \
-H "Authorization: Bearer $PAPERCLIP_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"kind": "schedule",
"cronExpression": "0 9 * * 1-5",
"timezone": "Europe/Amsterdam"
}'
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 12d ago First seen · 239 lines · 67 tokens per session scan A 02224e840381
routines is a skill published in the GitHub repository Yesterday-AI/paperclip-plugin-company-wizard (171 stars, last pushed 4mo ago), licensed MIT. It adds 67 tokens to every session and 2,298 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
squads-cli
Squads CLI — operate your AI workforce through the loop; intent in, reviewed work out. TRIGGER when running squads, dispatching agents, triaging the inbox, reading/writing memory, recording feedback, or checking status/usage.
squads-learn
Capture learnings after completing work. Use when finishing a task, fixing a bug, discovering a pattern, or learning something worth remembering for future sessions. Helps build institutional memory.
gh
You have access to gh (GitHub CLI) for repository and project management.
pydantic
Python data validation using type hints and runtime type checking with Pydantic v2's Rust-powered core for high-performance validation in FastAPI, Django, and configuration management.
spec-linked-docs
Spec-Linked Documentation (SLD): Language-agnostic discipline for maintaining bidirectional traceability between functional specifications and source-code docstrings via stable identifiers and CI validation. Optional/opt-in adoption. Builds on OpenFastTrace and DO-178C Requirements Traceability Matrix traditions.
github-actions
GitHub Actions CI/CD workflows for automating build, test, and deployment.