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 commands/skullninja/coco-workflow/statusgit clone --depth 1 https://github.com/skullninja/coco-workflowWhat 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.00017 | $0.00649 |
| Opus 5 | $0.00009 | $0.00324 |
| Sonnet 5 | $0.00003 | $0.00130 |
| Haiku 4.5 | $0.00002 | $0.00065 |
Grade A, and why
status scanned grade A with 0 findings 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.
User Input
$ARGUMENTS
Setup
- If
$ARGUMENTScontains an epic ID, use it. Otherwise, find the most recent open epic:
Pick the most recent non-closed epic from the output.coco-tracker epic-status
Execution
1. Get Epic State
coco-tracker epic-status {epic-id}
coco-tracker list --json --epic {epic-id}
2. Categorize Tasks
Group tasks by status:
- Running (
in_progress): Currently being worked on - Available (
pending, not blocked): Ready to start - Blocked (
pending, has unresolved blockers): Waiting on dependencies - Completed: Done
3. File Ownership Map
For each running task, read owns_files from metadata (if present) and display:
File Ownership
==============
Task {id} ({title}):
- {file pattern 1}
- {file pattern 2}
Unclaimed:
- {remaining file patterns}
4. Parallel Opportunities
Identify tasks that could run in parallel right now:
Parallel Opportunities
======================
Available tasks with no file conflicts:
1. {task title} (no overlap with running tasks)
Cannot parallelize:
- {task title} (blocked by {blocking-tasks})
5. Worktree / Parallel Status
Read loop.parallel.enabled from .coco/config.yaml. If parallel execution is enabled:
Parallel Execution
==================
Mode: {enabled | disabled}
Max agents: {max_agents}
Active Worktrees:
- worktree-{task-id}: {task title} ({status: running | completed | failed})
Branch: {issue-branch}
PR: #{pr-number} ({review status})
Merge Queue:
- PR #{N}: {task title} (awaiting review)
Recently Completed:
- {task-id}: {title} -- merged via PR #{N}
If parallel execution is not enabled, skip this section.
6. Dependency Graph
Show the dependency tree with status indicators:
Dependency Graph
================
[x] Phase 1: Setup
[x] Phase 2: Foundational
+-- [>] Phase 3: US1 (in_progress)
+-- [ ] Phase 4: US2 (available)
+-- [~] Phase 5: Polish (blocked by 3, 4)
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 · 113 lines · 17 tokens per session scan A a7a0806b6fde
status is a command published in the GitHub repository skullninja/coco-workflow (7 stars, last pushed 2d ago), licensed MIT. It adds 17 tokens to every session and 649 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
validate
You are the quality gate. Your job is to verify that a phase's implementation meets quality standards before the team moves to the next phase. No phase should advance until validation passes.
retro
You are generating a retrospective report for a completed feature. Your job is to analyze git history and project artifacts to surface patterns, measure delivery quality, and suggest workflow improvements.
progress
You are generating a visual progress report showing which phases are complete, in-progress, or pending for the current feature.
handoff
Write a session handoff document summarizing what was done, what's open, and what the next session should pick up. Saves to .holocron/handoff-YYYY-MM-DD.md.
interactive-planning
File-based planning with interactive gates + native task tracking. Supports task-based (single plan file) and spec-driven (multi-file specs with manifest) modes. Phase/Sprint/Spec hierarchy with dependency DAG.
status
Show current feature status and progress.