supermind-claude 2.0.1 → 2.0.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.
- package/README.md +14 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,10 +5,11 @@ Complete, opinionated Claude Code setup — hooks, skills, status line, MCP serv
|
|
|
5
5
|
## Quick Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
|
|
8
|
+
npm install -g supermind-claude
|
|
9
|
+
supermind-claude
|
|
9
10
|
```
|
|
10
11
|
|
|
11
|
-
Or
|
|
12
|
+
Or run without installing: `npx supermind-claude`
|
|
12
13
|
|
|
13
14
|
## What Gets Installed
|
|
14
15
|
|
|
@@ -46,21 +47,21 @@ Choose during setup:
|
|
|
46
47
|
|
|
47
48
|
| Command | Purpose |
|
|
48
49
|
|---------|---------|
|
|
49
|
-
| `
|
|
50
|
-
| `
|
|
51
|
-
| `
|
|
52
|
-
| `
|
|
53
|
-
| `
|
|
50
|
+
| `supermind-claude` | Full global setup |
|
|
51
|
+
| `supermind-claude update` | Refresh hooks, skills, templates |
|
|
52
|
+
| `supermind-claude doctor` | Verify installation health |
|
|
53
|
+
| `supermind-claude uninstall` | Remove all components |
|
|
54
|
+
| `supermind-claude approve "cmd"` | Permanently auto-approve a command |
|
|
54
55
|
|
|
55
56
|
## Approved Commands
|
|
56
57
|
|
|
57
58
|
Permanently auto-approve specific commands that the bash-permissions hook would normally flag:
|
|
58
59
|
|
|
59
60
|
```bash
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
61
|
+
supermind-claude approve "git push" # exact/prefix match
|
|
62
|
+
supermind-claude approve "/npm run .*/" # regex match
|
|
63
|
+
supermind-claude approve --list # see all approved
|
|
64
|
+
supermind-claude approve --remove "git push" # remove approval
|
|
64
65
|
```
|
|
65
66
|
|
|
66
67
|
Or tell Claude: "add that to my approved commands" — it knows how to edit the file directly.
|
|
@@ -71,7 +72,7 @@ Windows, macOS, and Linux. Requires Node.js >= 18.
|
|
|
71
72
|
|
|
72
73
|
## Troubleshooting
|
|
73
74
|
|
|
74
|
-
Run `
|
|
75
|
+
Run `supermind-claude doctor` to check installation health. Common issues:
|
|
75
76
|
- **Plugins not active**: Restart Claude Code after install
|
|
76
77
|
- **Status line not showing**: Ensure Node.js is in PATH
|
|
77
|
-
- **Hooks not firing**: Run `
|
|
78
|
+
- **Hooks not firing**: Run `supermind-claude update` to re-register
|
package/package.json
CHANGED