adr
Write an Architecture Decision Record (ADR) for a feature — Context / Decision / Status / Consequences / Alternatives, filed as…
Explain complex code via Codex exec. Use when: understanding complex logic, tracing data flow, onboarding to unfamiliar code. Not for: code review (use codex-code-review), exploration (use code-explore). Output: structured explanation at chosen depth.
$ npx -y skills add sd0xdev/sd0x-dev-flow --skill codex-explain --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/codex-explainContext preview
The summary Claude sees to decide when to auto-load this skill.
Explain complex code via Codex exec. Use when: understanding complex logic, tracing data flow, onboarding to unfamiliar code. Not for: code review (use codex-code-review), exploration (use code-explore). Output: structured explanation at chosen depth.
name: codex-explain description: "Explain complex code via Codex exec. Use when: understanding complex logic, tracing data flow, onboarding to unfamiliar code. Not for: code review (use codex-code-review), exploration (use code-explore). Output: structured explanation at chosen depth." allowed-tools: Read, Grep, Glob, Bash(node:*), Write
Read target → [Collect context] → Codex explain → Output explanation
Read file content. If `--lines` specified, extract only that range.
Dispatch per `@skills/codex-code-review/references/codex-transport.md` § Start with the explanation prompt. See `references/codex-prompt-explain.md`.
| Level | Description | | ------ | ---------------------------------------------------- | | brief | One-sentence summary | | normal | Functional overview + execution flow + key concepts (default) | | deep | + Design patterns + complexity + issues + dependencies |
## Code Explanation: <target> - **Depth**: brief / normal / deep - **Summary**: <functional overview> - **Execution flow**: <key paths> - **Key concepts**: <patterns, abstractions>
Input: /codex-explain src/service/order/order.service.ts Action: Read file → Codex explain (normal) → Functional summary + detailed explanation Input: /codex-explain src/service/xxx.ts --depth deep Action: Read file → Codex explain (deep) → Patterns + complexity + issues Input: /codex-explain src/xxx.ts --lines 50-100 Action: Read lines 50-100 → Codex explain → Focused explanation
Language: English | 繁體中文 | 简体中文 | 日本語 | 한국어 | Español The harness layer for Claude Code. Let the model choose the path. Keep "done" verifiable. Full control plane on Claude Code. Skills-only distribution for Codex CLI and other compatible agents.
Repo: sd0xdev/sd0x-dev-flow
Write an Architecture Decision Record (ADR) for a feature — Context / Decision / Status / Consequences / Alternatives, filed as…
Architecture design and documentation. Produces 3-architecture.md with component diagrams, data flow, integration points, and architecture decisions. Reads…
Context-aware Q&A with auto context gathering. Use when: user has a quick question about codebase, git history, rules, docs, or skills during development. Not…
Industry best practices conformance audit with mandatory adversarial debate. Produces audit artifact: verdict (OK/WARN/FAIL) + gap roadmap + debate proof. Use…
Bug fix workflow. Use when: fixing bugs, resolving issues, regression fixes. Not for: new features (use feature-dev), understanding code (use code-explore).…
Bump package and plugin version in sync. Updates package.json, .claude-plugin/plugin.json, and install-state manifest to the same version. Use when: user says…