skills/contexts/SKILL.md
Auto-router for context gathering. Detects whether the task needs codebase exploration or external knowledge research and dispatches accordingly. Trigger on "get context", "background on X", "context on X", "how does X work", architectural orientation, or any setup-before-coding request.
npx skillsauth add outlinedriven/odin-codex-plugin contextsInstall 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.
Auto-router for pre-implementation context gathering. Classify the input as codebase-oriented, doc-oriented, or both; invoke the appropriate workflow; emit a detected: acknowledgement as the first output line.
Apply:
NOT apply:
First output line before ANY work:
detected: <mode> — scope=<paths|libs|both> sources=<brief summary>
Mode values: code-ref, doc-ref, both, ambiguous.
For both mode, also append: (sequential dispatch: codebase first, then external)
First-match wins. Check in order: both must come before leaf modes so mixed-signal inputs are reachable.
| Priority | Mode | Minimum condition |
|----------|------|-------------------|
| 1 | both | Repo-local signal (path, glob, symbol, or module) AND external signal (library, framework, SDK, API, CLI, or service name) both present and non-trivial |
| 2 | code-ref | Repo-local signal present; no external signal |
| 3 | doc-ref | External signal present; no repo-local signal |
| 4 | ambiguous | Neither signal cleanly detected, OR signals present but neither dominant |
Worked examples:
"How does our /autoresearch skill use LangGraph's interrupt for HITL pauses?" → repo signal + external signal → both"Refactor claude/skills/contexts/SKILL.md" → repo signal only → code-ref"Latest Pydantic v2 model_validator signature" → external signal only → doc-ref"Give me context on routing" → no concrete signal → ambiguous → gate firesFire AskUserQuestion (single-select, NEVER multiSelect) when classifier returns ambiguous OR when both signals are present but one is dominant and the mode is unclear:
code-ref, doc-ref, both(Recommended) on the closest classifier matchcode-ref: Invoke codebase exploration workflow. Emit 8-section output (Task Understanding, Architecture Context, Pattern Context, Tooling Context, Dependency Map, Critical Files Summary, Constraints & Considerations, Recommended Next Steps).
doc-ref: Invoke external research workflow. Walk the 5-tier source ladder (Official docs → API refs → Books/papers → Tutorials → Community). Emit source-cited claims with confidence labels.
both (sequential):
Note: sequential dispatch roughly doubles wall-clock time versus a single mode. Emit (sequential dispatch: codebase first, then external) in the detected: line so the user can anticipate latency.
detected: acknowledgement line — it is LOAD-BEARING; downstream parsers and users depend on itcode-ref or doc-ref before both in the classifier — both becomes unreachable under first-match-winsAskUserQuestion with multiSelect: true — always single-select per axis/contexts code-ref, /contexts doc-ref, or /contexts both bypasses the classifier entirely and dispatches directly to that modetesting
ODIN's compress-operations dispatcher under the Compressor/Extender role. Invoke on "tidy", "clean up", "tidy this file/memory/workspace/git/docs", or when active context (current file, diff, stack, memory directory) has structural rot to resolve before touching behavior. Detects target domain from context and routes to the sibling skill. Requires explicit target or clear active-context signal — do not invoke speculatively.
development
Cross-domain taste skill — apply distinctive judgment to any artifact (prose, code, design, decisions) instead of converging to AI defaults. Two modes — `audit` (judge work against the two-sided charter and portable anchors) and `anchor` (load register before producing). Auto-detects by phrasing; override via `/taste audit | anchor`. Trigger on "is this slop?", "overkill?", "elegant?", "taste-test this".
tools
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 deny-correctness), Go (golangci-lint with staticcheck), OCaml (dune --release); establishes `.agent-tasks/<id>/GOALS.md` per-task convention distinct from project-stable AGENTS.md. C++/Java/Kotlin and framework specifics (Spring Boot, Nest, React-strict) are out of scope. Trigger on new project bootstrap, agentic-task setup, "make this self-verifying", "set the loop's goal", "scaffold goals for this issue". Pairs with `llm-self-loop` runtime.
tools
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.