Skip to content

Commit 7ae461f

Browse files
committed
docs: update README with new agents, commands, and rules
1 parent 2a8de89 commit 7ae461f

File tree

1 file changed

+21
-5
lines changed

1 file changed

+21
-5
lines changed

README.md

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,12 @@ This toolkit includes Claude Code configurations for AI-assisted development.
9797
### Example Feature Workflow
9898

9999
```
100-
1. /create-entity Order Order → Domain entity + test
101-
2. /create-repository Order Order → Repository pattern
102-
3. /create-use-case Order Command CreateOrder → Handler
103-
4. /create-controller Order Order → HTTP layer
104-
5. /tdd-cycle → Guide through TDD
100+
1. /create-module Order → Module structure
101+
2. /create-entity Order Order → Domain entity + test
102+
3. /create-repository Order Order → Repository pattern
103+
4. /create-use-case Order Command CreateOrder → Handler
104+
5. /create-controller Order Order → HTTP layer
105+
6. /tdd-cycle → Guide through TDD
105106
```
106107

107108
### Available Agents
@@ -111,17 +112,32 @@ This toolkit includes Claude Code configurations for AI-assisted development.
111112
| `domain-architect` | DDD & hexagonal architecture guidance |
112113
| `tdd-coach` | Red-green-refactor workflow coaching |
113114
| `clean-code-reviewer` | SOLID principles & code smell detection |
115+
| `security-reviewer` | OWASP Top 10 & Laravel security analysis |
114116

115117
### Available Commands
116118

117119
| Command | Generates |
118120
|---------|-----------|
121+
| `/create-module` | Full module structure with all layers |
119122
| `/create-entity` | Domain entity + value objects + test |
123+
| `/create-value-object` | Immutable value object + validation + test |
120124
| `/create-repository` | Interface + Eloquent + InMemory implementations |
121125
| `/create-use-case` | Command/Query DTO + Handler + test |
122126
| `/create-controller` | Thin controller + request + resource |
123127
| `/tdd-cycle` | Interactive red-green-refactor guide |
124128
| `/refactor-check` | SOLID violations & improvement report |
129+
| `/code-review` | Code quality & architecture compliance review |
130+
| `/security-review` | Security analysis with OWASP checks |
131+
132+
### Rules (Always Active)
133+
134+
| Rule | Enforces |
135+
|------|----------|
136+
| `security` | Pre-commit security checks, no hardcoded secrets |
137+
| `testing` | 80% coverage minimum, TDD workflow |
138+
| `coding-style` | Immutability, file limits, naming conventions |
139+
| `git-workflow` | Conventional commits, PR process |
140+
| `performance` | Database optimization, caching patterns |
125141

126142
---
127143

0 commit comments

Comments
 (0)