@hopla/claude-setup 1.11.0 → 1.11.2
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hopla",
|
|
3
3
|
"description": "Agentic coding system for Claude Code: PIV loop (Plan → Implement → Validate), TDD, debugging, brainstorming, subagent execution, and team workflows",
|
|
4
|
-
"version": "1.11.
|
|
4
|
+
"version": "1.11.2",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Hopla Tools",
|
|
7
7
|
"email": "julio@hopla.tools"
|
package/README.md
CHANGED
|
@@ -6,11 +6,19 @@ Hopla team agentic coding system for Claude Code. Installs commands, skills, age
|
|
|
6
6
|
|
|
7
7
|
### Option A: Claude Code Plugin (recommended)
|
|
8
8
|
|
|
9
|
+
First, register the HOPLA marketplace (only needed once):
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
/plugin marketplace add hopla-marketplace HOPLAtools/claude-setup
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Then install the plugin:
|
|
16
|
+
|
|
9
17
|
```
|
|
10
18
|
/plugin install hopla@hopla-marketplace
|
|
11
19
|
```
|
|
12
20
|
|
|
13
|
-
|
|
21
|
+
This installs all commands, skills, agents, and hooks automatically. Updates are detected when the plugin version changes — update manually with `/plugin update hopla@hopla-marketplace`.
|
|
14
22
|
|
|
15
23
|
To also install the global rules template (`~/.claude/CLAUDE.md`), run the CLI:
|
|
16
24
|
|
|
@@ -19,6 +27,8 @@ npm install -g @hopla/claude-setup
|
|
|
19
27
|
claude-setup --force
|
|
20
28
|
```
|
|
21
29
|
|
|
30
|
+
> **Note:** The global rules (`~/.claude/CLAUDE.md`) can only be installed via the CLI because the plugin system doesn't have access to write machine-level files.
|
|
31
|
+
|
|
22
32
|
### Option B: npm CLI only
|
|
23
33
|
|
|
24
34
|
```bash
|
|
@@ -154,10 +164,10 @@ After each PIV loop, run `/hopla-execution-report` + `/hopla-system-review` to f
|
|
|
154
164
|
|
|
155
165
|
| Skill | Auto-activates when you say... |
|
|
156
166
|
|---|---|
|
|
157
|
-
| `hopla-git` | "commit this", "create a PR", "
|
|
158
|
-
| `hopla-prime` | "orient yourself", "
|
|
159
|
-
| `hopla-code-review` | "review the code", "code review", "
|
|
160
|
-
| `hopla-execution-report` | "generate the report", "
|
|
167
|
+
| `hopla-git` | "commit this", "create a PR", "save the changes" |
|
|
168
|
+
| `hopla-prime` | "orient yourself", "catch me up", "what is this project" |
|
|
169
|
+
| `hopla-code-review` | "review the code", "code review", "check these changes" |
|
|
170
|
+
| `hopla-execution-report` | "generate the report", "document what was done", "summarize the work" |
|
|
161
171
|
| `hopla-verify` | "verify it works", "make sure it's correct", "check before finishing" |
|
|
162
172
|
| `hopla-brainstorm` | "let's brainstorm", "explore approaches", "design this before coding" |
|
|
163
173
|
| `hopla-debug` | "debug this", "find the bug", "why is this failing" |
|
|
@@ -239,7 +249,7 @@ After each PIV loop, run `/hopla-execution-report` + `/hopla-system-review` to f
|
|
|
239
249
|
|
|
240
250
|
### Feature development (PIV loop)
|
|
241
251
|
```
|
|
242
|
-
"
|
|
252
|
+
"catch me up" → hopla-prime skill auto-loads project context
|
|
243
253
|
/hopla-plan-feature → research codebase and create plan
|
|
244
254
|
/hopla-review-plan → review plan summary and approve
|
|
245
255
|
/hopla-execute → implement the plan with validation
|
|
@@ -247,7 +257,7 @@ After each PIV loop, run `/hopla-execution-report` + `/hopla-system-review` to f
|
|
|
247
257
|
"review the code" → hopla-code-review skill runs automatically
|
|
248
258
|
/hopla-code-review-fix → fix issues found
|
|
249
259
|
/hopla-rca → root cause analysis if a bug is found
|
|
250
|
-
"
|
|
260
|
+
"generate the report" → hopla-execution-report skill documents what was built
|
|
251
261
|
/hopla-git-commit → save to git
|
|
252
262
|
/hopla-git-pr → open pull request on GitHub
|
|
253
263
|
```
|
|
@@ -309,7 +319,7 @@ Commands are modular — the output of one becomes the input of the next. Some c
|
|
|
309
319
|
# 6. Fix issues
|
|
310
320
|
/hopla-code-review-fix .agents/code-reviews/add-user-authentication.md
|
|
311
321
|
|
|
312
|
-
# 7. Document (auto-triggered skill — just say "
|
|
322
|
+
# 7. Document (auto-triggered skill — just say "generate the report")
|
|
313
323
|
→ saves: .agents/execution-reports/add-user-authentication.md
|
|
314
324
|
|
|
315
325
|
# 8. Commit
|
|
@@ -30,7 +30,7 @@ The description is the MOST CRITICAL field — it determines when the skill acti
|
|
|
30
30
|
|
|
31
31
|
### Pattern
|
|
32
32
|
```
|
|
33
|
-
[What the skill does]. Use when [trigger phrases, synonyms, variations
|
|
33
|
+
[What the skill does]. Use when [trigger phrases, synonyms, variations]. Do NOT use for [anti-triggers].
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
### Good Example
|
|
@@ -47,7 +47,7 @@ The description is the MOST CRITICAL field — it determines when the skill acti
|
|
|
47
47
|
|
|
48
48
|
Claude uses SEMANTIC matching, not keyword matching. Cover:
|
|
49
49
|
- Different phrasings of the same intent
|
|
50
|
-
-
|
|
50
|
+
- Multilingual triggers if your team is multilingual
|
|
51
51
|
- Common misspellings or abbreviations
|
|
52
52
|
- Related verbs and nouns
|
|
53
53
|
|
package/global-rules.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Global Rules — Agentic Coding System
|
|
2
2
|
|
|
3
|
-
> 🌐 **CRITICAL — Language:** Always respond in the same language the user is writing in
|
|
3
|
+
> 🌐 **CRITICAL — Language:** Always respond in the same language the user is writing in. Match the user's language — do not default to any specific language. This rule overrides everything else.
|
|
4
4
|
|
|
5
5
|
## 1. Communication
|
|
6
6
|
|
|
7
|
-
- **Always respond in the
|
|
7
|
+
- **Always respond in the language the user writes in** — match their language, never assume a default
|
|
8
8
|
- Code, comments, variable names, and commit messages always in **English** regardless of the conversation language
|
|
9
9
|
- Be concise — avoid unnecessary filler text
|
|
10
10
|
- When reporting results, use ✅/❌ for clarity
|