docs: Complete Phases 3-4 — new feature coverage and reference doc updates

Phase 3: Added agent teams tutorial, scheduled tasks, Chrome integration,
remote control expansion, plugin marketplaces/LSP, keyboard customization,
and desktop app expansion across 3 guide files (~612 net lines).

Phase 4: Cascading updates to 6 reference documents — synced command counts
(40→55), added bundled skills, 18 hook events, new features (agent teams,
scheduled tasks, Chrome, keybindings), and updated all dates to March 2026.
This commit is contained in:
Luong NGUYEN
2026-03-13 05:13:17 +01:00
parent ef52705f78
commit 132de292e4
10 changed files with 829 additions and 135 deletions

View File

@@ -129,6 +129,7 @@ claude -r "session" # Resume session by name/ID
| **Git Worktrees** | Built-in | `/worktree` |
| **Auto Memory** | Built-in | Auto-saves to CLAUDE.md |
| **Task List** | Built-in | `/task list` |
| **Bundled Skills** | Built-in | `/simplify`, `/loop`, `/claude-api` |
---
@@ -237,6 +238,26 @@ claude --permission-mode plan
# If you need to rewind: press Esc+Esc or use /rewind
```
### Agent Teams
```bash
# Enable agent teams
export CLAUDE_AGENT_TEAMS=1
# Or in settings.json
{ "agentTeams": { "enabled": true } }
# Start with: "Implement feature X using a team approach"
```
### Scheduled Tasks
```bash
# Run a command every 5 minutes
/loop 5m /check-status
# One-time reminder
/loop 30m "remind me to check the deploy"
```
---
## 📁 File Locations Reference
@@ -352,7 +373,7 @@ cp -r 03-skills/code-review ~/.claude/skills/
---
## New Features (February 2026)
## New Features (March 2026)
| Feature | Description | Usage |
|---------|-------------|-------|
@@ -363,6 +384,10 @@ cp -r 03-skills/code-review ~/.claude/skills/
| **Auto Memory** | Automatic memory saving from conversations | Claude auto-saves key context to CLAUDE.md |
| **Git Worktrees** | Isolated workspaces for parallel development | `/worktree` to create isolated workspace |
| **Model Selection** | Switch between Sonnet 4.6 and Opus 4.6 | `/model` or `--model` flag |
| **Agent Teams** | Coordinate multiple agents on tasks | Enable with `CLAUDE_AGENT_TEAMS=1` env var |
| **Scheduled Tasks** | Recurring tasks with `/loop` | `/loop 5m /command` or CronCreate tool |
| **Chrome Integration** | Browser automation | `--chrome` flag or `/chrome` command |
| **Keyboard Customization** | Custom keybindings | `/keybindings` command |
---