Curated skills for Claude Code that enforce real engineering discipline.
These aren't generic prompt templates. They're structured workflows with gates, scoring rubrics, and anti-drift guards. Built from hundreds of hours of real-world agent sessions where we learned what makes AI coding agents actually reliable.
| Skill | What It Does | What Makes It Different |
|---|---|---|
| session-focus | Prevents goal drift during multi-step tasks | Keyword contracts, 7-call drift checks, rationalization table that kills every excuse for scope creep |
| refactoring | Restructures code without changing behavior | Gated phases with mandatory test baselines, revert protocol on failure, full pattern catalog with Python/TS recipes |
| security-audit | OWASP Top 10 review with scoring | Quantified 80-point scoring rubric, not just a checklist — produces a graded report with prioritized findings |
| qa-test-design | Designs tests before writing them | Boundary analysis tables, weak-vs-strong assertion guide, flaky test prevention checklist |
| performance | Data-driven profiling and optimization | "Measure first, always" rule enforced at every step — baseline, bottleneck, optimize, measure again |
| architecture | System design with ADRs and tradeoff analysis | Forces 2-3 approaches with explicit tradeoffs before any implementation |
| debugging-triage | Structured bug investigation | 6-phase workflow: reproduce, classify, isolate, root cause, fix, guard — with deviation classification for fix scope |
| post-incident | Post-mortem after production incidents | 5-whys template, blast radius assessment, mandatory automated guard as output |
| pushback | Strategic challenge before high-stakes decisions | 7 Founder Traps detection, steel-man-first protocol, auto-detect mode for irreversible decisions |
curl -fsSL https://raw.githubusercontent.com/omega-memory/omega-skills/main/install.sh | bashgit clone https://github.com/omega-memory/omega-skills.git
cp -r omega-skills/skills/* ~/.claude/skills/git clone https://github.com/omega-memory/omega-skills.git
cp -r omega-skills/skills/session-focus ~/.claude/skills/
cp -r omega-skills/skills/refactoring ~/.claude/skills/
# ... pick what you needAfter installing, Claude Code automatically discovers skills in ~/.claude/skills/ and makes them available via /skill-name commands.
Once installed, invoke any skill by name in Claude Code:
/session-focus — before starting any multi-step task
/refactoring — when restructuring code
/security-audit — before shipping to production
/qa-test-design — before writing tests
/performance — when something is slow
/architecture — before building something new
/debugging-triage — when investigating a bug
/post-incident — after resolving a production issue
/pushback — before any decision where being wrong is expensive
These skills work standalone — no dependencies required.
When paired with OMEGA Memory, skills gain persistent context across sessions: debugging insights carry forward, architectural decisions are remembered, and post-incident lessons inform future triage. But that's optional. The workflows, gates, and checklists work on their own.
pip install omega-memoryApache-2.0 — same as omega-memory.