docs: Add missing commands, features, and settings across 6 guides

Phase 2 of docs sync: fill gaps in existing content for Jan-Mar 2026 features.

- Add 15 missing slash commands to built-in commands table
- Add bundled skills section (/simplify, /batch, /debug, /loop, /claude-api)
- Add ${CLAUDE_SKILL_DIR} string substitution for skills
- Add MCP OAuth metadata override, scope terminology update, CLAUDEAI toggle
- Add InstructionsLoaded/Setup hook events, HTTP hooks version note, new fields
- Add effort level visual indicators and autoMemoryDirectory/claudeMdExcludes settings
- Update /context command description with optimization suggestions
- Add update-plan.md tracking document
This commit is contained in:
Luong NGUYEN
2026-03-13 04:52:19 +01:00
parent 8fe452029f
commit 4bc8f15f38
8 changed files with 590 additions and 9 deletions

View File

@@ -209,7 +209,7 @@ Extended thinking is a deliberate, step-by-step reasoning process where Claude:
**Automatic activation**:
- Enabled by default for all models (Opus 4.6, Sonnet 4.6, Haiku 4.5)
- Opus 4.6: Adaptive reasoning with effort levels (low/medium/high)
- Opus 4.6: Adaptive reasoning with effort levels: low (○), medium (◐), high (●)
- Other models: Fixed budget up to 31,999 tokens
**Configuration methods**:
@@ -223,7 +223,7 @@ export MAX_THINKING_TOKENS=1024
**Effort level** (Opus 4.6 only):
```bash
export CLAUDE_CODE_EFFORT_LEVEL=high # low, medium, or high
export CLAUDE_CODE_EFFORT_LEVEL=high # low (○), medium (◐), or high (●)
```
> **Note:** Words like "think" or "ultrathink" in prompts are interpreted as regular prompt instructions, not special keywords or triggers.
@@ -314,7 +314,7 @@ Extended thinking is controlled via environment variables and keyboard shortcuts
# Set thinking token budget
export MAX_THINKING_TOKENS=16000
# Set effort level (Opus 4.6 only)
# Set effort level (Opus 4.6 only): low (○), medium (◐), or high (●)
export CLAUDE_CODE_EFFORT_LEVEL=high
```