prompt-evaluation-runn…
Use when evaluating prompts, LLM outputs, red-team suites, or model behavior with local eval configs and safe provider/cost controls.
Use when documentation may have rotted against the code -- files were renamed or moved, scripts or env vars changed, or readers report commands and paths from the docs that no longer work.
$ npx -y skills add yeaight7/agent-powerups --skill doc-consistency-check --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/doc-consistency-checkContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when documentation may have rotted against the code -- files were renamed or moved, scripts or env vars changed, or readers report commands and paths from the docs that no longer work.
name: doc-consistency-check description: Use when documentation may have rotted against the code -- files were renamed or moved, scripts or env vars changed, or readers report commands and paths from the docs that no longer work.
Documentation rots when code changes. This check finds stale references in Markdown files — paths, commands, package scripts, env names, links — and flags them for immediate correction.
1. **Inventory the docs and extract referenced paths:**
git ls-files "*.md" # full doc inventory
rg -no "[A-Za-z0-9_-]+/[A-Za-z0-9_./-]+\.[a-z]{2,4}" README.md docs/ # path-like references2. **Verify referenced files still exist** in the repository. If not, the documentation is stale:
test -f src/components/Button.tsx || echo "STALE: src/components/Button.tsx"
3. **Verify documented commands against reality.** Package scripts, CLI invocations, and env names must match the current source:
rg -no "npm run [a-z:-]+" README.md docs/ | sort -u # documented scripts...
rg -n "\"scripts\"" -A 20 package.json # ...vs actual scripts
rg -no "[A-Z][A-Z0-9_]{3,}=" docs/ | sort -u # documented env names vs config source4. **Check code blocks in documentation.** Do the function names and variable names still match the actual source code?
rg -n "functionNameFromDocs" src/ || echo "identifier not found in source"
5. **Check links.** Relative links must resolve to existing files; flag external links that obviously moved.
6. **Flag everything for immediate correction.** Fix in place when the right value is unambiguous; report the rest with file and line.
Curated power-ups for coding agents: skills, slash commands, MCP configs, hooks, AGENTS.md templates, and workflows for serious software engineering. Claude Code, Codex, Antigravity CLI, Cursor and more
Repo: yeaight7/agent-powerups
Use when evaluating prompts, LLM outputs, red-team suites, or model behavior with local eval configs and safe provider/cost controls.
Use when creating or reviewing red-team eval plugins, attack templates, grader rubrics, safety fixtures, or model-risk test metadata.
Use when designing, running, debugging, or hardening deterministic eval suites for agent skills, prompts, tool workflows, or MCP-backed cases.
Use when designing tool definitions for a new agent or subagent, an agent shows high retry rates, ambiguous tool invocations, or silent failures, or an…
Use when routing a prompt to a local provider CLI for a second opinion, review, or plan -- you are about to call a provider directly, need the response saved…
Use when starting work in an unfamiliar area of a codebase, spawning a subagent that needs targeted file context, a first search pass missed the relevant file,…