Skip to content

Commit 2ecc8b2

Browse files
nicksenapclaude
andcommitted
Update ai-tools.md for plugin architecture
CLAUDE.md syncing and session tracking are now via gw-claude plugin. Dashboard is now via gw-dash plugin. Added install instructions. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e71559d commit 2ecc8b2

File tree

1 file changed

+30
-3
lines changed

1 file changed

+30
-3
lines changed

docs/ai-tools.md

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,40 @@ claude "fix the auth token expiry bug across svc-auth and api-gateway"
88
gw delete fix-auth-bug # removes worktrees, branches, and workspace
99
```
1010

11-
## CLAUDE.md syncing
11+
## Claude Code plugin
1212

13-
Grove copies your `CLAUDE.md` into new workspaces, so your agent gets project context from the start.
13+
Install the [gw-claude](https://github.com/nicksenap/gw-claude) plugin to get:
14+
15+
- **Memory sync** — Claude Code memory carries over from source repos to worktrees and back
16+
- **CLAUDE.md copy** — your project `CLAUDE.md` is copied into new workspaces automatically
17+
- **Session tracking** — hook events are recorded for the dashboard
18+
19+
```bash
20+
gw plugin install nicksenap/gw-claude
21+
gw wizard # configures hooks interactively
22+
```
23+
24+
Or configure manually in `~/.grove/config.toml`:
25+
26+
```toml
27+
[hooks]
28+
post_create = "gw claude sync rehydrate {path} && gw claude copy-md {path}"
29+
pre_delete = "gw claude sync harvest {path}"
30+
```
31+
32+
See [plugins.md](plugins.md) for the full command reference.
1433

1534
## Agent dashboard
1635

17-
Grove includes a [dashboard](dashboard.md) for monitoring multiple Claude Code agents across workspaces. Install hooks with `gw dash install`, then launch with `gw dash`.
36+
The [gw-dash](https://github.com/nicksenap/gw-dash) plugin provides a kanban-style TUI for monitoring Claude Code agents across workspaces.
37+
38+
```bash
39+
gw plugin install nicksenap/gw-dash
40+
gw claude hook install # register session tracking hooks
41+
gw dash # launch the dashboard
42+
```
43+
44+
See [dashboard.md](dashboard.md) for details.
1845

1946
## MCP server
2047

0 commit comments

Comments
 (0)