원클릭으로
spec-driven-design
Agency delivery methodology: spec-first → architect → build → verify. Use on every client feature, API, or UI component.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Agency delivery methodology: spec-first → architect → build → verify. Use on every client feature, API, or UI component.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | spec-driven-design |
| description | Agency delivery methodology: spec-first → architect → build → verify. Use on every client feature, API, or UI component. |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"all-agents","workflow":"delivery"} |
Principle: Every client deliverable starts with a spec. No code without an approved specification.
core-factory or backend-* agentsdeep-research / web-searchSPEC.md in <project-root>/docs/specs/<feature-name>.mdui-ux-pro-max for design tokensdatabase-design for migrationsui-ux-pro-max skill for design tokens and component specstask toolADR (Architecture Decision Record)project-memory with new patterns learned# Feature: [Name]
## Problem
[What business problem does this solve?]
## Requirements
- [ ] [Functional requirement 1]
- [ ] [Functional requirement 2]
- [ ] [Non-functional: performance, security, accessibility]
## Architecture
[High-level diagram or component breakdown]
## API Contracts (if applicable)
```typescript
// Request
interface CreateFooRequest { ... }
// Response
interface FooResponse { ... }
[Tables, columns, migrations needed]
[Component tree, states (loading/empty/error/edge), responsive breakpoints]
## Quality Gates
Before marking a spec as "ready for implementation":
| Gate | Check |
|------|-------|
| Requirements | Every requirement is testable (not vague) |
| Architecture | Stack-appropriate, follows existing patterns |
| API | Request/response fully typed |
| UI | States defined: loading, empty, error, edge cases |
| DB | Migrations are reversible |
| Security | No auth bypass, input sanitized |
| Effort | Implementation effort estimated (hours/days) |
## Agent Handoff
| Phase | Lead Agent | Supporting Skills |
|-------|-----------|-------------------|
| Discovery | lead-strategist | deep-research, web-search |
| Specification | software-architect | database-design, ui-ux-pro-max |
| Review | lead-strategist | — |
| Implementation | core-factory | coding-agent, laravel-feature-scaffold, pest-testing |
| Verification | qa-guardian | testing-strategy, agent-browser, security-review |
Continuously improves the project by checking docs (web, Context7, opencode), using LSPs for code context, monitoring skills/plugins/scripts, and adapting best practices.
Continuity management — preserves context, maintains thermal maps, and serializes states across sessions
Read diffs carefully, identify risks, and produce review feedback that is specific and actionable.
Write accurate docs, keep references current, and capture verified behavior only.
Branching, rebasing, commit hygiene, and review-friendly history for agency delivery.
Use the language server for precise navigation, symbol lookup, refactoring, and diagnostics.