hybrid-status

hybrid-status is a command for coding agents from Taoidle/plan-cascade. It costs 27 tokens per session (973 once invoked), scanned A, original, MIT.

A command that reports the execution status of every story in a PRD. It shows batch progress, individual states, completion percentage, and recent activity logs.

In plain words
What is it for?
Use it to monitor implementation progress and inspect recent agent activity while stories are being executed.
Why use it?
It gives you one place to see which planned tasks are finished, running, or still waiting.

Command

Part of the plan-cascade plugin — 7 skills, 33 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/taoidle/plan-cascade/hybrid-status
Clone the repo
git clone --depth 1 https://github.com/Taoidle/plan-cascade

Or install plan-cascade, the plugin that ships this one along with the rest of its 7 skills, 33 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 hybrid-status

README.md
[![agentmods](https://agentmods.dev/badge/commands/taoidle/plan-cascade/hybrid-status.svg)](https://agentmods.dev/commands/taoidle/plan-cascade/hybrid-status)
Your own site
<a href="https://agentmods.dev/commands/taoidle/plan-cascade/hybrid-status"><img src="https://agentmods.dev/badge/commands/taoidle/plan-cascade/hybrid-status.svg" alt="Measured on agentmods" height="20"></a>
Per session 27 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 973 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.00027 $0.00973
Opus 5 $0.00014 $0.00487
Sonnet 5 $0.00005 $0.00195
Haiku 4.5 $0.00003 $0.00097

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

Security

Grade A, and why

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

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

  • status — 86% identical, 16 lines differ
commands/hybrid-status.md · 159 lines

How it starts

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

Hybrid Ralph - Show Execution Status

You are displaying the current execution status of all stories in the PRD.

Path Storage Modes

This command works with both new and legacy path storage modes:

New Mode (Default)

  • PRD file: In worktree or ~/.plan-cascade/<project-id>/prd.json
  • Progress file: Always in working directory progress.txt
  • Agent outputs: .agent-outputs/ in working directory

Legacy Mode

  • PRD file: In worktree or project root prd.json
  • Progress file: progress.txt in working directory

User-visible files always remain in the working directory for easy access.

Tool Usage Policy (CRITICAL)

To avoid command confirmation prompts:

  1. Use Read tool for file reading - NEVER use cat via Bash

    • Read("prd.json"), Read("progress.txt")
    • Bash("cat prd.json")
  2. Use Grep tool for content search - NEVER use grep via Bash

    • Grep("[COMPLETE]", path="progress.txt")
    • Bash("grep '[COMPLETE]' progress.txt")
  3. Parse file contents in your response - After reading with Read tool, count markers yourself

Step 1: Verify PRD Exists

if [ ! -f "prd.json" ]; then
    echo "ERROR: No PRD found."
    exit 1
fi

Step 2: Read PRD and Progress Files

Read prd.json to get all stories. Read progress.txt to get completion status.

Step 3: Calculate Story Status

For each story in the PRD, determine its status:

  • Complete: If progress.txt contains [COMPLETE] {story_id} or [STORY_COMPLETE] {story_id}
  • In Progress: If progress.txt contains [IN_PROGRESS] {story_id}
  • Pending: If no entry in progress.txt
  • Failed: If progress.txt contains [FAILED] {story_id} or [STORY_FAILED] {story_id} or [ERROR] {story_id}

Step 4: Calculate Execution Batches

Re-calculate batches based on story dependencies.

Step 5: Display Status Report

============================================================
EXECUTION STATUS
============================================================

## Summary
  Total Stories: {count}
  Total Batches: {batch_count}

  Complete:     {complete_count} ●
  In Progress:  {in_progress_count} ◐
  Pending:      {pending_count} ○
  Failed:       {failed_count} ✗

## Progress
  [{progress_bar}] {percentage}%

## Current Batch: {current_batch_number}

  {stories in current batch with their statuses}

## All Batches

  Batch 1: {status} ({count} stories)
    {story statuses}

  Batch 2: {status} ({count} stories)
    {story statuses}

...

============================================================

Read the full file on GitHub · 159 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 · 159 lines · 27 tokens per session scan A 5a2d04b59e60

Subscribe to this mod's changes

hybrid-status is a command published in the GitHub repository Taoidle/plan-cascade (140 stars, last pushed 5mo ago), licensed MIT. It adds 27 tokens to every session and 973 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-30.