Adoption Playbook
The safest way to adopt these frameworks is to choose one primary workflow and use others only as supporting layers.
For detailed combination patterns, read Framework Combinations. For concrete end-to-end scenarios, read Real-World Use Cases.
Principle 1: one source of truth
Bad pattern:
specs/ # says A
aidlc-docs/ # says B
.planning/ # says C
docs/superpowers/ # says D
code # implements EGood pattern:
Primary source of truth: specs/
Supporting:
- Superpowers for TDD and review
- GSD only for phase execution notes
- AI-DLC only for high-risk workGood combinations
| Combination | When to use | Division of responsibility |
|---|---|---|
| Spec Kit + Superpowers | Feature must be clear and code quality matters | Spec Kit owns spec/plan/tasks; Superpowers owns TDD/review |
| AWS AI-DLC + Superpowers | Enterprise delivery with strict implementation discipline | AI-DLC owns gates/audit; Superpowers owns coding loop |
| GSD + Superpowers | Startup shipping fast without losing quality | GSD owns phases/subagents; Superpowers owns tests/review |
| AWS AI-DLC + Spec Kit ideas | Enterprise wants better spec quality | AI-DLC primary; borrow constitution/checklist thinking |
| Spec Kit + GSD | Large feature needs both clarity and execution | Spec Kit owns source spec; GSD executes phases |
Risk-based rollout
| Phase | Action |
|---|---|
| Week 1 | Pick one pilot feature and one primary framework |
| Week 2 | Run the workflow end-to-end and track friction |
| Week 3 | Add quality gate: tests, review, or approval |
| Week 4 | Decide what artifacts are authoritative |
| Month 2 | Scale to more teams only after templates stabilize |
Playbook A: product feature
Recommended: Spec Kit + Superpowers.
flowchart LR
A[Feature idea] --> B[Spec Kit specify]
B --> C[Clarify]
C --> D[Plan and tasks]
D --> E[Superpowers TDD]
E --> F[Review]
F --> G[PR]Playbook B: enterprise modernization
Recommended: AWS AI-DLC primary, Superpowers as implementation discipline.
flowchart LR
A[Modernization intent] --> B[AI-DLC reverse engineering]
B --> C[Requirements and NFRs]
C --> D[Architecture approval]
D --> E[Units of work]
E --> F[Implementation with TDD]
F --> G[Audit and release readiness]Playbook C: solo MVP
Recommended: GSD primary, Spec Kit only for complex features.
flowchart LR
A[MVP idea] --> B[GSD new project]
B --> C[Roadmap and phases]
C --> D[Phase execution]
D --> E[Verify]
E --> F[Ship]
C --> S[Spec Kit for complex features]Definition of done
Whatever workflow you choose, define done with evidence:
- Requirement or intent is clear.
- Important questions are answered.
- Implementation is scoped.
- Relevant tests pass.
- Review issues are resolved.
- Source-of-truth artifact is updated.
- Release or next-step state is recorded.
30/60/90 day rollout
Use this when introducing these workflows to a real team.
First 30 days: prove the loop
Goal: make one workflow work end-to-end.
- Choose one primary framework.
- Pick one medium-sized feature.
- Define the source-of-truth location.
- Require test evidence.
- Run one retrospective after shipping.
Recommended pilots:
| Team context | Pilot |
|---|---|
| Product team with vague requirements | Spec Kit |
| Brownfield product team needing lightweight change specs | OpenSpec |
| Enterprise architecture team | AWS AI-DLC |
| Solo builder or startup team | GSD |
| Existing repo with bugs/refactors | Superpowers |
Days 31-60: standardize useful artifacts
Goal: keep what helped, remove ceremony.
- Create templates from the best pilot artifacts.
- Define when to skip the workflow.
- Add review checklists.
- Add CI verification to the process.
- Decide how artifacts map to issue tracker and PRs.
Days 61-90: scale carefully
Goal: expand without creating process debt.
- Train another engineer or team.
- Create examples of good specs, plans, reviews, and audit entries.
- Add automation only where review is reliable.
- Track cycle time, rework rate, escaped defects, and review effort.
- Revisit the source-of-truth decision.
Role-based responsibilities
| Role | Responsibilities |
|---|---|
| Product owner | Own user outcome, acceptance criteria, non-goals |
| Tech lead | Own implementation plan, task slicing, code review |
| Solution architect | Own architecture trade-offs, NFRs, integration boundaries |
| Security owner | Own threat model, abuse cases, privacy, secrets, permissions |
| QA/quality engineer | Own test strategy, regression risk, evidence |
| Operations owner | Own deployment, monitoring, runbooks, incident feedback |
Production readiness checklist
Use this checklist before merging AI-generated work into production systems:
| Area | Required evidence |
|---|---|
| Requirement | Source-of-truth artifact exists and matches implementation |
| Tests | Relevant automated tests pass |
| Review | Human review is complete |
| Security | Auth, authorization, secrets, privacy, and abuse cases checked |
| Data | Migration, rollback, retention, and compatibility reviewed |
| Operations | Logs, metrics, alerts, and rollback path are clear |
| Documentation | User-facing or operator-facing docs updated when needed |
Metrics to track
| Metric | Why it matters |
|---|---|
| Rework rate | Shows whether specs/plans are clear enough |
| Review findings per PR | Shows quality of agent output |
| Escaped defects | Shows verification quality |
| Cycle time | Shows whether the workflow is too heavy |
| Artifact drift incidents | Shows whether source of truth is maintained |
| Human approval latency | Shows whether gates are practical |