standup

A daily progress summary for active epics, which are larger pieces of work made up of related tasks. It reports completed, in-progress, and blocked work using tracker data, recent Git commits, and configured issue-tracker updates.

In plain words
What is it for?
Use it for a daily standup, across all active epics or for one selected epic.
Why use it?
It brings project status and recent code activity into one report. This makes it easier to see what changed in the last day and what is waiting on something else.

Command

Install

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.

agentmods
npx agentmods add commands/skullninja/coco-workflow/standup
Clone the repo
git clone --depth 1 https://github.com/skullninja/coco-workflow
Per session 21 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 629 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00021 $0.00629
Opus 5 $0.00010 $0.00315
Sonnet 5 $0.00004 $0.00126
Haiku 4.5 $0.00002 $0.00063

Measured 2d ago against content hash e19a0a2ebdaf, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

standup 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.

commands/standup.md · 97 lines

How it starts

The opening of the file, as written. The whole thing — 97 lines — stays where its author put it; the contents beside it link to each section on GitHub.

User Input

$ARGUMENTS

$ARGUMENTS can be an epic ID to scope the standup, or empty for all active epics.

Setup

  1. Read .coco/config.yaml for project configuration.

Execution

1. Gather Tracker State

Get all epics and tasks:

coco-tracker list --json

If $ARGUMENTS specifies an epic, filter to that epic. Otherwise, include all non-closed epics.

2. Gather Git Activity

Get recent commits (last 24 hours):

git log --oneline --since="24 hours ago" --format="%h %s (%ar)"

Get current branch:

git branch --show-current

3. Gather Issue Tracker State (if configured)

Read issue_tracker.provider from config:

If "linear": Use mcp__plugin_linear_linear__list_issues to get issues for active projects with recent updates.

If "github":

  • Use gh issue list to get recent issue activity.
  • If github.use_projects is true: also query gh project item-list {project_number} --owner {github.owner} --format json to show board column status alongside tracker state.

If "none": Skip.

4. Produce Standup Report

Output a structured standup:

## Standup: {YYYY-MM-DD}

### Done (last 24h)
- {task-id}: {title} -- {commit-hash} ({time ago})
  {issue-key if available}

### In Progress
- {task-id}: {title} -- claimed {time ago}
  Branch: {branch from metadata}
  Issue: {issue-key from metadata}

### Blocked
- {task-id}: {title}
  Waiting on: {dependency-id} ({dependency-title})

### Up Next
- {task-id}: {title} (next ready task per dependency order)

### Metrics
- Tasks completed (24h): {count}
- Commits (24h): {count}
- Active epics: {count} ({completed}/{total} tasks, {percent}% complete)

5. Issue Tracker Summary (if configured)

If an issue tracker is configured, append:

### Issue Tracker
- Open issues: {count}
- In Review: {count}
- Recently closed: {count in last 24h}

Rules

  • If no active epics exist, report "No active epics. Start with /coco:phase or /coco:planning-session tactical."
  • If no activity in the last 24 hours, report "No activity in the last 24 hours" with current state.
  • Keep the output scannable -- tables and bullet points, not prose.

Read the full file on GitHub · 97 lines

Changes

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.

  1. 2d ago First seen · 97 lines · 21 tokens per session scan A e19a0a2ebdaf

Subscribe to this mod's changes

standup is a command published in the GitHub repository skullninja/coco-workflow (7 stars, last pushed 3d ago), licensed MIT. It adds 21 tokens to every session and 629 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.