@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.
@@ -9,7 +9,7 @@
9
9
  {
10
10
  "name": "hopla",
11
11
  "description": "Agentic coding system: PIV loop, TDD, debugging, brainstorming, subagent execution, and team workflows",
12
- "version": "1.11.0",
12
+ "version": "1.11.2",
13
13
  "source": "./",
14
14
  "author": {
15
15
  "name": "Hopla Tools",
@@ -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.0",
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
- Installs all commands, skills, agents, and hooks automatically. Updates are detected when the plugin version changes.
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", "guarda los cambios" |
158
- | `hopla-prime` | "orient yourself", "ponte al día", "what is this project" |
159
- | `hopla-code-review` | "review the code", "code review", "analiza los cambios" |
160
- | `hopla-execution-report` | "generate the report", "genera el reporte", "document what was done" |
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
- "ponte al día" → hopla-prime skill auto-loads project context
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
- "genera el reporte" → hopla-execution-report skill documents what was built
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 "genera el reporte")
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 in English and Spanish]. Do NOT use for [anti-triggers].
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
- - English AND Spanish triggers (for HOPLA's bilingual users)
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, regardless of the language of any command or instruction. If the user writes in Spanish, respond in Spanish. If in English, respond in English. This rule overrides everything else.
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 same language the user writes in** — if the user writes in Spanish, respond in Spanish; if in English, respond in English
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hopla/claude-setup",
3
- "version": "1.11.0",
3
+ "version": "1.11.2",
4
4
  "description": "Hopla team agentic coding system for Claude Code",
5
5
  "type": "module",
6
6
  "bin": {