adr
Write an Architecture Decision Record (ADR) for a feature — Context / Decision / Status / Consequences / Alternatives, filed as…
Feature development workflow. Use when: implementing features, writing code, running dev loop. Not for: understanding code (use code-explore), reviewing code (use codex-code-review). Output: implemented feature + tests + review gate.
$ npx -y skills add sd0xdev/sd0x-dev-flow --skill feature-dev --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/feature-devContext preview
The summary Claude sees to decide when to auto-load this skill.
Feature development workflow. Use when: implementing features, writing code, running dev loop. Not for: understanding code (use code-explore), reviewing code (use codex-code-review). Output: implemented feature + tests + review gate.
name: feature-dev description: "Feature development workflow. Use when: implementing features, writing code, running dev loop. Not for: understanding code (use code-explore), reviewing code (use codex-code-review). Output: implemented feature + tests + review gate." allowed-tools: Read, Grep, Glob, Edit, Write, Bash, Skill, AskUserQuestion
❌ git add | git commit | git push — per @rules/git-workflow.md
This skill implements features but does **not** commit. `/precommit` is a quality gate only. To commit, the user must invoke `/smart-commit --execute` separately.
<budget:token_budget>200000</budget:token_budget>
Requirements → Design → Implement → Test + Review → Precommit Gate → Doc Sync
│ │ │ │ │
▼ ▼ ▼ ▼ ▼
/codex- /codex- /verify /precommit /update-docs
architect implement /codex-test-review (or /precommit) /create-request --update
/codex-review-fast**Load the intent first**: identify the feature this work belongs to (from the task, the spec/requirements being followed, or the paths being changed) and read `docs/features/<key>/intent-<key>.md` if it exists — it overrides your default approach. Work that contradicts one of its `INV-*` invariants or Non-goals stops and asks the user (cite the line; amending intent is their re-decision). No identifiable feature → nothing to load; proceed.
**Design before code**: for a non-trivial change, briefly consider who owns each responsibility, the simplest shape that fits the existing code, and why — and say what you chose when the choice is non-obvious. Principles (clear names, small cohesive functions, dependency direction, composition where it reduces coupling) are questions, not quotas: never add an abstraction to demonstrate design. `/codex-architect` is for genuinely hard trade-offs (cross-module boundaries, new public APIs, durable abstractions), not every feature.
| Phase | Command | Description | |-------|---------|-------------| | Design | `/codex-architect` | Get architecture advice | | Implement | `/codex-implement` | Codex writes code | | Test: Run | `/verify` | Run tests (lint → typecheck → unit → integration) | | Test: Review | `/codex-test-review` | **Mandatory** — review test sufficiency (5 dimensions) | | Test: Generate | `/codex-test-gen` | Generate unit tests for gaps | | Test: Integration | `/post-dev-test` | Write missing integration/e2e tests | | Review | `/codex-review-fast` | Code review (auto-loop) | | Precommit | `/precommit` | lint + build + test (auto-loop canonical path) | | Doc Sync | `/update-docs` | Sync docs with code | | Doc Sync | `/create-request --update` | Update request progress | | Refactor | `/simplify` | Final refactoring |
This is the core of feature-dev — ensuring sufficient test coverage before code review.
/verify → all tests pass? Yes → Step 2 No → fix failures → re-run /verify
/codex-test-review → ✅ Tests sufficient? Yes → Step 3 No → close gaps (Step 2a) → /codex-test-review --continue
| Gap Type | Remediation Command | |----------|-------------------| | Unit test missing/insufficient | `/codex-test-gen` → write tests → `/verify` | | Integration/E2E missing | `/post-dev-test` → write tests → `/verify` |
/codex-review-fast → ✅ Ready? Yes → Precommit Gate No → fix issues → re-run /codex-review-fast (auto-loop)
If code changes after the latest `✅ Tests sufficient` gate (e.g., fixes from code review), rerun `/verify` then `/codex-test-review --continue` before proceeding to precommit gate.
Follow `@rules/testing.md` for conventions (AAA, naming, evidence model). Follow `@rules/testing-project.md` for project-specific overrides (directories, runner, adequacy mode).
| Change Type | Test Requirements | |-------------|-------------------| | New Service/Provider | Must have corresponding unit test | | Modify existing logic | Existing tests pass + new logic tested | | Bug fix | Must add regression test | | New API endpoint | Integration test required | | Cross-service change | E2E test required |
Use project convention from `@rules/testing-project.md`. If no override is defined, follow ecosystem defaults:
| Source Pattern | Test Pattern | |---------------|-------------| | `src/<module>/` | `test/unit/<module>/` or `test/<module>/` | | `scripts/<name>.sh` | `test/scripts/<name>.test.js` | | `skills/<name>/SKILL.md` | `test/skills/<name>.test.js` |
**⚠️ Auto-triggered by @rules/auto-loop.md — behavior-layer rule, not hook-enforced.**
Only when change maps to a feature under `docs/features/`. Target detection uses 3-level fallback — see `/update-docs` for algorithm details.
precommit Pass → Locate feature docs (see /update-docs
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…