Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add Taoidle/plan-cascade/plugin install plan-cascadeWrote 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.
[](https://agentmods.dev/commands/taoidle/plan-cascade/hybrid-resume)<a href="https://agentmods.dev/commands/taoidle/plan-cascade/hybrid-resume"><img src="https://agentmods.dev/badge/commands/taoidle/plan-cascade/hybrid-resume.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00037 | $0.05311 |
| Opus 5 | $0.00018 | $0.02655 |
| Sonnet 5 | $0.00007 | $0.01062 |
| Haiku 4.5 | $0.00004 | $0.00531 |
Grade A, and why
hybrid-resume 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 8d 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 — 790 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Resume Interrupted Hybrid Task
Resume execution of an interrupted hybrid task by detecting current state from existing files.
Path Storage Modes
This command works with both new and legacy path storage modes:
New Mode (Default)
- Worktrees in:
~/.plan-cascade/<project-id>/.worktree/(Unix) or%APPDATA%/plan-cascade/<project-id>/.worktree/(Windows) - State files in:
~/.plan-cascade/<project-id>/.state/ - PRD files in worktree directory
Legacy Mode
- Worktrees in:
<project-root>/.worktree/ - State/PRD files in project root or worktree
The command auto-detects which mode is active and scans the appropriate directories.
Tool Usage Policy (CRITICAL)
To avoid command confirmation prompts during automatic execution:
-
Use Read tool for file reading - NEVER use
catvia Bash- ✅
Read("prd.json"),Read("progress.txt"),Read(".planning-config.json") - ❌
Bash("cat prd.json")
- ✅
-
Use Glob tool for finding files - NEVER use
lsorfindvia Bash- ✅
Glob(".worktree/*/.planning-config.json") - ❌
Bash("ls .worktree/")
- ✅
-
Use Grep tool for content search - NEVER use
grepvia Bash- ✅
Grep("[COMPLETE]", path="progress.txt") - ❌
Bash("grep '[COMPLETE]' progress.txt")
- ✅
-
Only use Bash for actual system commands:
- Git operations:
git status,git checkout - Directory navigation:
cd(only when necessary) - File writing:
echo "..." >> progress.txt
- Git operations:
Works with both:
hybrid-worktreetasks (in.worktree/directories)hybrid-autotasks (in regular directories)
Arguments
--auto: Continue in fully automatic mode (no confirmation prompts)
Step 1: Detect Context
IMPORTANT: Use Read/Glob tools for file detection, NOT Bash
1.1: Check if in Worktree
Use Read tool (NOT Bash) to check for worktree config:
Read(".planning-config.json")
If Read succeeds:
- Parse the JSON content
- Check if
modeequals "hybrid" - If yes:
CONTEXT="worktree", extracttask_name,target_branch - Log "✓ Detected hybrid worktree: {task_name}"
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.
- 8d ago First seen · 790 lines · 37 tokens per session scan A 5fe508da6f1c
hybrid-resume is a command published in the GitHub repository Taoidle/plan-cascade (140 stars, last pushed 5mo ago), licensed MIT. It adds 37 tokens to every session and 5,311 once invoked, about $0.0002 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.
Other commands, from other repositories
release
Release a new version. Bumps version, updates docs/site/changelog, tags, pushes, and updates the marketplace repo.
release
Release manager for frontend and mobile. Writes App Store notes, user-facing changelog, flags stale docs and landing copy. Actions: notes | changelog | docs | sync.
pr
Prepare and open a pull request the senior way: gate, template, scrubbed, everything visible.
status
The state of play, computed fresh: branch, dirty files, the active sprint, open work, index freshness.
done
Finish a task - document, create PR or merge, close.
worktree
Manage git worktrees for isolated feature development.