Skip to content

Commit 1e7ce4e

Browse files
Brian MadisonBrian Madison
authored andcommitted
docs: fix all relative doc paths to use absolute /docs/ paths
Fixed relative paths like (docs/...) to absolute paths (/docs/...) in: - critical-actions.md - develop-agent-persona.md - design-agent-menus.md - discover-your-module-idea.md - agent-or-module-decision.md - what-are-modules.md - create-your-first-module.md - create-your-first-workflow.md All doc links now use absolute /docs/ prefix for consistency.
1 parent e555487 commit 1e7ce4e

8 files changed

Lines changed: 18 additions & 18 deletions

docs/explanation/what-are-modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ You can create your own modules for your domain. This includes team-specific wor
3535

3636
## Installing Modules
3737

38-
Choose which modules to install during setup, or add/remove modules later by re-running the installer. See [Install Custom Modules](docs/how-to/install-custom-modules.md) for details.
38+
Choose which modules to install during setup, or add/remove modules later by re-running the installer. See [Install Custom Modules](/docs/how-to/install-custom-modules.md) for details.

docs/how-to/agent-or-module-decision.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -392,11 +392,11 @@ Once you've decided:
392392
| If You Chose... | Next Step |
393393
|-----------------|-----------|
394394
| **Skill** | Add as an action to an existing agent or workflow |
395-
| **Agent** | [Create a Custom Agent](docs/tutorials/create-custom-agent.md) |
396-
| **Agent with sidecar** | [Create a Custom Agent](docs/tutorials/create-custom-agent.md) (enable sidecar) |
397-
| **Workflow** | [Create Your First Workflow](docs/tutorials/create-your-first-workflow.md) |
398-
| **Module** | [Create Your First Module](docs/tutorials/create-your-first-module.md) |
399-
| **Still Unsure** | [Discover Your Module Idea](docs/how-to/discover-your-module-idea.md) |
395+
| **Agent** | [Create a Custom Agent](/docs/tutorials/create-custom-agent.md) |
396+
| **Agent with sidecar** | [Create a Custom Agent](/docs/tutorials/create-custom-agent.md) (enable sidecar) |
397+
| **Workflow** | [Create Your First Workflow](/docs/tutorials/create-your-first-workflow.md) |
398+
| **Module** | [Create Your First Module](/docs/tutorials/create-your-first-module.md) |
399+
| **Still Unsure** | [Discover Your Module Idea](/docs/how-to/discover-your-module-idea.md) |
400400

401401
## Tips
402402

docs/how-to/design-agent-menus.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ title: "Design Agent Menus"
55
Learn to design effective agent menus that provide intuitive access to your agent's capabilities. Well-designed menus make agents discoverable, efficient, and delightful to use.
66

77
:::note[Prerequisites]
8-
- Familiarity with [Agent Schema](docs/reference/agent-schema.md)
9-
- Understanding of [hasSidecar](docs/explanation/what-are-bmad-agents.md) configuration
8+
- Familiarity with [Agent Schema](/docs/reference/agent-schema.md)
9+
- Understanding of [hasSidecar](/docs/explanation/what-are-bmad-agents.md) configuration
1010
:::
1111

1212
## Menu Item Schema

docs/how-to/develop-agent-persona.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ title: "Develop Agent Persona"
55
Learn to craft memorable, effective agent personas using the four-field system. A well-developed persona makes your agent vivid, useful, and something users seek out by name.
66

77
:::note[Prerequisites]
8-
- Familiarity with [Agent Schema](docs/reference/agent-schema.md)
9-
- Understanding of [hasSidecar](docs/explanation/what-are-bmad-agents.md) configuration
8+
- Familiarity with [Agent Schema](/docs/reference/agent-schema.md)
9+
- Understanding of [hasSidecar](/docs/explanation/what-are-bmad-agents.md) configuration
1010
:::
1111

1212
## The Four-Field System

docs/how-to/discover-your-module-idea.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ After completing this guide, you'll have:
159159
- **A starting point** (agent, workflow, or full module)
160160

161161
You'll be ready to move to:
162-
- **[Create a Custom Agent](docs/tutorials/create-custom-agent.md)** — If you chose agent
163-
- **[Create Your First Workflow](docs/tutorials/create-your-first-workflow.md)** — If you chose workflow
164-
- **[Create Your First Module](docs/tutorials/create-your-first-module.md)** — If you chose module
162+
- **[Create a Custom Agent](/docs/tutorials/create-custom-agent.md)** — If you chose agent
163+
- **[Create Your First Workflow](/docs/tutorials/create-your-first-workflow.md)** — If you chose workflow
164+
- **[Create Your First Module](/docs/tutorials/create-your-first-module.md)** — If you chose module
165165

166166
## Example: From Frustration to Module
167167

docs/reference/critical-actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ title: "Critical Actions Reference"
55
Critical actions are numbered steps that execute FIRST on agent activation. They enable autonomous behaviors and are essential for agents with sidecars.
66

77
:::note[Prerequisites]
8-
- Understanding of [hasSidecar](docs/explanation/what-are-bmad-agents.md) configuration
9-
- Familiarity with [Agent Schema](docs/reference/agent-schema.md)
8+
- Understanding of [hasSidecar](/docs/explanation/what-are-bmad-agents.md) configuration
9+
- Familiarity with [Agent Schema](/docs/reference/agent-schema.md)
1010
:::
1111

1212
## Quick Reference

docs/tutorials/create-your-first-module.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ Morgan created spec files during the build step. Now implement your agents and w
200200
3. **Add tools** or templates as needed
201201

202202
For details on creating agents and workflows, see:
203-
- **[Create a Custom Agent](docs/tutorials/create-custom-agent.md)**
204-
- **[Create Your First Workflow](docs/tutorials/create-your-first-workflow.md)**
203+
- **[Create a Custom Agent](/docs/tutorials/create-custom-agent.md)**
204+
- **[Create Your First Workflow](/docs/tutorials/create-your-first-workflow.md)**
205205

206206
## Step 5: Validate Your Module
207207

docs/tutorials/create-your-first-workflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This tutorial uses the **BMad Builder (BMB)** module. Make sure you have BMad in
1818

1919
:::note[Prerequisites]
2020
- BMad installed with the BMB module
21-
- Basic understanding of what workflows do (see [What Are Workflows](../explanation/what-are-workflows.md))
21+
- Basic understanding of what workflows do (see [What Are Workflows](/docs/explanation/what-are-workflows.md))
2222
- A multi-step process you want to automate or guide
2323
- About 30-45 minutes for your first workflow
2424
:::

0 commit comments

Comments
 (0)