Skip to content

Commit 5097339

Browse files
committed
docs: update commands.md and features.md for v2.1.0 features
1 parent c07cd08 commit 5097339

File tree

2 files changed

+19
-9
lines changed

2 files changed

+19
-9
lines changed

docs/commands.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
| Command | Description |
66
|---------|-------------|
77
| `/claude` | Send a prompt to Claude Code. Supports `prompt` and `session_id` options. |
8-
| `/continue` | Continue a previous Claude conversation with an optional follow-up prompt. |
8+
| `/resume` | Resume (continue) a previous Claude conversation with an optional follow-up prompt. |
99
| `/claude-cancel` | Cancel the currently running Claude operation. |
10+
| `/fast` | Toggle Opus 4.6 fast mode — 2.5x faster responses, same quality. |
1011

1112
## Enhanced Claude Commands (4)
1213

@@ -35,7 +36,7 @@
3536
|---------|-------------|
3637
| `/claude-info` | View account info, available models, and MCP server status. Options: `section` (all/account/models/mcp). Works with or without an active session. |
3738
| `/rewind` | Rewind file changes to a specific conversation turn. Options: `turn` (number), `dry_run` (preview changes without applying). |
38-
| `/claude-control` | Mid-session controls. Options: `action` (interrupt/set-model/set-permissions/status), `value`. Change model or permissions without restarting. |
39+
| `/claude-control` | Mid-session controls. Options: `action` (interrupt/set-model/set-permissions/stop-task/status), `value`. Change model, permissions, or stop background tasks without restarting. |
3940

4041
## Settings Commands (4)
4142

@@ -51,7 +52,7 @@
5152
| Command | Description |
5253
|---------|-------------|
5354
| `/todos` | Task management. Actions: `list`, `add`, `complete`, `generate`, `prioritize`. Priority levels: low/medium/high/critical. Persists to disk. |
54-
| `/mcp` | MCP (Model Context Protocol) server management. Actions: `list`, `add`, `remove`, `test`, `status`. Reads from `.claude/mcp.json`. |
55+
| `/mcp` | MCP (Model Context Protocol) server management. Actions: `list`, `add`, `remove`, `test`, `status`, `toggle`, `reconnect`. Reads from `.claude/mcp.json`. Toggle/reconnect work mid-session. |
5556
| `/agent` | Run specialized AI agents. Actions: `list`, `start`, `stop`, `status`. 7 built-in agents. |
5657

5758
## Git Operations (6)

docs/features.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,15 @@ Set via `/settings` > `claude` > `set-effort`.
3737

3838
| Feature | Description |
3939
|---------|-------------|
40+
| Fast Mode | Toggle Opus 4.6 speed-optimized API (2.5x faster, same quality) via `/fast` |
4041
| 1M Token Context | Beta: increases context window to 1M tokens |
41-
| Sandbox Mode | Runs Claude in sandboxed environment for safety |
42+
| Sandbox Mode | Granular sandbox with network rules, filesystem ACLs, excluded commands |
4243
| File Checkpointing | Enables file change tracking for rewind support |
44+
| Agent Teams | Experimental multi-agent collaboration (delegate mode) |
45+
| Hooks System | Passive SDK callbacks for tool use, notification, and task observability |
46+
| Additional Directories | Multi-repo access — let Claude read/write across multiple directories |
47+
| Fork Session | Branch a conversation into a new independent session |
48+
| AskUserQuestion | Claude can ask clarifying questions mid-session via Discord buttons |
4349

4450
Toggles available via `/settings` > `claude`.
4551

@@ -73,11 +79,13 @@ Agents run through the SDK using native `AgentDefinition` support with tailored
7379
Manage Model Context Protocol servers for Claude:
7480

7581
```
76-
/mcp list # Show configured MCP servers
77-
/mcp add # Add a new MCP server
78-
/mcp remove # Remove an MCP server
79-
/mcp status # Check connection status
80-
/mcp test # Test a server connection
82+
/mcp list # Show configured MCP servers
83+
/mcp add # Add a new MCP server
84+
/mcp remove # Remove an MCP server
85+
/mcp status # Check connection status
86+
/mcp test # Test a server connection
87+
/mcp toggle # Enable/disable a server mid-session
88+
/mcp reconnect # Reconnect a failed server mid-session
8189
```
8290

8391
MCP configuration is stored in `.claude/mcp.json`:
@@ -103,6 +111,7 @@ Change model or permissions without restarting your session:
103111
```
104112
/claude-control set-model claude-sonnet-4-20250514
105113
/claude-control set-permissions bypassPermissions
114+
/claude-control stop-task <task_id>
106115
/claude-control status
107116
/claude-control interrupt
108117
```

0 commit comments

Comments
 (0)