Skip to content

Commit c18904d

Browse files
authored
refactor: rename create-tech-spec to quick-spec for QuickFlow branding (bmad-code-org#1290)
1 parent 3e3c92e commit c18904d

File tree

21 files changed

+30
-30
lines changed

21 files changed

+30
-30
lines changed

docs/explanation/agents/barry-quick-flow.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ Barry is the elite solo developer who lives and breathes the BMad Quick Flow wor
3737

3838
Barry owns the entire BMad Quick Flow path, providing a streamlined 3-step development process that eliminates handoffs and maximizes velocity.
3939

40-
### 1. **create-tech-spec**
40+
### 1. **quick-spec**
4141

42-
- **Workflow:** `_bmad/bmm/workflows/bmad-quick-flow/create-tech-spec/workflow.yaml`
42+
- **Workflow:** `_bmad/bmm/workflows/bmad-quick-flow/quick-spec/workflow.md`
4343
- **Description:** Architect a technical spec with implementation-ready stories
4444
- **Use when:** You need to transform requirements into a buildable spec
4545

@@ -89,7 +89,7 @@ Barry orchestrates a simple, efficient 3-step process:
8989

9090
```mermaid
9191
flowchart LR
92-
A[Requirements] --> B[create-tech-spec]
92+
A[Requirements] --> B[quick-spec]
9393
B --> C[Tech Spec]
9494
C --> D[quick-dev]
9595
D --> E[Implementation]
@@ -107,7 +107,7 @@ flowchart LR
107107
style H fill:#e0f2f1
108108
```
109109

110-
### Step 1: Technical Specification (`create-tech-spec`)
110+
### Step 1: Technical Specification (`quick-spec`)
111111

112112
**Goal:** Transform user requirements into implementation-ready technical specifications
113113

@@ -237,7 +237,7 @@ In party mode, Barry often acts as:
237237
/bmad:bmm:agents:quick-flow-solo-dev
238238

239239
# Create a tech spec
240-
> create-tech-spec
240+
> quick-spec
241241

242242
# Quick implementation
243243
> quick-dev tech-spec-auth.md

docs/explanation/core-concepts/agent-roles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ Fast solo development without handoffs.
173173
- Code review
174174

175175
**Key Workflows:**
176-
- `*create-tech-spec`
176+
- `*quick-spec`
177177
- `*quick-dev`
178178
- `*code-review`
179179

docs/explanation/features/quick-flow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,6 @@ Start with Quick Flow, but switch to BMad Method when:
164164

165165
## Related
166166

167-
- [Create Tech Spec](/docs/how-to/workflows/create-tech-spec.md) - How to use Quick Flow
167+
- [Quick Spec](/docs/how-to/workflows/quick-spec.md) - How to use Quick Flow
168168
- [Quick Start Guide](/docs/tutorials/getting-started/getting-started-bmadv6.md) - Getting started
169169
- [Four Phases](/docs/explanation/architecture/four-phases.md) - Understanding the full methodology

docs/explanation/game-dev/agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ Direct, confident, and gameplay-focused. Uses dev slang, thinks in game feel and
303303
| ------------------ | ------------------------------------------------------ |
304304
| `quick-prototype` | Rapid prototype to test if a mechanic is fun |
305305
| `quick-dev` | Implement features end-to-end with game considerations |
306-
| `create-tech-spec` | Create implementation-ready technical spec |
306+
| `quick-spec` | Create implementation-ready technical spec |
307307
| `code-review` | Review code quality |
308308
| `test-framework` | Set up automated testing |
309309
| `party-mode` | Bring in specialists when needed |

docs/how-to/get-answers-about-bmad.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Point an LLM at BMad's source files and ask your question. That's the technique
1010
:::note[Example]
1111
**Q:** "Tell me the fastest way to build something with BMad"
1212

13-
**A:** Use Quick Flow: Run `create-tech-spec` to write a technical specification, then `quick-dev` to implement it—skipping the full planning phases. This gets small features shipped in a single focused session instead of going through the full 4-phase BMM workflow.
13+
**A:** Use Quick Flow: Run `quick-spec` to write a technical specification, then `quick-dev` to implement it—skipping the full planning phases. This gets small features shipped in a single focused session instead of going through the full 4-phase BMM workflow.
1414
:::
1515

1616
## Why This Works

docs/how-to/workflows/bmgd-quick-flow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The Game Solo Dev agent includes:
1717

1818
- `quick-prototype` - Rapid mechanic testing
1919
- `quick-dev` - Flexible feature implementation
20-
- `create-tech-spec` - Create implementation-ready specs
20+
- `quick-spec` - Create implementation-ready specs
2121
- `code-review` - Quality checks
2222
- `test-framework` - Automated testing setup
2323

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "How to Create a Tech Spec"
3-
description: How to create a technical specification using Quick Spec Flow
2+
title: "How to Use Quick Spec"
3+
description: How to create a technical specification using Quick Spec workflow
44
---
55

66

@@ -35,7 +35,7 @@ Start a fresh chat and load the PM agent (or Quick Flow Solo Dev agent).
3535
### 2. Run the Tech Spec Workflow
3636

3737
```
38-
*create-tech-spec
38+
*quick-spec
3939
```
4040

4141
Or simply describe what you want to build:

docs/reference/agents/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Story implementation and code review.
7575
Fast solo development without handoffs.
7676

7777
**Commands:**
78-
- `*create-tech-spec` - Architect technical spec with implementation-ready stories
78+
- `*quick-spec` - Architect technical spec with implementation-ready stories
7979
- `*quick-dev` - Implement tech spec end-to-end solo
8080
- `*code-review` - Review and improve code
8181

src/modules/bmgd/agents/game-solo-dev.agent.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ agent:
3636
description: "[QD] Implement features end-to-end solo with game-specific considerations"
3737

3838
- trigger: TS or fuzzy match on tech-spec
39-
workflow: "{project-root}/_bmad/bmgd/workflows/bmgd-quick-flow/create-tech-spec/workflow.yaml"
39+
workflow: "{project-root}/_bmad/bmgd/workflows/bmgd-quick-flow/quick-spec/workflow.yaml"
4040
description: "[TS] Architect a technical spec with implementation-ready stories"
4141

4242
- trigger: CR or fuzzy match on code-review

src/modules/bmgd/workflows/bmgd-quick-flow/create-tech-spec/instructions.md renamed to src/modules/bmgd/workflows/bmgd-quick-flow/quick-spec/instructions.md

File renamed without changes.

0 commit comments

Comments
 (0)