Outcome
Complete the human CLI experience: strict and useful help, action-oriented multi-line rendering, clean stdout/stderr separation, and consistent quiet/verbose/progress behavior across primary commands.
Machine users should consume JSON; humans should receive concise output that explains the verdict, next action, strongest evidence, completed checks, and limitations without reading raw envelopes.
Why this matters
Gitworthy's agent/MCP contract is primary, but the CLI is the debugging surface, onboarding path, CI interface, and fallback for every integration. A one-line or inconsistent renderer makes first use harder and encourages agents or scripts to parse prose.
Scope
- Add practical command help with examples, defaults, bounds, exit codes, and common remediation.
- Ensure unknown flags and invalid combinations remain strict and structured.
- Implement multi-line human renderers for check, hunt, scan, doctor, brief, store, outcome, and partial-run results.
- Route JSON to stdout only and progress/diagnostics to stderr.
- Add consistent
--quiet, --verbose, and progress behavior.
- Make color/TTY behavior accessible and disable safely for pipes/CI.
- Include verdict/disposition, summary, next action, strongest evidence URL, checked/not-checked coverage, and partial/error status.
- Never require machine consumers to parse human output.
Non-goals
- No interactive TUI.
- No dashboard.
- No rewriting core verdict policy in the renderer.
- No progress logs on MCP stdio stdout.
Dependencies and readiness
Acceptance criteria
Tests and validation
Suggested check rendering
SKIP · land_only
Open PR #4499 explicitly closes issue #4487.
Next
Review or help land #4499. Do not open a parallel implementation.
Evidence
definitive · PR #4499 · https://github.com/.../pull/4499
Checked
target, policy, linked work
Not checked
main-tree and duplicate checks skipped after definitive open PR.
Likely implementation areas
- CLI command metadata/help definitions.
- Human renderer modules separate from contracts.
- Progress and diagnostic channel abstraction.
- Snapshot fixtures and docs.
Compatibility
Human output may improve, but JSON contracts and exit-code semantics must remain stable. Release notes should warn users not to parse human text.
Outcome
Complete the human CLI experience: strict and useful help, action-oriented multi-line rendering, clean stdout/stderr separation, and consistent quiet/verbose/progress behavior across primary commands.
Machine users should consume JSON; humans should receive concise output that explains the verdict, next action, strongest evidence, completed checks, and limitations without reading raw envelopes.
Why this matters
Gitworthy's agent/MCP contract is primary, but the CLI is the debugging surface, onboarding path, CI interface, and fallback for every integration. A one-line or inconsistent renderer makes first use harder and encourages agents or scripts to parse prose.
Scope
--quiet,--verbose, and progress behavior.Non-goals
Dependencies and readiness
Acceptance criteria
--quietsuppresses progress while preserving final output and errors.--verboseadds provider timing/counters without secrets.Tests and validation
Suggested check rendering
Likely implementation areas
Compatibility
Human output may improve, but JSON contracts and exit-code semantics must remain stable. Release notes should warn users not to parse human text.