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.
Files changed (2) hide show
  1. package/README.md +14 -13
  2. 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
- npx supermind-claude
8
+ npm install -g supermind-claude
9
+ supermind-claude
9
10
  ```
10
11
 
11
- Or give Claude Code the repo URL and it will figure out the setup.
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
- | `npx supermind-claude` | Full global setup |
50
- | `npx supermind-claude update` | Refresh hooks, skills, templates |
51
- | `npx supermind-claude doctor` | Verify installation health |
52
- | `npx supermind-claude uninstall` | Remove all components |
53
- | `npx supermind-claude approve "cmd"` | Permanently auto-approve a command |
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
- npx supermind-claude approve "git push" # exact/prefix match
61
- npx supermind-claude approve "/npm run .*/" # regex match
62
- npx supermind-claude approve --list # see all approved
63
- npx supermind-claude approve --remove "git push" # remove approval
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 `npx supermind-claude doctor` to check installation health. Common issues:
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 `npx supermind-claude update` to re-register
78
+ - **Hooks not firing**: Run `supermind-claude update` to re-register
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "supermind-claude",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Complete, opinionated Claude Code setup — hooks, skills, status line, MCP servers, and living documentation",
5
5
  "bin": {
6
6
  "supermind-claude": "cli/index.js",