Skip to content

Commit 660af7d

Browse files
Brian MadisonBrian Madison
authored andcommitted
docs: fix all links to use root paths (/tutorials/ not /docs/tutorials/)
The Astro site serves content from docs/ as the root URL, so all internal links should use /tutorials/, /how-to/, /explanation/, /reference/ instead of /docs/tutorials/, etc. This fixes 404 errors when clicking navigation links on the site.
1 parent 1e7ce4e commit 660af7d

34 files changed

Lines changed: 143 additions & 143 deletions

docs/404.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ template: splash
66

77
The page you're looking for doesn't exist or has been moved.
88

9-
[Return to Home](/docs/index.md)
9+
[Return to Home](/index.md)

docs/explanation/bond-wendy-morgan.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -165,14 +165,14 @@ Start with the builder that matches your goal:
165165

166166
| Builder | Tutorial |
167167
|---------|----------|
168-
| **Bond** | [Create a Custom Agent](/docs/tutorials/create-custom-agent.md) |
169-
| **Wendy** | [Create Your First Workflow](/docs/tutorials/create-your-first-workflow.md) |
170-
| **Morgan** | [Create Your First Module](/docs/tutorials/create-your-first-module.md) |
168+
| **Bond** | [Create a Custom Agent](/tutorials/create-custom-agent.md) |
169+
| **Wendy** | [Create Your First Workflow](/tutorials/create-your-first-workflow.md) |
170+
| **Morgan** | [Create Your First Module](/tutorials/create-your-first-module.md) |
171171

172172
## Resources
173173

174174
| Resource | Description |
175175
|----------|-------------|
176-
| [Builder Commands](/docs/reference/builder-commands.md) | All builder commands |
177-
| [What Are Agents](/docs/explanation/what-are-bmad-agents.md) | Understanding agents |
178-
| [What Are Workflows](/docs/explanation/what-are-workflows.md) | Understanding workflows |
176+
| [Builder Commands](/reference/builder-commands.md) | All builder commands |
177+
| [What Are Agents](/explanation/what-are-bmad-agents.md) | Understanding agents |
178+
| [What Are Workflows](/explanation/what-are-workflows.md) | Understanding workflows |

docs/explanation/crafting-agent-principles.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,6 @@ persona:
192192

