一键导入
nezam-build-modes
Development method overlays for NEZAM. Modifies phase execution and gate thresholds without changing the SDD pipeline structure.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Development method overlays for NEZAM. Modifies phase execution and gate thresholds without changing the SDD pipeline structure.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Workspace-level visual asset and canvas pipeline for generating documents, slides, and posters with rich layouts.
Enforces the full-width header / max-width body / full-width footer chrome pattern. Implements the filter+split rendering technique so background bleeds reach the viewport edge while inner content stays constrained.
Apply high-quality frontend design patterns with token-first implementation rules and NEZAM gate compliance.
Run before any design work on an unfamiliar codebase — extracts full UI context (components, layouts, routes, tokens, pages, extractable components) into 6 structured files in .cursor/context/design-init/.
Enforces the two-step design discipline: Step A pixel-perfect ground-truth reproduction → Step B exactly 2 branch variations. Applies to all design work in NEZAM.
Orchestrates high-performance infinite canvas systems, viewport transforms, and spatial indexing.
| skill_id | nezam-build-modes |
| name | nezam-Build Modes |
| tier | 3 |
| description | Development method overlays for NEZAM. Modifies phase execution and gate thresholds without changing the SDD pipeline structure. |
| version | 1.0.0 |
| certified | false |
| updated | "2026-05-12T00:00:00.000Z" |
| changelog | [] |
Apply a development method overlay to the NEZAM SDD pipeline. Overlays modify how phases execute and what gate thresholds apply — they do NOT change the pipeline structure (gates remain G0→G1→G2→...→G6).
Loaded by swarm-leader when build_mode is non-empty in onboarding.yaml.
build_mode: "sdd" — Full Specification-Driven Development
When to use: Production applications, client projects, anything that needs governance documentation, multi-developer teams.
Phase sequence:
G0 → Planning → G1 → Phase 1 Foundation → Phase 2 Core → Phase 3 Integration
→ Phase 4 Content → Phase 5 Hardening → G5 → Phase 6 Ship
build_mode: "lean" — Rapid MVP delivery
When to use: Prototypes, hackathons, internal tools, early-stage startups validating product-market fit.
Phase sequence:
G0 → Light Planning → G1 → Phase 1 MVP Core → Phase 2 Polish
→ Phase 3 Hardening (lite) → G3 → Ship
Modified gates:
build_mode: "tdd" — SDD pipeline + test-first gates
When to use: High-reliability systems, payment flows, auth systems, API services where correctness is critical.
Additional gate per feature (within each phase):
Write test → Commit test → Implement feature → Run test → Pass → Merge
↑ Gate: test must exist before implementation
swarm-leader enforcement:
When build_mode: tdd — before approving any feature task as "done":
/check output with TDD compliance scorebuild_mode: "api-first" — Reversed pipeline: API contract before everything else
When to use: Backend-heavy projects, public APIs, headless architectures, microservices, B2B integrations.
Modified planning sequence:
G0 → API Spec (OpenAPI/GraphQL) → IA → Design → PRD (derived) → Architecture → Scaffold
Additional artifacts required:
.nezam/core/plans/api/API_SPEC.yaml or API_SPEC.graphql — the API contract.nezam/core/plans/api/API_DECISIONS.md — versioning, auth, rate limiting decisions## API Alignment section confirming PRD matches API specswarm-leader enforcement:
When build_mode: api-first:
/plan seo until .nezam/core/plans/api/API_SPEC.yaml exists## API Alignment section before lockingPresent this menu when build_mode is empty:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Step 2.5 — Choose your development approach
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
A) SDD — Full Specification-Driven Development
Best for: production apps, client projects, teams
6 phases · strict gates · full audit trail
B) Lean MVP — Rapid prototyping mode
Best for: MVPs, hackathons, early validation
4 phases · relaxed gates · ship faster
C) TDD — Test-Driven Development overlay
Best for: payment flows, APIs, high-reliability systems
SDD + test-first gates · 90% coverage target
D) API-First — API contract before everything else
Best for: backend services, headless, B2B integrations
Reversed planning: API spec → IA → Design → PRD
Enter A / B / C / D:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
After selection:
build_mode: "sdd"|"lean"|"tdd"|"api-first" to onboarding.yamlbuild_mode_set_at: <timestamp> to onboarding.yaml| Mode | Gate threshold | Coverage target | Security audit | Ship speed |
|---|---|---|---|---|
| sdd | 70% | ≥80% critical | Required | Standard |
| lean | 50% | ≥50% critical | Deferred | Fast |
| tdd | 70% + test-first | ≥90% critical | Required | Standard |
| api-first | 70% | ≥80% critical | Required | Standard |
lean for projects with payment, auth, or PII handlingapi-first when the UI is the primary design surfacetdd mode for "just this feature"