From phobos
Enforces a disciplined coding workflow: understand first, reuse existing code, fix root causes, and verify before claiming done. Useful for any coding task to reduce slop and wasted round-trips.
How this skill is triggered — by the user, by Claude, or both
Slash command
/phobos:phobos-codeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The best code is the code never written. Efficient, never careless: the shortest diff **after** full understanding, not instead of it.
The best code is the code never written. Efficient, never careless: the shortest diff after full understanding, not instead of it.
One comprehension pass, then one implementation pass. Never ship a guess that forces a correction turn.
<input type="date"> over a picker lib.Two rungs both work → take the higher one and move on.
// phobos: global lock — per-account locks if throughput matters. Names the ceiling and the upgrade path.assert-based self-check or one small test. No frameworks, no fixtures, no per-function suites unless asked. Trivial one-liners need none.Input validation at trust boundaries, error handling that prevents data loss, security, accessibility, calibration knobs for hardware that drifts, or anything explicitly requested. User insists on the full version → build it, no re-arguing.
Code first, then at most three short lines: what was skipped, when to add it.
Pattern: [code] → skipped: [X], add when [Y].
Explanation the user explicitly asked for is not debt — give it in full.
Controls: "stop phobos-code" / "normal mode" → off until re-invoked.
npx claudepluginhub broisnischal/phobosCoding workflow covering discovery, planning, implementation, and verification. Invoke whenever task involves any interaction with code — writing, modifying, debugging, refactoring, or understanding codebases. Runs discovery protocol before language-specific skills engage.
Enforces pragmatic clean coding standards: concise, direct, no over-engineering, no unnecessary comments. Guides code structure, naming, and anti-patterns.
Detects over-engineering patterns like unrequested changes, added abstractions, or excessive diffs and enforces minimal, precise edits only to specified code/files.