ops-standup

ops-standup is a command for coding agents from tjboudreaux/cc-plugin-text-visualizations. It costs 20 tokens per session (1,533 once invoked), scanned A, original, MIT.

A command for a daily review of a product team's issues, dependencies, and project health.

In plain words
What is it for?
Use it during a standup to check the issue database, find blockers, inspect dependency problems, and decide what to address first.
Why use it?
It highlights blocked work, circular dependencies, long chains of dependent tasks, and other risks that can affect priorities.

Command

Part of the text-visualizations plugin — 5 skills, 3 commands shipped together

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/tjboudreaux/cc-plugin-text-visualizations/ops-standup
Clone the repo
git clone --depth 1 https://github.com/tjboudreaux/cc-plugin-text-visualizations

Or install text-visualizations, the plugin that ships this one along with the rest of its 5 skills, 3 commands.

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

agentmods badge for ops-standup

README.md
[![agentmods](https://agentmods.dev/badge/commands/tjboudreaux/cc-plugin-text-visualizations/ops-standup.svg)](https://agentmods.dev/commands/tjboudreaux/cc-plugin-text-visualizations/ops-standup)
Your own site
<a href="https://agentmods.dev/commands/tjboudreaux/cc-plugin-text-visualizations/ops-standup"><img src="https://agentmods.dev/badge/commands/tjboudreaux/cc-plugin-text-visualizations/ops-standup.svg" alt="Measured on agentmods" height="20"></a>
Per session 20 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,533 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.00020 $0.01533
Opus 5 $0.00010 $0.00766
Sonnet 5 $0.00004 $0.00307
Haiku 4.5 $0.00002 $0.00153

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

Security

Grade A, and why

ops-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 5d 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/ops-standup.md · 239 lines

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.

Daily Ops Standup

Run a structured daily standup using bd/bv for graph-aware prioritization and health monitoring.

Arguments: $ARGUMENTS

Standup Agenda

1. Health Check

First, verify the environment and get graph health metrics:

# Verify tools
command -v bd && command -v bv || echo "ERROR: bd or bv not installed"

# Database health
bd info --json | jq '{
  project: .project,
  total_issues: .total_issues,
  daemon_status: .daemon_status
}'

# Graph health
bv --robot-insights --json | jq '{
  critical_path_length: .critical_path.length,
  cycle_count: (.cycles | length),
  top_pagerank: [.top_pagerank[:3] | .[].id]
}'

Alert conditions:

  • cycle_count > 0: Circular dependencies need resolution
  • critical_path_length > 10: Deep dependency chain may bottleneck

2. What's Blocked

Identify issues that cannot proceed:

# Blocked issues
bd blocked --json | jq '.[] | {id, title, blocked_by: .blocked_by}'

# If cycles exist, show them
bv --robot-insights --json | jq 'if .cycles | length > 0 then .cycles else "No cycles" end'

Action: For each blocked issue, either:

  • Resolve the blocker
  • Re-prioritize the blocker
  • Remove the dependency if it's not actually blocking

3. What's Ready

Issues that can be worked immediately:

# Ready work sorted by priority
bd ready --json | jq '.[0:10] | .[] | {id, title, priority, type}'

4. Priority Recommendations

Get graph-aware prioritization with reasoning:

# AI-assisted priority recommendations
bv --robot-priority --json | jq '.recommendations[:5] | .[] | {
  id,
  title,
  reasoning,
  confidence
}'

Use this when:

  • Multiple issues seem equally important
  • Unsure what to work on next
  • Need to justify prioritization decisions

5. Parallel Capacity

How many agents/streams can work simultaneously:

# Execution plan
PLAN=$(bv --robot-plan --json)

# Number of parallel tracks
echo "$PLAN" | jq '.parallel_tracks | length' 

# First item in each track (can start immediately)
echo "$PLAN" | jq '[.parallel_tracks[] | .[0]] | .[] | {id, title}'

Read the full file on GitHub · 239 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. 5d ago First seen · 239 lines · 20 tokens per session scan A 6a45ef377b3a

Subscribe to this mod's changes

ops-standup is a command published in the GitHub repository tjboudreaux/cc-plugin-text-visualizations (2 stars, last pushed 7mo ago), licensed MIT. It adds 20 tokens to every session and 1,533 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.