docs: update command names and agent references in documentation

- Change `*create` to `*draft` in workflow guide
- Update PM agent commands to use consistent naming
- Replace `analyst` references with `architect`
- Fix command examples to match new naming conventions
This commit is contained in:
manjaroblack 2025-07-25 02:05:26 -05:00
parent 229e64c5b5
commit b8b6f4e422
No known key found for this signature in database
GPG Key ID: 02FD4111DA5560B4
3 changed files with 20 additions and 18 deletions

View File

@ -52,6 +52,8 @@ commands:
- help: Show numbered list of the following commands to allow selection - help: Show numbered list of the following commands to allow selection
- create-prd: run task create-doc.md with template prd-tmpl.yaml - create-prd: run task create-doc.md with template prd-tmpl.yaml
- create-brownfield-prd: run task create-doc.md with template brownfield-prd-tmpl.yaml - create-brownfield-prd: run task create-doc.md with template brownfield-prd-tmpl.yaml
- create-brownfield-epic: run task brownfield-create-epic.md
- create-brownfield-story: run task brownfield-create-story.md
- create-epic: Create epic for brownfield projects (task brownfield-create-epic) - create-epic: Create epic for brownfield projects (task brownfield-create-epic)
- create-story: Create user story from requirements (task brownfield-create-story) - create-story: Create user story from requirements (task brownfield-create-story)
- doc-out: Output full document to current destination file - doc-out: Output full document to current destination file

View File

@ -10,7 +10,7 @@ This is a simple step-by-step guide to help you efficiently manage your developm
1. **Start new chat/conversation** 1. **Start new chat/conversation**
2. **Load SM agent** 2. **Load SM agent**
3. **Execute**: `*create` (runs create-next-story task) 3. **Execute**: `*draft` (runs create-next-story task)
4. **Review generated story** in `docs/stories/` 4. **Review generated story** in `docs/stories/`
5. **Update status**: Change from "Draft" to "Approved" 5. **Update status**: Change from "Draft" to "Approved"

View File

@ -55,7 +55,7 @@ If you have just completed an MVP with BMad, and you want to continue with post-
```bash ```bash
@pm @pm
*create-doc brownfield-prd *create-brownfield-prd
``` ```
The PM will: The PM will:
@ -72,7 +72,7 @@ The PM will:
**Still in Gemini Web, now with PRD context:** **Still in Gemini Web, now with PRD context:**
```bash ```bash
@analyst @architect
*document-project *document-project
``` ```
@ -108,7 +108,7 @@ For example, if you say "Add payment processing to user service":
2. **Upload your project**: 2. **Upload your project**:
- **Option A**: Paste your GitHub repository URL directly - **Option A**: Paste your GitHub repository URL directly
- **Option B**: Upload your flattened-codebase.xml file - **Option B**: Upload your flattened-codebase.xml file
3. **Load the analyst agent**: Upload `dist/agents/analyst.txt` 3. **Load the analyst agent**: Upload `dist/agents/architect.txt`
4. **Run documentation**: Type `*document-project` 4. **Run documentation**: Type `*document-project`
The analyst will generate comprehensive documentation of everything. The analyst will generate comprehensive documentation of everything.
@ -121,7 +121,7 @@ The analyst will generate comprehensive documentation of everything.
```bash ```bash
@pm @pm
*create-doc brownfield-prd *create-brownfield-prd
``` ```
The PM agent will: The PM agent will:
@ -148,7 +148,7 @@ The PM agent will:
```bash ```bash
@architect @architect
*create-doc brownfield-architecture *create-brownfield-architecture
``` ```
The architect will: The architect will:
@ -165,7 +165,7 @@ The architect will:
```bash ```bash
@pm @pm
*brownfield-create-epic *create-brownfield-epic
``` ```
Use when: Use when:
@ -179,7 +179,7 @@ Use when:
```bash ```bash
@pm @pm
*brownfield-create-story *create-brownfield-story
``` ```
Use when: Use when:
@ -193,7 +193,7 @@ Use when:
```bash ```bash
@po @po
*execute-checklist po-master-checklist *execute-checklist-po
``` ```
The PO ensures: The PO ensures:
@ -290,7 +290,7 @@ Document:
### Scenario 3: Bug Fix in Complex System ### Scenario 3: Bug Fix in Complex System
1. Document relevant subsystems 1. Document relevant subsystems
2. Use `brownfield-create-story` for focused fix 2. Use `create-brownfield-story` for focused fix
3. Include regression test requirements 3. Include regression test requirements
4. QA validates no side effects 4. QA validates no side effects
@ -313,7 +313,7 @@ Document:
### "Too much boilerplate for small changes" ### "Too much boilerplate for small changes"
**Solution**: Use `brownfield-create-story` instead of full workflow **Solution**: Use `create-brownfield-story` instead of full workflow
### "Integration points unclear" ### "Integration points unclear"
@ -325,19 +325,19 @@ Document:
```bash ```bash
# Document existing project # Document existing project
@analyst → *document-project @architect → *document-project
# Create enhancement PRD # Create enhancement PRD
@pm → *create-doc brownfield-prd @pm → *create-brownfield-prd
# Create architecture with integration focus # Create architecture with integration focus
@architect → *create-doc brownfield-architecture @architect → *create-brownfield-architecture
# Quick epic creation # Quick epic creation
@pm → *brownfield-create-epic @pm → *create-brownfield-epic
# Single story creation # Single story creation
@pm → *brownfield-create-story @pm → *create-brownfield-story
``` ```
### Decision Tree ### Decision Tree