@@ -38,6 +38,8 @@ Pick what you need. Each pattern works independently:
3838| Pattern | Description | How to Adopt |
3939| ------- | ----------- | ------------ |
4040| ** Codebase Agent** | AI agent configuration patterns | Copy ` .claude/ ` structure |
41+ | ** Self-Review Reflection** | Agent reviews own work before delivery | Reference ` docs/patterns/self-review-reflection.md ` |
42+ | ** GHA Automation** | Issue-to-PR, PR review, auto-merge, stale issues | Reference ` docs/patterns/gha-automation-patterns.md ` |
4143| ** Architecture** | Layered architecture patterns | Reference ` docs/architecture.md ` |
4244| ** Security** | Security best practices | Reference ` .claude/context/security-standards.md ` |
4345| ** Testing** | Test organization patterns | Reference ` .claude/context/testing-patterns.md ` |
@@ -76,17 +78,32 @@ The demo repository includes:
7678
7779## Key Patterns
7880
81+ ### Agent Behavior Patterns
82+
83+ How AI agents work during development:
84+
85+ - ** [ Self-Review Reflection] ( docs/patterns/self-review-reflection.md ) ** - Agent reviews own work before presenting to humans
86+ - ** [ Autonomous Quality Enforcement] ( docs/patterns/autonomous-quality-enforcement.md ) ** - Validate code before presenting
87+ - ** [ Multi-Agent Code Review] ( docs/patterns/multi-agent-code-review.md ) ** - Parallel specialized reviews
88+
89+ ### GHA Automation Patterns
90+
91+ Proactive CI/CD workflows in [ ` docs/patterns/gha-automation-patterns.md ` ] ( docs/patterns/gha-automation-patterns.md ) :
92+
93+ - ** Issue-to-PR Automation** - Convert issues to draft PRs automatically
94+ - ** PR Auto-Review** - AI code review on every PR
95+ - ** Dependabot Auto-Merge** - Safe auto-merge for patch updates
96+ - ** Stale Issue Management** - Cleanup inactive issues
97+
7998### Codebase Agent (CBA)
8099
81- AI agent configuration patterns for :
100+ AI agent configuration patterns in [ ` .claude/agents/codebase-agent.md ` ] ( .claude/agents/codebase-agent.md ) :
82101
83102- ** Issue-to-PR Automation** - Converting well-defined issues into pull requests
84103- ** Code Reviews** - Providing actionable feedback
85104- ** Proactive Maintenance** - Dependency updates, linting, documentation
86105- ** Memory System** - Modular context files for consistency
87106
88- See [ ` .claude/agents/codebase-agent.md ` ] ( .claude/agents/codebase-agent.md ) for patterns.
89-
90107### Architecture Patterns
91108
92109Reference implementations for:
@@ -115,6 +132,7 @@ GitHub Actions patterns for:
115132## Documentation
116133
117134- ** [ Quickstart] ( docs/quickstart.md ) ** - 5-minute introduction to AI-assisted development
135+ - ** [ Patterns Index] ( docs/patterns/README.md ) ** - All workflow patterns in one place
118136- ** [ Architecture] ( docs/architecture.md ) ** - Common architecture patterns
119137- ** [ Tutorial] ( docs/tutorial.md ) ** - Step-by-step implementation guide
120138- ** [ API Reference] ( docs/api-reference.md ) ** - API design patterns
0 commit comments