adr
Write an Architecture Decision Record (ADR) for a feature — Context / Decision / Status / Consequences / Alternatives, filed as…
Tech spec generation and review. Use when: designing features, writing specs, spec review. Not for: requirements analysis (use req-analyze), implementation (use feature-dev), architecture advice (use codex-architect). Output: numbered tech spec document.
$ npx -y skills add sd0xdev/sd0x-dev-flow --skill tech-spec --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/tech-specContext preview
The summary Claude sees to decide when to auto-load this skill.
Tech spec generation and review. Use when: designing features, writing specs, spec review. Not for: requirements analysis (use req-analyze), implementation (use feature-dev), architecture advice (use codex-architect). Output: numbered tech spec document.
name: tech-spec description: "Tech spec generation and review. Use when: designing features, writing specs, spec review. Not for: requirements analysis (use req-analyze), implementation (use feature-dev), architecture advice (use codex-architect). Output: numbered tech spec document." allowed-tools: Read, Grep, Glob, Bash(git:*), Write
| Command | Purpose | When | | --------------- | -------------------- | ----------------------- | | `/tech-spec` | Create or update tech spec | Auto-detects create/update from filesystem state | | `/deep-analyze` | Deepen spec + roadmap | After initial concept | | `/review-spec` | Review tech spec | Spec confirmation |
When invoked without a full requirement description, the skill auto-detects the target feature using the cascade in `references/native-feature-resolution.md` — this skill's own reference, and deliberately command-free.
This skill grants `Bash(git:*)` and not `Bash(node:*)`, so the resolver script is not a command it may run — and it does not link the shared reference that teaches it, because a file of unrunnable commands inside this skill's reachable graph is the defect, not the annotation on it. The cascade needs nothing beyond `$ARGUMENTS`, `git branch --show-current`, `git diff --name-only HEAD` and a `Glob` over `docs/features/*`. What that does **not** produce is the four document source sets or `scan_error` — this skill consumes neither. A skill that needs the sets (`/architecture`, `/tech-brief`, `/runbook`, `/ask`) grants `Bash(node:*)` and reads the shared reference itself.
**Canonical discovery is still owed, and testing one literal path does not deliver it.** The spec may have been split into a folder or may carry a variant name, and `docs/features/auto-loop-evolution/2-tech-spec/2-tech-spec.md` in this repo is the live proof. Resolve it with a `Glob` over `docs/features/<key>/`, in this order — the first hit wins:
| # | Glob | Meaning | |---|------|---------| | 1 | `docs/features/<key>/2-tech-spec.md` | Unsplit canonical spec | | 2 | `docs/features/<key>/2-tech-spec/2-tech-spec.md` | Split spec — the folder keeps the lifecycle prefix, the main file keeps the canonical filename (`@rules/docs-numbering.md` § Size Limit) | | 3 | `docs/features/<key>/2-tech-spec*.md`, **minus** any hit matching `-fp-brief.md` or `-tech-brief.md` | A variant (`2-tech-spec-v2.md`). The two suffixes are excluded because they are not specs: `scripts/config/doc-taxonomy.json` carries the same `exclude_pattern` for the same reason, and `docs/features/seek-verdict/` holds a live `2-tech-spec-fp-brief.md` that this glob would otherwise return as the canonical spec. **Two or more remaining hits is ambiguity, not a match** — report and take the Need Human exit rather than picking one |
Requirements docs (`1-requirements.md`) resolve the same three ways, **without** the suffix exclusion — `doc-taxonomy.json` carries `exclude_pattern` on the `tech-spec` type only, and copying it to requirements here would put this skill out of step with the classifier rather than in step. A `Glob` that errors, or a `<key>` that resolved with `low` confidence and matches nothing, is **not** the same as "no spec exists" — say which of the two it was; do not silently drop into create mode.
A fourth lookup resolves the **intent artifact**: exactly `intent-<key>.md` in the feature directory — the exact name, never a wildcard pick. A separate `Glob intent-*.md` only surfaces strays or wrong-key files (report them; never adopt one as the intent).
| Filesystem State | Action | |-----------------|--------| | Canonical discovery finds exactly one spec | **Update mode**: read that file — at the path discovery returned, not at the literal `2-tech-spec.md` — research code changes since last update, incrementally update changed sections | | All three globs empty | **Create mode**: generate new spec from template at `docs/features/<key>/2-tech-spec.md` | | Glob 3 returns two or more | Gate: Need Human — ambiguous canonical spec, name the candidates | | Feature not resolved | Gate: Need Human |
In **create mode**, if `intent-<key>.md` is absent, write it first from the intent template bundled with `/req-analyze` — distilled from the requirement clarification step (constraints only, ≤60 lines) — then write the spec. If present, read it before designing.
In **update mode**, focus on sections affected by recent code changes (use `git diff` to identify). Preserve unchanged sections. If `intent-<key>.md` is absent, create it exactly as in create mode (projecting from `1-requirements.md` §§ 1–2 when present, else from the spec's requirement summary) — this is what lets the `next-step` advisory converge on features whose spec predates the intent mechanism. When it exists, read it: every spec section that contradicts an `INV-*` or Non-goal is a **conflict to surface to the user, not to paper over** — and never rewrite intent to match a spec; amending intent is a human re-decision.
sequenceDiagram
participant A as Analyst
participant C as Codebase
participant D as Document
A->>A: 1. Requirement clarification
A->>C: 2. Code research
C-->>A: Related modules
A->>A: 3. Solution design
A->>A: 4. Risk assessment
A->>A: 5. Work breakdown
A->>D: 6. Output document1. Requirement summary (problem + goals + scope) 2. Existing code analysis 3. Technical solution (architecture + data model + API + core logic) 4. Risks and dependencies 5. Work breakdown 6. Testing strategy 7. Open questions
A spec is cheapest to
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…