@hopla/claude-setup 1.11.0 → 1.11.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 +11 -1
- package/package.json +1 -1
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 https://github.com/HOPLAtools/claude-setup.git
|
|
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
|