plugins/consider/skills/occams-razor/SKILL.md
Find the simplest explanation or solution that accounts for all known facts — use when there are multiple competing explanations and the simplest hasn't been tried first
npx skillsauth add bcbeidel/wos occams-razorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
<output_format>
| Explanation | Assumptions | Fits all facts? | |-------------|------------|----------------| | [Simple] | N | Yes/No | | [Complex] | N | Yes/No |
[The winner and why]
[What would confirm or rule out alternatives] </output_format>
<example> ## Occam's Razor Analysis: API Response Time Increase| Explanation | Assumptions | Fits all facts? | |-------------|------------|----------------| | Search index corrupted | 1 (index can silently corrupt) | Yes | | Upstream provider slowed down | 1 (provider had an incident) | Yes — /search calls external API | | DNS resolution intermittent | 2 (DNS issue + only affects one endpoint) | Partial — why only /search? | | Memory leak in search service | 2 (leak exists + triggered Tuesday) | Partial — would worsen over time |
Upstream search provider experienced degradation. This requires only one assumption (provider incident), explains why only /search is affected (it's the only endpoint calling that provider), and fits the Tuesday timing without needing a code change.
Check the provider's status page for Tuesday incidents. If clean, run curl directly against the provider API to measure current latency. If provider is fast, re-examine the search index.
</example>
Chainable to: 5-whys (to drill into the chosen explanation's root cause), map-vs-territory (to check whether the observations themselves are accurate)
tools
Use when the user wants to "audit a help skill", "review my plugin index", or "verify my help-skill is up to date". Audits a plugins/<plugin>/skills/help/SKILL.md against the help-skill rubric — coverage, freshness, frontmatter fidelity, plus five judgment dimensions and a trigger-collision check.
tools
Use when the user wants to "scaffold a help skill", "add a /<plugin>:help command", or "build a plugin index skill", or wants to give a plugin an orientation surface that lists its skills and common workflows. Produces a SKILL.md at plugins/<plugin>/skills/help/SKILL.md.
tools
Audits pair-level integrity of a primitive-pair (the artifact `/build:build-skill-pair` produces) by walking the four required artifact slots — principles doc, `build-<primitive>/SKILL.md`, `check-<primitive>/SKILL.md`, and the `primitive-routing.md` registration — and reports cross-artifact issues a per-SKILL.md checker cannot see: missing principles doc, divergent principles paths between halves, absent routing registration, missing build→check handoff. Per-half structural compliance with the unified pattern (`check-skill-pattern.md`) is delegated to `plugins/build/_shared/scripts/check_skill_pattern.py`. Use when the user wants to "audit a skill pair", "review a primitive pair", or "validate the skill pair for X". Not for auditing a single SKILL.md — route to `/build:check-skill`. Not for re-distilling a stale principles doc — route to `/build:build-skill-pair`.
testing
Audit a root-level resolver — verify AGENTS.md pointer, managed-region integrity, filing-table coverage against disk, context-table actionability, and trigger-eval pass rate. Use when the user wants to "audit a resolver", "validate routing table", or "find dark capabilities".