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
docs: update README with agent-agnostic support and agent sync (#58)
## Summary
- Document agent-agnostic support (Claude Code + Codex CLI)
- Add `crab agent sync` command reference
- Show `agent:` config field in examples
- Update requirements to list both agent CLIs
- Update tmux layout diagram and setup flow
## Test plan
- [x] README renders correctly
- [x] No code changes — docs only
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+29-8Lines changed: 29 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
< >
8
8
```
9
9
10
-
A lightning-fast tmux-based workspace manager for multi-repo development. Manage multiple projects, start full dev environments in seconds.
10
+
A lightning-fast tmux-based workspace manager for multi-repo development. Agent-agnostic — works with both [Claude Code](https://claude.ai/code) and [Codex CLI](https://github.com/openai/codex). Manage multiple projects, start full dev environments in seconds.
Track and resume Claude conversations across workspaces:
245
+
Track and resume agent conversations across workspaces:
246
246
247
247
```bash
248
248
crab session start "feature-x" # Start a named session
@@ -251,6 +251,21 @@ crab session ls # List sessions with summaries
251
251
crab session delete "feature-x" # Delete a session
252
252
```
253
253
254
+
### Agent Sync (`crab agent`)
255
+
256
+
Sync user-level configurations (MCP servers, custom agents/skills) between Claude Code and Codex CLI. Useful when switching a project's agent or maintaining parity across both.
257
+
258
+
```bash
259
+
crab agent status # Audit what's configured on each side
260
+
crab agent sync mcp --from claude # Preview MCP server sync (dry run)
261
+
crab agent sync mcp --from claude --apply # Sync MCP servers Claude → Codex
0 commit comments