ワンクリックで
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 職業分類に基づく
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.
| 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 |