Skip to content

Commit 9c00c34

Browse files
committed
fix: resolve broken links for MkDocs strict build
1 parent af0b3a5 commit 9c00c34

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

docs/index.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ This repository provides battle-tested patterns for adopting AI-assisted develop
2525

2626
| Pattern | Category | Effort | Impact |
2727
|---------|----------|--------|--------|
28-
| [Codebase Agent (CBA)](#cba) | Agent Behavior | Medium | High |
29-
| [Memory System](#memory) | Agent Behavior | Low | Medium |
30-
| [Self-Review Reflection](#self-review) | Agent Behavior | Low | High |
31-
| [Issue-to-PR Automation](#issue-to-pr) | GHA Automation | High | Very High |
32-
| [PR Auto-Review](#pr-review) | GHA Automation | Medium | High |
33-
| [Dependabot Auto-Merge](#dependabot) | GHA Automation | Low | Medium |
34-
| [Stale Issue Management](#stale) | GHA Automation | Low | Medium |
35-
| [Layered Architecture](#architecture) | Foundation | Low | Medium |
36-
| [Security Patterns](#security) | Foundation | Low | Medium |
28+
| [Codebase Agent (CBA)](patterns/codebase-agent.md) | Agent Behavior | Medium | High |
29+
| [Memory System](getting-started/first-cba.md) | Agent Behavior | Low | Medium |
30+
| [Self-Review Reflection](patterns/self-review-reflection.md) | Agent Behavior | Low | High |
31+
| [Issue-to-PR Automation](patterns/issue-to-pr.md) | GHA Automation | High | Very High |
32+
| [PR Auto-Review](patterns/pr-auto-review.md) | GHA Automation | Medium | High |
33+
| [Dependabot Auto-Merge](patterns/dependabot-auto-merge.md) | GHA Automation | Low | Medium |
34+
| [Stale Issue Management](patterns/stale-issues.md) | GHA Automation | Low | Medium |
35+
| [Layered Architecture](patterns/layered-architecture.md) | Foundation | Low | Medium |
36+
| [Security Patterns](patterns/security-patterns.md) | Foundation | Low | Medium |
3737

3838
### Quick Start Paths
3939

@@ -43,7 +43,7 @@ This repository provides battle-tested patterns for adopting AI-assisted develop
4343

4444
=== "AI keeps forgetting my conventions"
4545

46-
Start with [Memory System](getting-started/first-cba.md#memory-system) - modular context files that persist across sessions.
46+
Start with [Memory System](getting-started/first-cba.md) - modular context files that persist across sessions.
4747

4848
=== "Routine fixes take too long"
4949

docs/patterns/autonomous-quality-enforcement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ The autonomous fix loop is the core mechanism. When validation fails, the agent:
151151
4. Re-runs validation
152152
5. Repeats until success or max iterations reached
153153

154-
See [`scripts/validation/autonomous-fix-loop-template.sh`](../../scripts/validation/autonomous-fix-loop-template.sh) for a reference implementation.
154+
See the demo-fastapi repository for a reference implementation of the autonomous fix loop.
155155

156156
---
157157

docs/patterns/codebase-agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@
7373
## Related Patterns
7474

7575
- [Self-Review Reflection](self-review-reflection.md) - Add quality gates to CBA output
76-
- [Memory System](../getting-started/first-cba.md#memory-system) - Persistent context across sessions
76+
- [Memory System](../getting-started/first-cba.md) - Persistent context across sessions

docs/patterns/multi-agent-code-review.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,16 +74,16 @@ Reviews security posture:
7474

7575
## Implementation
7676

77-
### Reference Orchestrator Script
77+
### Reference Implementation
7878

79-
See [`scripts/autonomous-review/review-reference.sh`](../../scripts/autonomous-review/review-reference.sh) for a reference implementation showing:
79+
A reference orchestrator implementation would include:
8080

8181
- Parallel agent dispatch
8282
- Finding collection and aggregation
8383
- Critical issue auto-fix loop
8484
- Report generation
8585

86-
**Note**: The script demonstrates the pattern. Adapt the agent invocation syntax to your specific tooling (Claude Code Task tool, OpenAI Assistants API, etc.).
86+
**Note**: Adapt the agent invocation syntax to your specific tooling (Claude Code Task tool, OpenAI Assistants API, etc.). See the demo-fastapi repository for working examples.
8787

8888
### Agent Prompt Template
8989

0 commit comments

Comments
 (0)