@hopla/claude-setup 1.11.1 → 1.11.3
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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +8 -8
- package/agents/code-reviewer.md +0 -1
- package/agents/codebase-researcher.md +0 -1
- package/agents/system-reviewer.md +0 -1
- package/commands/guides/write-skill.md +3 -3
- package/global-rules.md +2 -2
- package/package.json +1 -1
- package/skills/hopla-execution-report/SKILL.md +0 -1
- package/skills/hopla-prime/SKILL.md +0 -1
|
@@ -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.3",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Hopla Tools",
|
|
7
7
|
"email": "julio@hopla.tools"
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ Hopla team agentic coding system for Claude Code. Installs commands, skills, age
|
|
|
9
9
|
First, register the HOPLA marketplace (only needed once):
|
|
10
10
|
|
|
11
11
|
```
|
|
12
|
-
/plugin marketplace add hopla-marketplace
|
|
12
|
+
/plugin marketplace add hopla-marketplace HOPLAtools/claude-setup
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
Then install the plugin:
|
|
@@ -164,10 +164,10 @@ After each PIV loop, run `/hopla-execution-report` + `/hopla-system-review` to f
|
|
|
164
164
|
|
|
165
165
|
| Skill | Auto-activates when you say... |
|
|
166
166
|
|---|---|
|
|
167
|
-
| `hopla-git` | "commit this", "create a PR", "
|
|
168
|
-
| `hopla-prime` | "orient yourself", "
|
|
169
|
-
| `hopla-code-review` | "review the code", "code review", "
|
|
170
|
-
| `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" |
|
|
171
171
|
| `hopla-verify` | "verify it works", "make sure it's correct", "check before finishing" |
|
|
172
172
|
| `hopla-brainstorm` | "let's brainstorm", "explore approaches", "design this before coding" |
|
|
173
173
|
| `hopla-debug` | "debug this", "find the bug", "why is this failing" |
|
|
@@ -249,7 +249,7 @@ After each PIV loop, run `/hopla-execution-report` + `/hopla-system-review` to f
|
|
|
249
249
|
|
|
250
250
|
### Feature development (PIV loop)
|
|
251
251
|
```
|
|
252
|
-
"
|
|
252
|
+
"catch me up" → hopla-prime skill auto-loads project context
|
|
253
253
|
/hopla-plan-feature → research codebase and create plan
|
|
254
254
|
/hopla-review-plan → review plan summary and approve
|
|
255
255
|
/hopla-execute → implement the plan with validation
|
|
@@ -257,7 +257,7 @@ After each PIV loop, run `/hopla-execution-report` + `/hopla-system-review` to f
|
|
|
257
257
|
"review the code" → hopla-code-review skill runs automatically
|
|
258
258
|
/hopla-code-review-fix → fix issues found
|
|
259
259
|
/hopla-rca → root cause analysis if a bug is found
|
|
260
|
-
"
|
|
260
|
+
"generate the report" → hopla-execution-report skill documents what was built
|
|
261
261
|
/hopla-git-commit → save to git
|
|
262
262
|
/hopla-git-pr → open pull request on GitHub
|
|
263
263
|
```
|
|
@@ -319,7 +319,7 @@ Commands are modular — the output of one becomes the input of the next. Some c
|
|
|
319
319
|
# 6. Fix issues
|
|
320
320
|
/hopla-code-review-fix .agents/code-reviews/add-user-authentication.md
|
|
321
321
|
|
|
322
|
-
# 7. Document (auto-triggered skill — just say "
|
|
322
|
+
# 7. Document (auto-triggered skill — just say "generate the report")
|
|
323
323
|
→ saves: .agents/execution-reports/add-user-authentication.md
|
|
324
324
|
|
|
325
325
|
# 8. Commit
|
package/agents/code-reviewer.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: code-reviewer
|
|
3
3
|
description: "Senior code reviewer agent for thorough code quality analysis. Use this agent to review completed code changes with fresh context, catching issues the implementer might miss."
|
|
4
|
-
model: sonnet
|
|
5
4
|
allowed-tools: Read, Grep, Glob, Bash
|
|
6
5
|
---
|
|
7
6
|
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: codebase-researcher
|
|
3
3
|
description: "Fast codebase exploration agent for research tasks. Use this agent to investigate code, find patterns, map dependencies, or gather context without polluting the main conversation."
|
|
4
|
-
model: haiku
|
|
5
4
|
allowed-tools: Read, Grep, Glob, Bash
|
|
6
5
|
---
|
|
7
6
|
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: system-reviewer
|
|
3
3
|
description: "System review agent that analyzes execution reports against plans to identify process improvements. Use after feature completion to find patterns and improve the development system."
|
|
4
|
-
model: sonnet
|
|
5
4
|
allowed-tools: Read, Grep, Glob, Bash
|
|
6
5
|
---
|
|
7
6
|
|
|
@@ -20,7 +20,7 @@ skill-name/
|
|
|
20
20
|
name: skill-name
|
|
21
21
|
description: "100-150 words. Start with what it does, then 'Use when...' + specific triggers. End with 'Do NOT use for...' anti-triggers."
|
|
22
22
|
allowed-tools: Read, Grep, Glob, Bash # Optional: restrict tools
|
|
23
|
-
model
|
|
23
|
+
# Do NOT hardcode `model:` — let skills inherit the user's configured model
|
|
24
24
|
---
|
|
25
25
|
```
|
|
26
26
|
|
|
@@ -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
|
package/package.json
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
name: hopla-execution-report
|
|
3
3
|
description: "Post-implementation documentation generator. Use when the user says 'generate report', 'document what was done', 'execution report', 'what changed', or after a feature implementation is complete and validated. Do NOT use during implementation — only after completion."
|
|
4
4
|
allowed-tools: Read, Grep, Glob, Bash
|
|
5
|
-
model: sonnet
|
|
6
5
|
---
|
|
7
6
|
|
|
8
7
|
> 🌐 **Language:** All user-facing output must match the user's language. Code, paths, and commands stay in English.
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
name: hopla-prime
|
|
3
3
|
description: "Project orientation and context loading. Use when starting a session, onboarding to a project, needing to understand the codebase, or when the user says 'orient', 'get context', 'load project', 'what is this project', 'prime', or 'start'. Do NOT use mid-task when the project is already understood."
|
|
4
4
|
allowed-tools: Read, Grep, Glob, Bash
|
|
5
|
-
model: sonnet
|
|
6
5
|
---
|
|
7
6
|
|
|
8
7
|
> 🌐 **Language:** All user-facing output must match the user's language. Code, paths, and commands stay in English.
|