Odin Code

Odin Code from OutlineDriven/odin-claude-plugin.

Skills in this plugin

32
  1. Explore · outlinedriven-odin-claude-plugin bundle
    Use when asked to explore the codebase to map structure, symbols, and dependencies. Not for a single file under 50 LOC: read it directly.
    1 install
  2. Offense · outlinedriven-odin-claude-plugin bundle
    Use when a human says "overhaul", "rebuild this subsystem", or "rewrite it from scratch". Not for thin-slice features: use incremental-implementation. Not for root-cause repair: use strike-the-root.
    1 install
  3. Ast Grep · outlinedriven-odin-claude-plugin bundle
    Use when asked to run AST-based structural search, lint, or rewrite of code when regex is too fragile. Not for remote, credential, publish, deploy, or irreversible changes.
    1 install
  4. Simplify · outlinedriven-odin-claude-plugin bundle
    Use when the user says "simplify this diff" or asks for a compression pass over a change-set. Not for dead-code sweeps: use deslop.
    0 installs
  5. Principles · outlinedriven-odin-claude-plugin bundle
    Use when a request names a working principle (subtract before you add, idempotent operations, never block on the human) or asks which principle applies. Not for running a repair: use strike-the-root.
    1 install
  6. No Comments · outlinedriven-odin-claude-plugin bundle
    Use when asked to audit comments in code files and propose structural replacements or deletions with per-candidate approval. Not for deterministic commented-out-code removal: use deslop.
    1 install
  7. Type Driven · outlinedriven-odin-claude-plugin bundle
    Use when modeling a domain, encoding a state machine, hardening APIs, making invalid states unrepresentable, or parsing instead of validating. Not for TypeScript: use typescript-best-practices.
    1 install
  8. Deps Upgrade · outlinedriven-odin-claude-plugin bundle
    Use when dependency upgrades need batching for CVEs, a major release, forced compatibility, a scheduled or vulnerability-triggered sweep. Not for PR queue triage: use github-backlog-triage.
    1 install
  9. Source Driven · outlinedriven-odin-claude-plugin bundle
    Use when writing or verifying framework-specific code, boilerplate, or a documented, correct implementation. Not for remote, credential, publish, deploy, or irreversible changes.
    0 installs
  10. To Greenfield · outlinedriven-odin-claude-plugin bundle
    Use when the user says greenfield this or rescue this codebase, names a field (dark, red, blue, or brown), or diagnoses a subsystem. Not for specs: use to-spec. Not for remote or irreversible changes.
    1 install
  11. Breaking Driven · outlinedriven-odin-claude-plugin bundle
    Use when bloated code needs clean re-derivation, or the user says "this module is bloated" or "break it and rebuild". Not for untracked data or changes without VCS rollback.
    1 install
  12. Clean Clean Cut · outlinedriven-odin-claude-plugin bundle
    Use when asked to run /clean-clean-cut to cut accumulated records and residue. Not for untracked or non-VCS changes, or branch/worktree cleanup: use git-cleanup.
    1 install
  13. Contract Driven · outlinedriven-odin-claude-plugin bundle
    Use when crossing a public API boundary, guarding complex invariants, or hardening untrusted input or integration seams. Not for remote or irreversible changes.
    0 installs
  14. Design It Twice · outlinedriven-odin-claude-plugin bundle
    Use when asked to design a module interface, seam, or testable boundary. Not for UI direction picking: use design. No source or remote-system changes.
    1 install
  15. Fastopt Extreme · outlinedriven-odin-claude-plugin bundle
    Use when optimizing estimated hot and complexity-neutral cold paths while refusing complexity theater. Not for measured-floor rebuilds: use extremely-optimize. Not for hypothesis-only: use fastopt.
    1 install
  16. Strike The Root · outlinedriven-odin-claude-plugin bundle
    Use when a bug, failure, flake, regression, review finding, or ticket needs the core fixed so it cannot recur. Not for greenfield features: use tdd. Not for style-only review or typo-class one-liners.
    0 installs
  17. Minimalism Driven · outlinedriven-odin-claude-plugin bundle
    Use when writing or restructuring code, before adding a helper, wrapper, config key, or dependency, or when the user asks for minimal or DRY code. Not for performance tuning: use optimize.
    1 install
  18. Extremely Optimize · outlinedriven-odin-claude-plugin bundle
    Use when asked to run a performance campaign against a measured floor. Not for hypothesis-only analysis without mutation: use fastopt.
    1 install
  19. Unleak Abstraction · outlinedriven-odin-claude-plugin bundle
    Use when an abstraction leak must be sealed as a module seam, configuration option, or explicit override, or exposed as a named boundary. Not for detecting concealment patterns: use no-hide.
    1 install
  20. Code Simplification · outlinedriven-odin-claude-plugin bundle
    Use when the user asks to simplify, clean, or refine code. Not for new abstractions or whole-codebase refactors.
    1 install
  21. Dimensional Analysis · outlinedriven-odin-claude-plugin bundle
    Use when code mixes units, fixed-point precisions, scaling factors, rates, prices, shares, or conversions. Not for type-level unit modeling: use type-driven.
    1 install
  22. Slicing Code Context · outlinedriven-odin-claude-plugin bundle
    Use when an exact symbol, path, entrypoint, or line range can bound a focused code question or patch proposal under a fixed source budget. Not for source changes or broad repository exploration.
    0 installs
  23. Deprecate And Migrate · outlinedriven-odin-claude-plugin bundle
    Use when asked to remove old code, migrate consumers, or decide whether to maintain or sunset a system. Not for untracked data or changes without VCS rollback.
    1 install
  24. Document API Endpoint · outlinedriven-odin-claude-plugin bundle
    Use when reconciling an API endpoint's generated OpenAPI schema and declared response types with its actual runtime response. Not for general API documentation: use docs-and-adrs.
    1 install
  25. Refactor Break Compat · outlinedriven-odin-claude-plugin bundle
    Use when modernizing APIs, removing compat shims, killing feature flags, or rewriting a subsystem cleanly. Not for additive refactors that must preserve the old path.
    1 install
  26. Restart Keeping Lessons · outlinedriven-odin-claude-plugin bundle
    Use when an implementation has more workarounds than structure and another patch will not pay. Not for in-place re-derivation: use breaking-driven. Not for one-artifact rewrites: use rewrite-clean-v0.
    3 installs
  27. API And Interface Design · outlinedriven-odin-claude-plugin bundle
    Use when asked to design or change a public API, route, CLI flag, or module boundary. Not for remote, credential, publish, deploy, or irreversible changes.
    1 install
  28. Reproduce And Fix Issues · outlinedriven-odin-claude-plugin bundle
    Use when a trusted bug or performance report needs reproduction and fix. Not for untrusted reports or scope beyond the named feature.
    1 install
  29. Incremental Implementation · outlinedriven-odin-claude-plugin bundle
    Use when implementing a multi-file change, building a feature from a breakdown, or writing a large amount of code. Not for a single settled ticket: use work.
    1 install
  30. Spec Driven Implementation · outlinedriven-odin-claude-plugin bundle
    Use when a feature begins or specs are checked in: author or update behavioral specs and keep them current with what ships. Not for producing the initial approved spec and plan: use spec-driven.
    0 installs
  31. Universal Invariant Baseline · outlinedriven-odin-claude-plugin bundle
    Use when invoked to apply an invariant-first, fail-fast, special-case-eliminating baseline. Not for domain models in types: use type-driven. Not for design-by-contract: use contract-driven.
    1 install
  32. Constraint Driven Development · outlinedriven-odin-claude-plugin bundle
    Use when asked to implement under non-negotiable constraints: performance budgets, platform limits, legal or API rules. Not for remote, credential, publish, deploy, or irreversible changes.
    1 install