adr
Write an Architecture Decision Record (ADR) for a feature — Context / Decision / Status / Consequences / Alternatives, filed as…
Necessity audit for over-designed spec elements. Use when: auditing lifecycle spec (1-requirements / 2-tech-spec / 3-architecture) for YAGNI/KISS violations, challenging necessity of FRs/NFRs/abstractions/configs via Codex adversarial debate. Not for: FP reasoning validity (use
$ npx -y skills add sd0xdev/sd0x-dev-flow --skill necessity-audit --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/necessity-auditContext preview
The summary Claude sees to decide when to auto-load this skill.
Necessity audit for over-designed spec elements. Use when: auditing lifecycle spec (1-requirements / 2-tech-spec / 3-architecture) for YAGNI/KISS violations, challenging necessity of FRs/NFRs/abstractions/configs via Codex adversarial debate. Not for: FP reasoning validity (use
name: necessity-audit description: "Necessity audit for over-designed spec elements. Use when: auditing lifecycle spec (1-requirements / 2-tech-spec / 3-architecture) for YAGNI/KISS violations, challenging necessity of FRs/NFRs/abstractions/configs via Codex adversarial debate. Not for: FP reasoning validity (use /codex-review-spec), completeness check (use /feature-completeness), detail review (use /codex-review-doc), or code-level simplification (use /simplify)." allowed-tools: Read, Grep, Glob, Write, Bash(node:*), Bash(mktemp:*), Skill
3-phase necessity audit with Codex adversarial debate. Identifies over-designed elements in lifecycle specs via 6-dimension YAGNI rubric.
> **SKILL.md is the normative source.** Reference files elaborate but do not override.
| # | Rule | Violation = | |---|------|-------------| | 1 | Phase A classification output **must NOT** appear in Phase B debate topic | Audit invalid | | 2 | Phase B **must** invoke `/codex-brainstorm` via Skill tool — a raw transport dispatch for debate is invalid | Audit invalid | | 3 | Phase C report **must** include non-empty `debate.threadId` | Report rejected | | 4 | Phase C report **must** include `Debate Conclusion` referencing specific rounds (not blank / placeholder) | Report rejected | | 5 | Output **must** start with `## Necessity Audit` header and end with `✅ Audit Clear` OR `⛔ Audit Revise` sentinel | Auto-loop cannot parse |
| Intent | Use | Not this skill | |--------|-----|----------------| | 「這段推理站得住嗎?」 | `/codex-review-spec` (planned) / `/review-spec` | — | | 「這個 spec 完成了嗎?」 | `/feature-completeness` (planned) | — | | 「這個 code 是否過度抽象?」 | `/simplify` / `/refactor` | — | | 「這個實作符合產業標準嗎?」 | `/best-practices` | — | | **「這個 spec 是否過度設計?需要砍嗎?」** | **`/necessity-audit` ← this skill** | — |
`/codex-review-doc` (detail) → `/codex-review-spec` (reasoning, planned) → **`/necessity-audit` (necessity, this skill)** → `/feature-completeness` (completeness, planned) → `/review-spec` (synthesis)
| Arg | Required | Default | Purpose | |-----|----------|---------|---------| | `<path>` | Yes | — | Target lifecycle spec (repo-relative) | | `--depth brief\|normal\|deep` | No | `normal` | Dimension coverage + equilibrium strictness | | `--continue <threadId>` | No | — | Resume Phase C per `@skills/codex-code-review/references/codex-transport.md` § Resume | | `--skip-preflight` | No | false | Skip state-read advisory; emits `[PREFLIGHT SKIPPED]` banner | | `--include-feasibility` | No | false | Accept `0-feasibility-study.md` (emits override banner) | | `--override <id>:<rationale>` | No (repeatable, `;`-separated) | — | Mark Cut element as kept with justification | | `--output markdown\|json` | No | `markdown` | Output format |
Phase 0 preflight → Phase A classify → Phase B Codex debate → Phase C consolidate → Redact → Emit
> **Scratch directory — read this before running any step.** Each Bash invocation is a **fresh > shell**: a variable assigned in one step does not exist in the next. Do **not** write > `TMPDIR=$(mktemp -d)` and then reference `$TMPDIR` later — on macOS `TMPDIR` is an *ambient* > variable already pointing at the shared temp root (`/var/folders/…/T/`), so later steps silently > read and write there, and the final `rm -rf $TMPDIR` would target that shared root. > > Instead: run `mktemp -d` **once**, read the path it prints, and **substitute that literal > absolute path** into every later command. The placeholder `<AUDIT_TMP_DIR>` below marks each > substitution site. Never name the variable `TMPDIR`.
mktemp -d # → e.g. /var/folders/ab/cd1234/T/tmp.XyZ123 — reuse this literal path below as <AUDIT_TMP_DIR>
Immediately **claim** it. The claim mints a one-time capability token and stores it in a marker inside the directory; the cleanup step requires that exact token back. This is what binds the delete to *this* run's directory rather than to any directory that merely looks like one — or to another concurrent audit's directory, which also carries a valid marker:
node scripts/skills/necessity-audit/cleanup.js --claim "<AUDIT_TMP_DIR>" # → token=3f9c… (48 hex chars) — reuse this literal token in Phase 4 as <AUDIT_TOKEN>
Read the `token=` line it prints and carry that literal value to the cleanup step, the same way you carry the directory path. Like `<AUDIT_TMP_DIR>`, it cannot be held in a shell variable — each Bash invocation is a fresh shell.
node scripts/skills/necessity-audit/preflight.js \ --path <path> --depth <depth> \ [--skip-preflight] [--include-feasibility] \ --output "<AUDIT_TMP_DIR>/preflight.json"
Non-zero exit = hard block. Read `<AUDIT_TMP_DIR>/preflight.json` to continue.
Read target file with Read tool. Apply `references/phase-a-classify.md` template substituting `${TARGET_PATH}`, `${DOC_KIND}`, `${ACTIVE_DIMENSIONS}`, `${GREENFIELD}` from preflight.
Extract elements (FR / NFR / Component / Abstraction / Extensibility / Config), score each against active dimensions only (depth=brief → dims 1-3; normal/deep → dims 1-6), assign initial Keep/Review/Cut.
Write result: `Write` tool → `<AUDIT_TMP_DIR>/phase-a.json` with schema `{ elements: ClassifiedElement[] }` (only `claude.*` fields populated).
node scripts/skills/necessity-audit/debate-topic.js build \ --preflight "<AUDIT_TMP_DIR>/preflight.json" \ --output "<AUDIT_TMP_DIR>/topic.txt"
Read topic, invoke:
Skill("codex-brainstorm", <contents of <AUDIT_TMP_DIR>/topic.txt>)Write raw response: `Write` tool → `<AUDIT_TMP_DIR>/debate.txt`.
node scripts/skills/necessity-audit/debate-topic.js p
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…