You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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>
Copy file name to clipboardExpand all lines: docs/ai-tools.md
+30-3Lines changed: 30 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,13 +8,40 @@ claude "fix the auth token expiry bug across svc-auth and api-gateway"
8
8
gw delete fix-auth-bug # removes worktrees, branches, and workspace
9
9
```
10
10
11
-
## CLAUDE.md syncing
11
+
## Claude Code plugin
12
12
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.
14
33
15
34
## Agent dashboard
16
35
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
0 commit comments