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 agentmods add skills/mrobinson2/azureagentforge/agent-delegatenpx skills add mrobinson2/AzureAgentForge --skill agent-delegategit clone --depth 1 https://github.com/mrobinson2/AzureAgentForgeWhat 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 | $0.00111 | $0.03987 |
| Opus 5 | $0.00056 | $0.01994 |
| Sonnet 5 | $0.00022 | $0.00797 |
| Haiku 4.5 | $0.00011 | $0.00399 |
Grade A, and why
agent-delegate 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 2d 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.
## Use the helper, not raw curl How it starts
The opening of the file, as written. The whole thing — 372 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Delegate or Coordinate Tasks via PaperClip Child Issues
A comment that says "I delegated this to X" is not delegation. The other agent has no way to see your comment. The only way to delegate is to create a real PaperClip issue with that agent's
assigneeAgentId.
This skill covers two patterns:
- Single-agent delegation — one parent task, one child issue, one specialist.
- Coordination — one parent task, two or more child issues, multiple specialists.
Both patterns use the same API and the same helper script.
Runtime environment
Required environment variables
| Variable | Purpose |
|---|---|
PAPERCLIP_API_KEY |
Bearer token for the PaperClip API (ctx.authToken for embedded Orchestrator; automation JWT for standalone Hermes) |
PAPERCLIP_BASE_URL |
PaperClip API base URL — varies by runtime (see table below) |
PAPERCLIP_ORIGIN |
Origin header value sent with every API request |
PAPERCLIP_COMPANY_ID |
PaperClip company UUID (default: 00000000-0000-0000-0000-000000000000) |
PAPERCLIP_API_KEY is required. If the others are unset the helper defaults apply:
PAPERCLIP_BASE_URL→http://localhost:3099(direct backend; correct for PaperClip-embedded Orchestrator)PAPERCLIP_ORIGIN→http://localhost:3100PAPERCLIP_COMPANY_ID→00000000-0000-0000-0000-000000000000
Helper path — resolve before first use each session
The helper script lives in different locations depending on which runtime the agent is executing in. Always discover the path dynamically; never hardcode it.
DELEGATE_HELPER=""
for _p in \
"/paperclip/.hermes/skills/playbooks/agent-delegate/scripts/pc-delegate.sh" \
"/app/skills/playbooks/agent-delegate/scripts/pc-delegate.sh" \
"/opt/data/skills/playbooks/agent-delegate/scripts/pc-delegate.sh"; do
if [ -x "$_p" ]; then DELEGATE_HELPER="$_p"; break; fi
done
[ -z "$DELEGATE_HELPER" ] && { echo "ERROR: pc-delegate.sh not found in any known location" >&2; exit 2; }
What ships with it
3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 2d ago First seen · 372 lines · 111 tokens per session scan A 10d084dd0ba5
agent-delegate is a skill published in the GitHub repository mrobinson2/AzureAgentForge (21 stars, last pushed 12d ago), licensed MIT. It adds 111 tokens to every session and 3,987 once invoked, about $0.0006 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
b00t-integration
Integration layer for b00t capabilities within opencode workflows. Provides access to b00t datum system, hive management, grok knowledge, session management, and task tracking directly from opencode.
parallel-feature-development
Coordinate parallel feature development with file ownership strategies, conflict avoidance rules, and integration patterns for multi-agent implementation. Use this skill when decomposing a large feature into independent work streams, when two or more agents need to implement different layers of the same system…
pipeline-conductor
Operating procedure for the kirocrew-pipeline-conductor agent - run one issue/PR pipeline on one repository as a supervised fleet. Auto-pick items, stand up one worker session per item in a dedicated folder, probe them each cycle with one script call, verify claimed greens independently, intervene when a worker loops…
coworker
Reference for the Coworker file-queue automation system: task lifecycle, directory state machine, PowerShell workers, scheduler configuration, and operational conventions. Use when you need to understand how Coworker works or debug its behavior.
rove
Use when controlling Rove tasks, parallel coding attempts, hosted agent sessions, task lifecycle, or the daemon-owned issue tracker from a shell. Also the ONLY channel for messaging another agent session on this machine — rove api send, never a peer/MCP side channel.
copilot-customization
Authoritative reference for VS Code Copilot customization mechanisms: instructions, prompt files, custom agents, agent skills, MCP servers, hooks, and plugins. Use when deciding which customization type to use, creating new .instructions.md/.prompt.md/.agent.md/SKILL.md/mcp.json files from scratch, or debugging why a…