adr
Write an Architecture Decision Record (ADR) for a feature — Context / Decision / Status / Consequences / Alternatives, filed as…
Multi-wave parallel code exploration orchestrator. Use when: large-scale codebase research, understanding complex cross-domain systems, deep investigation needing multiple perspectives simultaneously. Not for: quick lookup (use code-explore), dual confirmation (use
$ npx -y skills add sd0xdev/sd0x-dev-flow --skill deep-explore --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/deep-exploreContext preview
The summary Claude sees to decide when to auto-load this skill.
Multi-wave parallel code exploration orchestrator. Use when: large-scale codebase research, understanding complex cross-domain systems, deep investigation needing multiple perspectives simultaneously. Not for: quick lookup (use code-explore), dual confirmation (use
name: deep-explore description: "Multi-wave parallel code exploration orchestrator. Use when: large-scale codebase research, understanding complex cross-domain systems, deep investigation needing multiple perspectives simultaneously. Not for: quick lookup (use code-explore), dual confirmation (use code-investigate), code review (use codex-code-review). Output: unified exploration report with completeness scoring." allowed-tools: Read, Grep, Glob, Bash, Agent
| Scenario | Alternative | |----------|------------| | Quick single-area lookup | `/code-explore` | | Dual Claude+Codex confirmation | `/code-investigate` | | Git history tracking | `/git-investigate` | | Code review | `/codex-review-fast` |
flowchart TD
A[Phase 0: Intent Analysis] --> B{Files > 25?}
B -->|No| C[Redirect to /code-explore]
B -->|Yes| D[Wave 1: Breadth]
D --> E[Gather + Claim Registry]
E --> F[Wave 2: Depth]
F --> G{Completeness Gate}
G -->|score >= 80 + no critical Qs| H[Report]
G -->|score < 80 OR critical Qs| I[Wave 3: Cross-cutting]
I --> H1. Parse user's research question 2. Estimate scope: `Grep` for related keywords → count unique files 3. Routing guard: if estimated files <= 25, redirect to `/code-explore` 4. Plan shards: identify 2-3 non-overlapping exploration areas
| Priority | Method | When | |----------|--------|------| | 1 | User-specified areas (`--areas`) | User knows what to split | | 2 | Domain-based clustering | Auto-detect service/provider/hooks/rules boundaries | | 3 | Directory-based fallback | When domain boundaries unclear |
Output: ownership matrix (shard → files).
Fan-out 2-3 Explore agents in parallel. Each agent explores one shard.
Agent({
description: "Wave 1 Shard A: <area description>",
subagent_type: "Explore",
run_in_background: true,
prompt: <agent-prompt template from references/agent-prompt.md>
});All agents dispatched in a **single message** (parallel). Wait for all to complete.
| Allocation | Scope | Limit | |-----------|-------|-------| | 80% | Primary assigned shard | Unlimited findings | | 20% | Peripheral vision (security, edge cases, cross-cutting) | Max 2 peripheral findings |
Peripheral findings must be evidence-backed (file:line) and tagged: `cross-cutting | security | reliability | operability`.
After each wave, the orchestrator:
1. **Collect** all agent results 2. **Build claim registry** (see `references/synthesis.md`) 3. **Rank open questions** by `impact × uncertainty` 4. **Build context packet** for next wave
| Pass | Don't Pass | |------|-----------| | Evidence-backed facts (file:line) | Prior wave conclusions as truth | | Open Qs ranked by impact × uncertainty | Narrative interpretations | | Do-not-repeat ledger (explored files, executed queries) | Full raw findings dump | | Contradiction list | Agent opinions without evidence |
Focus on top hotspots from Wave 1, ranked by `impact × uncertainty × blast_radius`.
After Wave 2 (and Wave 3 if run), compute completeness score.
score = round(100 × (0.7 × (1 - novelty_rate) + 0.3 × is_zero(critical_open))) Where: novelty_rate = unique_new_findings / max(1, total_valid_findings) critical_open = count(questions where impact=high AND uncertainty=high) is_zero(x) = 1 if x == 0, else 0
Zero findings → `novelty_rate = 0` → `score = 70` (below threshold → continue).
| Condition | Action | |-----------|--------| | `score >= 80` AND `critical_open == 0` | Stop, output report | | `score >= 80` AND `critical_open > 0` | Wave 3 (if not yet run) | | Wave 3 done AND `score < 80` | Stop with `Inconclusive` + next actions |
| User `--waves` | Hard-fail active | Behavior | |----------------|-----------------|----------| | `--waves 2` | No | Stop after Wave 2 | | `--waves 2` | Yes | Stop after Wave 2 with `Inconclusive` | | `--waves 3` | No | Adaptive (stop early if score met) | | `--waves 3` | Yes | Force Wave 3 |
User `--waves` never exceeded. Hard-fail emits `Inconclusive` with explanation.
Triggered only when:
If no trigger conditions met, skip Wave 3 even if `score < 80`.
Agents in Wave 3 follow 80/20 contract. If trigger is cross-cutting, one agent may operate as conditional scout with broader mandate.
// Primary: Agent tool with subagent_type=Explore
Agent({
description: "Wave N Shard X: <description>",
subagent_type: "Explore",
run_in_background: true,
prompt: `<from references/agent-prompt.md>`
});**Fallback** (if Explore dispatch fails): 1. Retry with `subagent_type: "general-purpose"` 2. If still fails → degrade to single-agent inline exploration 3. Mark coverage gap in report
See `references/synthesis.md` for full algorithm.
| Step | Action | |------|--------| | 1. Normalize | `{claim, evidence(file:line), shard, wave, confidence}` | | 2.
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…