You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
[0.9.2] - 2026-07-30
Changed
Replaced the Workflow-based audit-docs (commands/audit-docs.md + workflows/audit-docs.js) with a plain Skill
(skills/audit-docs/SKILL.md) implementing the same 17-check registry.
The Workflow-based version had two production failures: a naming
collision where the workflow shadowed the hand-authored command,
making --help/argument-hint unreachable (#191); and a more severe
unbounded-fan-out bug in its Verify phase (one opus agent per
individual finding, no dedup or cap), which hit the Workflow tool's
1000-agent ceiling and burned roughly 51M tokens in one run against a
73-file corpus. The new skill runs entirely as bounded, in-conversation Agent calls -- one per file, plus at most 3 for cross-document
checks -- with no background orchestration and no per-finding fan-out
possible by construction.