-
Notifications
You must be signed in to change notification settings - Fork 0
GitHub Showcase Commands or API
CW exposes the same runtime through CLI commands and MCP tools. Use --json or
--format json when scripting a CLI command.
Use cw help for the built-in help text. The CLI does not currently implement a
top-level cw --help flag.
npx cool-workflow <command>
cw <command>
node plugins/cool-workflow/scripts/cw.js <command>| Command | Purpose |
|---|---|
cw demo tamper |
Hermetic tamper-evidence proof. |
cw quickstart architecture-review --repo PATH --question TEXT --agent-command builtin:claude |
Plan, drive, verify, and report a repo review. |
cw quickstart architecture-review --repo PATH --question TEXT --preview |
Read-only projection of the next action. |
cw quickstart architecture-review --repo PATH --question TEXT --resume |
Advance one step and print a continue line. |
The audit-run token is a CLI-only alias for quickstart.
| Command | Purpose |
|---|---|
cw app list |
List workflow apps. |
cw app show <app-id> |
Show app metadata, inputs, phases, and task counts. |
cw app validate <app-id> |
Validate an app manifest and workflow. |
cw plan <app-id> --repo PATH ... |
Create a run without driving all workers. |
Shipping apps include architecture-review, architecture-review-fast,
pr-review-fix-ci, release-cut, research-synthesis, and
workflow-app-framework-demo.
See Workflow Apps for when to use each one.
| Command | Purpose |
|---|---|
cw status <run-id> |
Show current run status. |
cw graph <run-id> |
Inspect run graph. |
cw dispatch <run-id> --limit N |
Allocate worker scopes. |
cw worker manifest <run-id> <worker-id> |
Read a worker manifest. |
cw worker output <run-id> <worker-id> <result.md> |
Accept and verify worker output. |
cw commit <run-id> --selection <selection-id> |
Create a verifier-gated state commit. |
cw report <run-id> --show |
Render the saved report. |
| Command | Purpose |
|---|---|
cw registry refresh --scope repo |
Rebuild the derived run index. |
cw run search --scope home --text TEXT |
Search runs across registered repos. |
cw run resume <run-id> |
Read-only next-action view. |
cw run resume <run-id> --drive |
Continue pending work through the agent drive loop. |
cw run export <run-id> --output PATH |
Write a portable run archive. |
cw run inspect-archive PATH |
Check an archive without importing. |
cw run import PATH --target DIR |
Restore an archive under another repo. |
cw run verify-import <run-id> --cwd DIR --strict |
Re-prove restored digests and chains. |
cw run <app> --drive --incremental |
Re-run a workflow, reusing cached results for every step whose inputs are unchanged. |
| Command | Purpose |
|---|---|
cw -q "…" --bundle |
Run, then seal the run into one portable report.cwrun.json. |
cw report bundle <run-id> --output PATH |
Seal an existing run into a self-verifying bundle. |
cw report verify-bundle <bundle> |
Verify a bundle offline — archive bytes, chains, signatures, and that every signed finding is present and unaltered. |
cw report verify-bundle <bundle> --require-signatures |
Also refuse a bundle whose findings are not signed. |
| Command | Purpose |
|---|---|
cw telemetry verify <run-id> |
Re-prove telemetry ledger integrity. |
cw telemetry verify <run-id> --pubkey <public.pem> |
Re-run ed25519 attribution checks. |
cw audit verify <run-id> |
Re-prove the trust-audit hash chain. |
See Trust And Audit for what these checks prove and what they do not prove.
MCP tools use cw_ names and route through the same runtime entries. Examples:
cw_app_listcw_run_resumecw_run_importcw_run_verify_importcw_reportcw_report_verify_bundlecw_telemetry_verify
Generated manifests are kept in sync from
plugins/cool-workflow/manifest/plugin.manifest.json. The load smoke test boots
each generated MCP config and checks a JSON-RPC initialize plus tools/list
round trip.
See MCP And Manifests for the generated vendor targets.
Organized from local Obsidian notes and reconciled with the current
coo1white/cool-workflow repository state.
Start here
Go deeper
- Workflow Apps
- Architecture
- Trust And Audit
- Recovery And Restore
- Commands or API
- MCP And Manifests
- Operations
- FAQ
Source docs