@foothill/agent-move 1.0.6 → 1.0.7
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 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
A real-time pixel-art visualizer that turns AI coding sessions into a living 2D world. Agents walk between rooms, use tools, chat, and rest — all rendered at 60fps in your browser.
|
|
8
8
|
|
|
9
9
|
```
|
|
10
|
-
npx agent-move@latest
|
|
10
|
+
npx @foothill/agent-move@latest
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
<br>
|
|
@@ -17,8 +17,8 @@ npx agent-move@latest
|
|
|
17
17
|
<br>
|
|
18
18
|
<br>
|
|
19
19
|
|
|
20
|
-
[](https://www.npmjs.com/package/agent-move)
|
|
21
|
-
[](LICENSE)
|
|
20
|
+
[](https://www.npmjs.com/package/@foothill/agent-move)
|
|
21
|
+
[](LICENSE)
|
|
22
22
|
|
|
23
23
|
</div>
|
|
24
24
|
|
|
@@ -53,7 +53,7 @@ It uses a **hybrid data pipeline** — JSONL file watching for rich data (tokens
|
|
|
53
53
|
### One Command
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
|
-
npx agent-move@latest
|
|
56
|
+
npx @foothill/agent-move@latest
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
That's it. The server starts, hooks are auto-installed, your browser opens, and any active coding session is visualized immediately.
|
|
@@ -66,9 +66,9 @@ On first run, AgentMove automatically:
|
|
|
66
66
|
### Options
|
|
67
67
|
|
|
68
68
|
```bash
|
|
69
|
-
npx agent-move@latest --port 4000 # custom port (default: 3333)
|
|
70
|
-
npx agent-move@latest --no-open # don't auto-open the browser
|
|
71
|
-
npx agent-move@latest --help # show all options
|
|
69
|
+
npx @foothill/agent-move@latest --port 4000 # custom port (default: 3333)
|
|
70
|
+
npx @foothill/agent-move@latest --no-open # don't auto-open the browser
|
|
71
|
+
npx @foothill/agent-move@latest --help # show all options
|
|
72
72
|
```
|
|
73
73
|
|
|
74
74
|
### Hooks Management
|
|
@@ -76,9 +76,9 @@ npx agent-move@latest --help # show all options
|
|
|
76
76
|
Hooks are auto-installed on first run. You can also manage them manually:
|
|
77
77
|
|
|
78
78
|
```bash
|
|
79
|
-
npx agent-move@latest hooks status # check if hooks are installed
|
|
80
|
-
npx agent-move@latest hooks install # (re)install hooks
|
|
81
|
-
npx agent-move@latest hooks uninstall # remove hooks
|
|
79
|
+
npx @foothill/agent-move@latest hooks status # check if hooks are installed
|
|
80
|
+
npx @foothill/agent-move@latest hooks install # (re)install hooks
|
|
81
|
+
npx @foothill/agent-move@latest hooks uninstall # remove hooks
|
|
82
82
|
```
|
|
83
83
|
|
|
84
84
|
AgentMove works without hooks too — it falls back to JSONL file watching. Hooks add precise session lifecycle, tool success/failure tracking, and permission management.
|
|
@@ -86,7 +86,7 @@ AgentMove works without hooks too — it falls back to JSONL file watching. Hook
|
|
|
86
86
|
### From Source (for development)
|
|
87
87
|
|
|
88
88
|
```bash
|
|
89
|
-
git clone https://github.com/
|
|
89
|
+
git clone https://github.com/FoothillSolutions/agent-move.git
|
|
90
90
|
cd agent-move
|
|
91
91
|
npm install
|
|
92
92
|
npm run dev
|
|
@@ -242,14 +242,14 @@ The WebSocket sends a `full_state` snapshot on connect, then incremental events:
|
|
|
242
242
|
|
|
243
243
|
| Problem | Solution |
|
|
244
244
|
|---------|----------|
|
|
245
|
-
| Port already in use | `npx agent-move@latest --port 4444` |
|
|
246
|
-
| Hooks not working | `npx agent-move@latest hooks status` to check, then `hooks install` to fix |
|
|
245
|
+
| Port already in use | `npx @foothill/agent-move@latest --port 4444` |
|
|
246
|
+
| Hooks not working | `npx @foothill/agent-move@latest hooks status` to check, then `hooks install` to fix |
|
|
247
247
|
| No agents showing up | Make sure Claude Code is running — agents appear when sessions are active |
|
|
248
248
|
| Build artifacts missing (from source) | Run `npm run build` |
|
|
249
249
|
| Permission denied on port | Use a port above 1024: `--port 3333` |
|
|
250
250
|
| Browser didn't open | Visit `http://localhost:3333` manually, or check `--no-open` flag |
|
|
251
251
|
|
|
252
|
-
Need more help? [Open an issue](https://github.com/
|
|
252
|
+
Need more help? [Open an issue](https://github.com/FoothillSolutions/agent-move/issues)
|
|
253
253
|
|
|
254
254
|
## Tech Stack
|
|
255
255
|
|