@hopla/claude-setup 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +43 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -95,6 +95,49 @@ CLAUDE.md (project root) ← Project-specific rules (created with /hopla-init-
|
|
|
95
95
|
|
|
96
96
|
---
|
|
97
97
|
|
|
98
|
+
## Command Chaining
|
|
99
|
+
|
|
100
|
+
Commands are modular — the output of one becomes the input of the next. Some commands accept arguments (`$1`, `$2`) to receive files generated by previous commands.
|
|
101
|
+
|
|
102
|
+
### Commands that accept arguments
|
|
103
|
+
|
|
104
|
+
| Command | Argument | Example |
|
|
105
|
+
|---|---|---|
|
|
106
|
+
| `/hopla-execute` | Path to plan file | `/hopla-execute .agents/plans/auth-feature.md` |
|
|
107
|
+
| `/hopla-code-review-fix` | Path to review report or description | `/hopla-code-review-fix .agents/code-reviews/auth-review.md` |
|
|
108
|
+
| `/hopla-system-review` | Plan file + execution report | `/hopla-system-review .agents/plans/auth-feature.md .agents/execution-reports/auth-feature.md` |
|
|
109
|
+
|
|
110
|
+
### Full PIV loop example
|
|
111
|
+
|
|
112
|
+
```
|
|
113
|
+
# 1. Plan
|
|
114
|
+
/hopla-plan-feature add user authentication
|
|
115
|
+
→ saves: .agents/plans/add-user-authentication.md
|
|
116
|
+
|
|
117
|
+
# 2. Execute
|
|
118
|
+
/hopla-execute .agents/plans/add-user-authentication.md
|
|
119
|
+
→ implements the plan, runs validation
|
|
120
|
+
|
|
121
|
+
# 3. Review
|
|
122
|
+
/hopla-code-review
|
|
123
|
+
→ saves: .agents/code-reviews/add-user-authentication.md
|
|
124
|
+
|
|
125
|
+
# 4. Fix issues
|
|
126
|
+
/hopla-code-review-fix .agents/code-reviews/add-user-authentication.md
|
|
127
|
+
|
|
128
|
+
# 5. Commit
|
|
129
|
+
/hopla-commit
|
|
130
|
+
|
|
131
|
+
# 6. Document
|
|
132
|
+
/hopla-execution-report
|
|
133
|
+
→ saves: .agents/execution-reports/add-user-authentication.md
|
|
134
|
+
|
|
135
|
+
# 7. Improve process
|
|
136
|
+
/hopla-system-review .agents/plans/add-user-authentication.md .agents/execution-reports/add-user-authentication.md
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
---
|
|
140
|
+
|
|
98
141
|
## Project Structure (after /hopla-init-project)
|
|
99
142
|
|
|
100
143
|
```
|