一键导入
build-method
How we build software — decompose, spec, parallel build. ALL agents MUST follow.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
How we build software — decompose, spec, parallel build. ALL agents MUST follow.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Load CI/CD pipeline configuration and deployment information when working with automation or deployments
Load database relationships, shared resources, and schema information when working with data models or database configuration
Load development environment information including folder structure, OrbStack setup, and system configuration
Load port mappings for all projects when working with networking, docker-compose, or service configuration
Load GitHub/GitLab repository information when working with git, CI/CD, or repository management
Load server information, infrastructure details, and access patterns when working with deployment or server configuration
| name | build-method |
| description | How we build software — decompose, spec, parallel build. ALL agents MUST follow. |
| disable-model-invocation | true |
How we build. Every project. Every agent. No exceptions.
[KICK] /new-project-playbook → GitLab repo, CI/CD, Plane project, test-rig, branches
[COLLECT] Gather ALL requirements from ALL stakeholders → dedicated requirements repo → STOP
[SPEC] Requirements → Design → Detailed Design → Components → Sub-Specs → Tests → STOP
[CHECK] Review all specs. Recheck. No gaps. No implicit deps. Each spec = 1 Plane work item.
[BUILD] Spawn agent armada → agents check out Plane items → massive parallel → verify
New project? Load /new-project-playbook first for: repo, CI/CD, Plane, branching, agent tracking.
Before ANY spec work begins, collect ALL requirements from ALL stakeholders.
run001) for all requirements/spec-writing skill defines the output format — every spec follows the same standardsCapture: what, why, constraints, acceptance criteria. No implementation.
Every sub-component = self-contained work order:
name: ...
purpose: single sentence
inputs: [{name, type, source}]
outputs: [{name, type, consumed_by}]
contract:
endpoint: POST /api/v1/...
request: {exact schema}
response: {exact schema}
errors: [list]
logic:
- step 1
- step 2
test_cases:
- {input} → {expected output}
- {edge case} → {expected behavior}
RULES:
test-rig generate → write tests → REDtest-rig run integration --parallel