Docs
design intelligence for ai coding agents. one unified cli, 36 commands across recon, review, build, plan, ship, test, reflect, power. zero npm deps.
npx -y skills add Dragoon0x/dragoon-skills --skill docsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Detect drift between markdown docs (README, docs/) and the actual codebase. Catches references to npm scripts that don't exist, scoped dependencies not in package.json, file paths in backticks that don't resolve on disk, and undocumented npm scripts. Use to audit documentation hygiene before a release or after a major refactor. Exits non-zero on findings. Run as `node ~/.claude/skills/dragoon/skills/docs/scripts/docs.js`.
SKILL.md
1.3 KB, as published. Nobody here has run it
/docs
Detects drift between your documentation and your code.
When to use
- Auditing docs before a release
- After a major refactor that may have invalidated examples
- The user says "check docs", "audit the README", "find stale references"
Rules
docs-001npm scripts referenced in docs that don't exist (medium)docs-002scoped dependencies referenced that aren't installed (low)docs-003file paths in backticks that don't exist on disk (medium)docs-004npm scripts that aren't documented anywhere (low)
Each finding includes the markdown file, line, column, snippet, message, and a fix.
Run it
dragoon docs # all severities
dragoon docs --severity medium # focus on the actionable ones
dragoon docs --json # CI mode
Exit codes
0no drift1drift detected2bad usage