mob-coordinator 0.2.1 → 0.2.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 +21 -22
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -27,47 +27,39 @@ A local web dashboard for coordinating multiple Claude Code CLI sessions. Launch
27
27
  ## Quick Start
28
28
 
29
29
  ```bash
30
- git clone https://github.com/nickelbob/mob.git
31
- cd mob
32
- npm install
30
+ npm install -g mob-coordinator
31
+ mob
33
32
  ```
34
33
 
35
- If you see errors about missing native modules, run:
36
-
37
- ```bash
38
- npm run setup
39
- ```
40
-
41
- This detects your platform and installs the correct native binaries for node-pty and rollup. It also runs automatically before `npm run dev` and `npm run build`.
34
+ Open `http://localhost:4040` in your browser.
42
35
 
43
36
  ### Install Claude Code Hooks
44
37
 
45
- To enable status reporting (state, branch, auto-naming) from Claude instances launched by mob:
38
+ To enable status reporting (state, branch, auto-naming) from Claude instances, clone the repo and run the hook installer:
46
39
 
47
40
  ```bash
41
+ git clone https://github.com/nickelbob/mob.git
42
+ cd mob
43
+ npm install
48
44
  npm run install-hooks
49
45
  ```
50
46
 
51
- This adds hook entries to `~/.claude/settings.json` that report instance status back to the dashboard.
47
+ This adds hook entries to `~/.claude/settings.json` that point to the hook scripts in the cloned repo. You only need to do this once — the hooks work regardless of whether you run mob via npm or from source.
52
48
 
53
- ### Run
49
+ ### Development
54
50
 
55
- **Development** (hot-reload):
51
+ To contribute or run from source:
56
52
 
57
53
  ```bash
54
+ git clone https://github.com/nickelbob/mob.git
55
+ cd mob
56
+ npm install
58
57
  npm run dev
59
58
  ```
60
59
 
61
60
  Opens the backend on `http://localhost:4040` and the Vite dev server on `http://localhost:4041`. Use port 4041 during development.
62
61
 
63
- **Production**:
64
-
65
- ```bash
66
- npm run build
67
- npm start
68
- ```
69
-
70
- Everything is served from `http://localhost:4040`.
62
+ If you see errors about missing native modules, run `npm run setup` to auto-detect and install the correct platform-specific binaries.
71
63
 
72
64
  ## Usage
73
65
 
@@ -145,6 +137,8 @@ See `CLAUDE.md` for detailed architecture documentation.
145
137
 
146
138
  ## Uninstalling Hooks
147
139
 
140
+ From the cloned repo:
141
+
148
142
  ```bash
149
143
  npm run uninstall-hooks
150
144
  ```
@@ -182,6 +176,11 @@ If hooks aren't firing (crash, subtask weirdness), the terminal state fallback s
182
176
 
183
177
  ## Changelog
184
178
 
179
+ ### 0.2.1
180
+
181
+ - Fix false "Needs Input" showing when Claude finishes a task (completion notifications no longer trigger waiting state)
182
+ - npm package available: `npm install -g mob-coordinator`
183
+
185
184
  ### 0.2.0
186
185
 
187
186
  - Terminal-based state fallback when hooks are silent (detects running/waiting/idle from scrollback)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mob-coordinator",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Local web dashboard for coordinating multiple Claude Code CLI sessions",
5
5
  "type": "module",
6
6
  "license": "MIT",