Query delivery process state directly from annotated source code.
For AI coding agents: Start every session with these three commands:
overview— project healthscope-validate <pattern> <session-type>— catches blockers before you startcontext <pattern> --session <type>— curated context bundle
This document retains operational reference (JSON envelope, exit codes, piping). For full CLI documentation, see the generated references below.
- CLI Reference Tables — all flags, options, filters, and modifiers
- Recipes & Workflow Guide — command descriptions, usage examples, and common recipes
All JSON commands wrap output in a QueryResult envelope:
{
"success": true,
"data": { ... },
"metadata": {
"timestamp": "2026-02-21T04:31:31.633Z",
"patternCount": 318
}
}On error:
{
"success": false,
"error": "Pattern not found: \"Orchestrator\"\nDid you mean: OrchestratorPipelineFactoryMigration?",
"code": "PATTERN_NOT_FOUND"
}| Code | Meaning |
|---|---|
0 |
Success |
1 |
Error (with message on stderr) |
pnpm outputs a banner line to stdout (> @libar-dev/...). For clean JSON piping, use npx tsx src/cli/process-api.ts directly:
npx tsx src/cli/process-api.ts list --status roadmap --names-only | jq '.data[]'