OutlineDriven

188 mods across 5 repositories, 116 stars between them.

proceed

169

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Execute an implementation plan with surgical precision. Use after a planning phase (plan-now or similar) has produced a step-by-step strategy and identified critical files. Focuses on precise code changes with verification at each step.

5 1mo ago A 46 tokens copy · 100% Apache-2.0

proof-driven

170

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Proof-driven development. Use when implementing with formal verification using property-based testing, theorem proving, or proof tactics; zero unproven property policy enforced.

5 1mo ago A 33 tokens copy · 100% Apache-2.0

qa

171

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Conversational QA mode — user reports bugs in plain language, agent clarifies minimally, files GitHub issues that survive refactors. Trigger on "QA", "QA session", or ad-hoc bug reporting without a fixed deliverable shape. Distinct from branch-scoped and PR-scoped review.

5 1mo ago A 62 tokens copy · 100% Apache-2.0

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Refactor by removing backward compatibility and legacy layers. Use when modernizing APIs, cleaning up migration debt, removing compat shims, or eliminating stale feature flags.

5 1mo ago A 40 tokens copy · 100% Apache-2.0

request-refactor-plan

173

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Plan a refactor as a sequence of tiny, working commits via adversarial interview. Default output is a markdown plan at /docs/refactor-plans/ .md; pass --emit-issue to also file a GitHub issue. Trigger on structural refactors (rename, extract, move, split, dedupe) — NOT new features.

5 1mo ago A 80 tokens copy · 100% Apache-2.0

research

174

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Read-only external knowledge gathering via ODIN's 5-tier doc ladder (Official docs → API refs → Books/papers → Tutorials → Community). For library APIs, framework behavior, SDK migrations, version-specific docs, vendor announcements, RFCs. Verifies claims against primary sources. Invoke on "how does X library work"…

5 1mo ago A 87 tokens copy · 100% Apache-2.0

resolve

175

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Resolve code review comments by verifying validity, then proposing multiple architectural solutions (not naive fixes) for confirmed issues. Use when addressing review feedback or analyzing comment validity.

5 1mo ago A 34 tokens copy · 100% Apache-2.0

reviews

176

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Review the code changes on the current branch. Use when the user asks to review their current work, analyze recent commits, or get a code quality assessment of the active branch against the main branch.

5 1mo ago A 41 tokens copy · 100% Apache-2.0

security-review

177

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Adversarial security audit — STRIDE, OWASP Top 10, supply-chain (CVE/SBOM), secrets scan, auth/authz analysis. Use on changes touching auth, input parsing, deserialization, network I/O, dependencies, or secrets; before any production release or external-surface PR.

5 1mo ago A 66 tokens copy · 100% Apache-2.0

setup-gitignore

178

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Initialize or idempotently revise the repo's .gitignore by composing gitignore.io templates, AI-tooling/IDE patterns, and confirmed noise from git status. Use when the user says "set up gitignore", "fix gitignore", or untracked files keep appearing in git status.

5 1mo ago A 64 tokens copy · 100% Apache-2.0

setup-pre-commit

179

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Install git pre-commit hooks via the project's hook tool — Husky+lint-staged (JS), pre-commit (Python/OCaml), lefthook (Go), cargo-husky (Rust). Use when the user wants commit-time formatting, linting, type-checking, or test gates. Detects ecosystem first.

5 1mo ago A 73 tokens copy · 100% Apache-2.0

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Install a Claude-Code PreToolUse hook that blocks destructive git commands (push variants including force-push, hard reset, force clean, branch -D, checkout/restore overwrites) before Bash runs them. Use when the user wants git safety rails, force-push prevention, or repository-wipe protection.

5 1mo ago B 71 tokens original Apache-2.0

srgn-cli

181

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Practical guide for building safe, syntax-aware srgn CLI commands for source-code search and transformation. Use when users ask for srgn commands, scoped refactors (comments/docstrings/imports/functions), multi-file rewrites with --glob, custom tree-sitter query usage, or CI-style checks with --fail-any/--fail-none.

5 1mo ago A 72 tokens copy · 94% Apache-2.0

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

One-shot bootstrap of strict-mode tooling per ecosystem plus per-task GOALS.md scaffolding so an agentic loop can self-verify. Writes typechecker / linter / schema-validator config for TS (strict + noUncheckedIndexedAccess + exactOptionalPropertyTypes), Python (Pyright strict, Ruff strict), Rust (Clippy…

5 1mo ago A 211 tokens copy · 94% Apache-2.0

test-driven

183

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Test-Driven Development (TDD) across any supported language. Use when implementing features or fixes with TDD methodology, writing tests before code, or following XP-style development.

5 1mo ago A 38 tokens copy · 95% Apache-2.0

tests-adversarial

184

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Write adversarial tests that intentionally stress failure paths. Use when hardening error handling, stress-testing assumptions, validating boundary behavior, or hunting silent failures.

5 1mo ago A 35 tokens copy · 100% Apache-2.0

tests-purge-unneeded

185

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Delete tests that don't catch real bugs — the inverse of TDD. Use when reviewing legacy test suites, slow CI investigations, refactor-driven test sweeps, or evaluating whether a test the type system already covers should stay. Thesis — a test exists only if removing it would let a real bug reach production.

5 1mo ago A 68 tokens copy · 100% Apache-2.0

to-issues

186

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Decompose a plan, PRD, or spec into independently-grabbable vertical-slice issues (markdown file by default, GitHub issues via flag). Trigger when the user wants implementation tickets, work decomposition, or to convert an implementation plan into parallelizable work. Takes a plan file and emits atomic vertical slices.

5 1mo ago A 67 tokens copy · 95% Apache-2.0

to-prd

187

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Synthesize current conversation context and codebase understanding into a PRD artifact (markdown file by default, GitHub issue via flag). Trigger when the user asks for a PRD, requirements doc, feature spec, or wants to crystallize an in-flight discussion into a durable artifact before planning. PRD precedes…

5 1mo ago A 69 tokens copy · 100% Apache-2.0

triage-issue

188

OutlineDriven/odin-gemini-cli-extension

Skill Claude CodeCodex

Investigate a reported bug to root cause, then emit a TDD-shaped fix plan as an issue artifact. Trigger when the user reports a bug, says "triage", asks for issue investigation, or wants a fix plan before code changes.

5 1mo ago A 54 tokens original Apache-2.0