fix(docs): Update broken URLs, deprecations, and outdated references

- Replace docs.anthropic.com URLs with code.claude.com equivalents across all files
- Mark /review as deprecated with code-review plugin recommendation
- Fix "Sonnet 4.5" → "Sonnet 4.6" model name reference
- Update Task() → Agent() syntax in subagents documentation
- Remove undocumented /todos from slash commands table
- Add verification note about CLAUDE.local.md not in official docs
This commit is contained in:
Luong NGUYEN
2026-03-13 04:46:02 +01:00
parent 84141d06cf
commit 8fe452029f
10 changed files with 24 additions and 21 deletions

View File

@@ -495,7 +495,9 @@ graph TB
## Restrict Spawnable Subagents
You can control which subagents a given subagent is allowed to spawn by using the `Task(agent_type)` syntax in the `tools` field. This provides a way to allowlist specific subagents for delegation.
You can control which subagents a given subagent is allowed to spawn by using the `Agent(agent_type)` syntax in the `tools` field. This provides a way to allowlist specific subagents for delegation.
> **Note**: In v2.1.63, the `Task` tool was renamed to `Agent`. Existing `Task(...)` references still work as aliases.
### Example
@@ -503,7 +505,7 @@ You can control which subagents a given subagent is allowed to spawn by using th
---
name: coordinator
description: Coordinates work between specialized agents
tools: Task(worker, researcher), Read, Bash
tools: Agent(worker, researcher), Read, Bash
---
You are a coordinator agent. You can delegate work to the "worker" and