193193
| Resource | Description |
194194
|----------|-------------|
195-
| [Develop Agent Persona](/docs/how-to/develop-agent-persona.md) | Full four-field persona system |
196-
| [Agent Schema](/docs/reference/agent-schema.md) | Complete field reference |
195+
| [Develop Agent Persona](/how-to/develop-agent-persona.md) | Full four-field persona system |
196+
| [Agent Schema](/reference/agent-schema.md) | Complete field reference |
197197
| [Brainstorming Agent Context](https://github.com/bmad-code-org/bmad-builder/tree/main/src/workflows/agent/data/brainstorm-context.md) | Framework for creating memorable agents |

docs/explanation/custom-content-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ BMad supports three types of custom modules, plus standalone agents and workflow
2929

3030
Custom modules range from simple collections of related agents, workflows, and tools to complex systems like the BMad Method or even larger applications.
3131

32-
Custom modules are [installable](/docs/how-to/install-custom-modules.md) using the standard BMad method and support advanced features:
32+
Custom modules are [installable](/how-to/install-custom-modules.md) using the standard BMad method and support advanced features:
3333

3434
- Optional user information collection during installation and updates
3535
- Versioning and upgrade paths

docs/explanation/customize-workflows.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,6 @@ For free-form workflows, include a polish step that:
202202
203203
| Resource | Description |
204204
|----------|-------------|
205-
| [Workflow Patterns](/docs/explanation/workflow-patterns.md) | Step types and structure patterns |
206-
| [Workflow Schema](/docs/reference/workflow-schema.md) | Technical reference |
207-
| [Edit Agents and Workflows](/docs/how-to/edit-agents-and-workflows.md) | Step-by-step editing guide |
205+
| [Workflow Patterns](/explanation/workflow-patterns.md) | Step types and structure patterns |
206+
| [Workflow Schema](/reference/workflow-schema.md) | Technical reference |
207+
| [Edit Agents and Workflows](/how-to/edit-agents-and-workflows.md) | Step-by-step editing guide |

docs/explanation/index.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,54 +9,54 @@ Create custom agents, workflows, and modules for BMad. This ranges from simple p
99

1010
| Resource | Description |
1111
|----------|-------------|
12-
| **[Create a Custom Agent](/docs/tutorials/create-custom-agent.md)** | Build your first AI agent |
13-
| **[Create Your First Workflow](/docs/tutorials/create-your-first-workflow.md)** | Design structured workflows |
14-
| **[Create Your First Module](/docs/tutorials/create-your-first-module.md)** | Package and publish modules |
12+
| **[Create a Custom Agent](/tutorials/create-custom-agent.md)** | Build your first AI agent |
13+
| **[Create Your First Workflow](/tutorials/create-your-first-workflow.md)** | Design structured workflows |
14+
| **[Create Your First Module](/tutorials/create-your-first-module.md)** | Package and publish modules |
1515

1616
## The Three Builders
1717

1818
| Builder | Creates | Description |
1919
|---------|---------|-------------|
20-
| **[Bond](/docs/explanation/bond-wendy-morgan.md)** | Agents | Agent architecture and persona development |
21-
| **[Wendy](/docs/explanation/bond-wendy-morgan.md)** | Workflows | Process design and step architecture |
22-
| **[Morgan](/docs/explanation/bond-wendy-morgan.md)** | Modules | Full-stack systems design |
20+
| **[Bond](/explanation/bond-wendy-morgan.md)** | Agents | Agent architecture and persona development |
21+
| **[Wendy](/explanation/bond-wendy-morgan.md)** | Workflows | Process design and step architecture |
22+
| **[Morgan](/explanation/bond-wendy-morgan.md)** | Modules | Full-stack systems design |
2323

2424
## Core Concepts
2525

2626
| Topic | Description |
2727
|-------|-------------|
28-
| **[What Are Agents](/docs/explanation/what-are-bmad-agents.md)** | AI personas with specialized capabilities |
29-
| **[What Are Workflows](/docs/explanation/what-are-workflows.md)** | Structured step-by-step processes |
30-
| **[What Are Modules](/docs/explanation/what-are-modules.md)** | Bundles of agents and workflows |
31-
| **[Custom Content Types](/docs/explanation/custom-content-types.md)** | Content categories in BMad |
28+
| **[What Are Agents](/explanation/what-are-bmad-agents.md)** | AI personas with specialized capabilities |
29+
| **[What Are Workflows](/explanation/what-are-workflows.md)** | Structured step-by-step processes |
30+
| **[What Are Modules](/explanation/what-are-modules.md)** | Bundles of agents and workflows |
31+
| **[Custom Content Types](/explanation/custom-content-types.md)** | Content categories in BMad |
3232

3333
## Workflow Design
3434

3535
| Topic | Description |
3636
|-------|-------------|
37-
| **[Workflow Patterns](/docs/explanation/workflow-patterns.md)** | Structure types, intent spectrum, and execution patterns |
38-
| **[Workflow Customization](/docs/explanation/customize-workflows.md)** | Tri-modal structure, cross-mode integration, and modification |
37+
| **[Workflow Patterns](/explanation/workflow-patterns.md)** | Structure types, intent spectrum, and execution patterns |
38+
| **[Workflow Customization](/explanation/customize-workflows.md)** | Tri-modal structure, cross-mode integration, and modification |
3939

4040
## Agent Deep Dives
4141

4242
| Topic | Description |
4343
|-------|-------------|
44-
| **[Crafting Agent Principles](/docs/explanation/crafting-agent-principles.md)** | Write effective principles that activate expert knowledge |
44+
| **[Crafting Agent Principles](/explanation/crafting-agent-principles.md)** | Write effective principles that activate expert knowledge |
4545

4646
## Architecture & Process
4747

4848
| Topic | Description |
4949
|-------|-------------|
50-
| **[Understanding Module Building](/docs/explanation/module-building-architecture.md)** | How module creation works from planning to scaffolding to implementation |
50+
| **[Understanding Module Building](/explanation/module-building-architecture.md)** | How module creation works from planning to scaffolding to implementation |
5151

5252
## Ecosystem Vision
5353

5454
| Topic | Description |
5555
|-------|-------------|
56-
| **[The Module Ecosystem Vision](/docs/explanation/module-ecosystem-vision.md)** | How BMad modules create a shared ecosystem of capabilities across every domain |
56+
| **[The Module Ecosystem Vision](/explanation/module-ecosystem-vision.md)** | How BMad modules create a shared ecosystem of capabilities across every domain |
5757

5858
## Advanced Topics
5959

6060
| Topic | Description |
6161
|-------|-------------|
62-
| **[Facilitation vs Generation](/docs/explanation/facilitation-over-generation.md)** | Workflow design philosophy | |
62+
| **[Facilitation vs Generation](/explanation/facilitation-over-generation.md)** | Workflow design philosophy | |

docs/explanation/module-building-architecture.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ wedding-planner/
292292

293293
| Resource | Description |
294294
|----------|-------------|
295-
| [Create Your First Module](/docs/tutorials/create-your-first-module.md) | Hands-on tutorial |
296-
| [Discover Your Module Idea](/docs/how-to/discover-your-module-idea.md) | Finding the right idea |
297-
| [What Are Modules](/docs/explanation/what-are-modules.md) | Module concepts |
298-
| [Agent or Module Decision Guide](/docs/how-to/agent-or-module-decision.md) | What to build |
295+
| [Create Your First Module](/tutorials/create-your-first-module.md) | Hands-on tutorial |
296+
| [Discover Your Module Idea](/how-to/discover-your-module-idea.md) | Finding the right idea |
297+
| [What Are Modules](/explanation/what-are-modules.md) | Module concepts |
298+
| [Agent or Module Decision Guide](/how-to/agent-or-module-decision.md) | What to build |

docs/explanation/what-are-bmad-agents.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,4 +153,4 @@ Then use the **Module Builder** instead of a single agent.
153153
154154
## Creating Custom Agents
155155
156-
See the [Create a Custom Agent](/docs/tutorials/create-custom-agent.md) tutorial for step-by-step instructions.
156+
See the [Create a Custom Agent](/tutorials/create-custom-agent.md) tutorial for step-by-step instructions.

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](/how-to/install-custom-modules.md) for details.

docs/explanation/what-are-workflows.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ Before building, decide:
144144

145145
| Resource | Description |
146146
|----------|-------------|
147-
| [Workflow Patterns](/docs/explanation/workflow-patterns.md) | Structure types and when to use them |
148-
| [Create Your First Workflow](/docs/tutorials/create-your-first-workflow.md) | Step-by-step tutorial |
149-
| [Workflow Schema](/docs/reference/workflow-schema.md) | Technical reference |
150-
| [Edit Agents and Workflows](/docs/how-to/edit-agents-and-workflows.md) | Modifying workflows |
151-
| [Workflow Variables](/docs/reference/workflow-variables.md) | Frontmatter reference
147+
| [Workflow Patterns](/explanation/workflow-patterns.md) | Structure types and when to use them |
148+
| [Create Your First Workflow](/tutorials/create-your-first-workflow.md) | Step-by-step tutorial |
149+
| [Workflow Schema](/reference/workflow-schema.md) | Technical reference |
150+
| [Edit Agents and Workflows](/how-to/edit-agents-and-workflows.md) | Modifying workflows |
151+
| [Workflow Variables](/reference/workflow-variables.md) | Frontmatter reference

0 commit comments

Comments
 (0)