adr
Write an Architecture Decision Record (ADR) for a feature — Context / Decision / Status / Consequences / Alternatives, filed as…
Context-aware test orchestration. Use when: smart test selection, failure triage, progressive test ladder, test failure analysis. Not for: writing tests (use post-dev-test), reviewing tests (use codex-test-review), generating tests (use codex-test-gen), full manual run (use
$ npx -y skills add sd0xdev/sd0x-dev-flow --skill test-deep --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/test-deepContext preview
The summary Claude sees to decide when to auto-load this skill.
Context-aware test orchestration. Use when: smart test selection, failure triage, progressive test ladder, test failure analysis. Not for: writing tests (use post-dev-test), reviewing tests (use codex-test-review), generating tests (use codex-test-gen), full manual run (use
name: test-deep description: "Context-aware test orchestration. Use when: smart test selection, failure triage, progressive test ladder, test failure analysis. Not for: writing tests (use post-dev-test), reviewing tests (use codex-test-review), generating tests (use codex-test-gen), full manual run (use verify). Output: test results + triage report + fixer actions." allowed-tools: Read, Grep, Glob, Bash, Write, Agent
When test failures occur, dispatch background triage:
Agent({ description: "Analyze test failure root cause and suggest fixes", subagent_type: "verify-app", prompt: `Analyze the following test failure: <failure output> Identify root cause and suggest minimal fix.` })
| Scenario | Alternative | |----------|------------| | Writing new tests | `/post-dev-test` | | Reviewing test coverage | `/codex-test-review` | | Generating unit tests | `/codex-test-gen` | | Full manual test run | `/verify` | | Code review | `/codex-review-fast` |
❌ git add | git commit | git push — per @rules/git-workflow.md
This skill runs tests and may apply safe fixers, but does **not** commit. To commit, the user must invoke `/smart-commit --execute` separately.
flowchart TD
U[User: /test-deep] --> S[Phase 0: Test Selection]
S --> |git diff mapping| T[Test Targets]
S --> |no mapping| F1[Framework --changedSince]
S --> |low confidence| F2[Full Suite]
T --> L[Phase 1: Progressive Ladder]
F1 --> L
F2 --> L
L --> |unit| R1[Run Unit Tests]
R1 --> |pass| R2[Run Integration Tests]
R1 --> |fail| TR[Phase 2: Triage Pipeline]
R2 --> |pass| R3[Run E2E Tests]
R2 --> |fail| TR
R3 --> |pass| DONE[All Pass]
R3 --> |fail| TR
TR --> P[Parser: Structured Tags]
P --> LLM[LLM: Root Cause + Action]
LLM --> FC[Phase 3: Fixer Catalog Lookup]
FC --> SG{Safety Gate}
SG --> |safe| AUTO[Auto-run Fix]
SG --> |side-effect| ASK[AskUserQuestion]
SG --> |destructive| BLOCK[Manual Only]
AUTO --> L
ASK --> |approved| LMap code changes to test targets. See `references/test-selection.md` for full strategy.
**Strategy priority**:
| Priority | Method | When | |----------|--------|------| | 1 | Git diff filename mapping | Default — map changed files to test files via Glob | | 2 | Framework native | Jest `--changedSince`, Vitest `--changed` | | 3 | Full suite fallback | Config change, no mapping, `--all` flag |
**Steps**: 1. Collect changed files: union of unstaged + staged + untracked (`--branch` uses merge-base) 2. Apply filename mapping rules to generate candidate test paths 3. Glob-confirm each candidate exists 4. Classify confirmed tests by layer (unit / integration / e2e)
**Full suite escalation triggers**: config file changed, CI/CD file changed, package dependency changed, no test files mapped, `--all` flag.
Execute tests layer-by-layer with fail-fast.
| Layer | Directory Pattern | Timeout | Fail Behavior | |-------|------------------|---------|---------------| | Unit | `test/unit/**`, `test/scripts/lib/**`, unclassified | 60s | Fail-fast → triage | | Integration | `test/integration/**` | 300s | Fail-fast → triage | | E2E | `test/e2e/**` | 600s | Enter triage |
**Fail-fast rule**: Unit fail → skip integration + e2e. Integration fail → skip e2e.
**Override**: `--no-fail-fast` disables this behavior (run all layers regardless).
**Layer detection**: Classify test files by directory prefix. Files not matching any integration/e2e pattern → treat as unit.
**Execution**: Run tests using project's configured test command (from `package.json` scripts or `CLAUDE.md`). Capture stdout/stderr and exit code.
When failures occur, analyze and classify. See `references/triage-pipeline.md` for full spec.
Extract structured tags from test output (no classification — just structure):
| Tag | Description | |-----|-------------| | `exit_code` | Process exit code | | `error_signatures[]` | Regex-matched error patterns | | `failing_tests[]` | Failed test names | | `failing_files[]` | Failed test file paths | | `env_hints[]` | Environment clues (testnet, localhost, etc.) | | `stack_depth` | Stack trace line count |
Feed parser tags + compressed output to LLM for classification:
| Classification | Definition | Typical Action | |---------------|------------|----------------| | `code_bug` | Logic error in code | Fix code | | `infra` | Infrastructure issue (port, dependency) | Restart / reinstall | | `environment` | External precondition unmet | Fixer catalog action | | `flaky` | Non-deterministic failure | Retry + quarantine tag |
**Mandatory secret redaction** before LLM analysis — per `@rules/logging.md`:
Route `suggested_fixer` through safety gate:
| Tier | Auto-run? | Confirmation | Examples | |------|-----------|-------------|---------| | `safe` | Yes | None | retry, clear_cache | | `side-effect` | No | AskUserQuestion | reinstall_deps, restart_server | | `destructive` | Blocked | Manual only | Reset state, drop tables |
**Default-deny**: Unknown fixer → `side-effect` tier (require confirmation).
Lookup fixer from catalog, check tier, execute or prompt. See `references/fixer-catalog.md` for full catalog.
**Core fixers** (plugin-shipped):
| Fixer | Tier | Description | |-------|------|-------------| | `retry` | safe | Re-run failing tests | | `clear_cache` | safe | Clear build/tes
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…