The claude-code topic in knowctl-topics tracks 57 documentation pages scraped from code.claude.com/docs/en/. Created 2026-02-20, with 5 subsequent commits over ~22 hours. Of those, 3 contain meaningful content changes, 1 was pure frontmatter noise, and 1 was housekeeping.
The changelog file (
code.claude.com-docs-en-changelog.md) is a raw GitHub HTML page. Its diffs consist entirely of rotating CSRF tokens and asset hashes -- excluded from all change sets below.
Commit: 590f2fc6 | Date: 2026-02-20 15:59 EST
57 documents added. Full scrape of the Claude Code documentation site:
agent-teams, amazon-bedrock, analytics, authentication, best-practices, changelog, checkpointing, chrome, claude-code-on-the-web, cli-reference, common-workflows, costs, data-usage, desktop-quickstart, desktop, devcontainer, discover-plugins, fast-mode, features-overview, github-actions, gitlab-ci-cd, google-vertex-ai, headless, hooks-guide, hooks, how-claude-code-works, interactive-mode, jetbrains, keybindings, legal-and-compliance, llm-gateway, mcp, memory, microsoft-foundry, model-config, monitoring-usage, network-config, output-styles, overview, permissions, plugin-marketplaces, plugins-reference, plugins, quickstart, sandboxing, security, server-managed-settings, settings, setup, skills, slack, statusline, sub-agents, terminal-config, third-party-integrations, troubleshooting, vs-code
Commit: f4b58b00 | Date: 2026-02-20 19:37 EST | 4 files with real changes
- Added "live app preview, GitHub PR monitoring with auto-merge" to feature list; removed "file attachments"
- Permission mode renames: "Ask mode" -> "Ask permissions mode", "Code mode" -> "Auto accept edits"
- Windows ARM64: removed limitation about not supporting local sessions
- SSH sessions: "Claude runs on the remote machine with access to its files and tools" -> "Claude Code must be installed on the remote machine"
- Model link:
/en/overview#models->/en/model-config#available-models - New tips: "Preview your app" (dev server preview), "Track your pull request" (CI monitoring with auto-fix/auto-merge)
Permission mode renames throughout: "Ask" -> "Ask permissions", "Code" -> "Auto accept edits", "Plan" -> "Plan mode", "Act" -> "Bypass permissions"
New sections added:
- Preview your app -- Embedded browser for dev server preview, auto-verify changes, screenshot/DOM inspection
- Review your code -- "Review code" button in diff view for automated code review
- Monitor pull request status -- CI status bar, auto-fix failing checks, auto-merge with squash
- Configure preview servers -- Full
.claude/launch.jsonreference with fields, port conflict handling, tab examples for Next.js, multiple servers, and Node.js scripts
Other changes:
- Windows ARM64: "do not support local sessions" -> "fully supported"
- Compact command: "type 'compact this conversation'" -> "type
/compact" - Extended thinking: added note about Opus ignoring MAX_THINKING_TOKENS except for 0
- Enterprise settings: added
allowManagedPermissionRulesOnlyandallowManagedHooksOnlyreferences
- Fixed duplicated
theme={null} theme={null}to singletheme={null} - "Learn more about the desktop app" link:
/en/desktop#get-started->/en/desktop-quickstart
Commit: fb0dad0b | Date: 2026-02-21 01:37 EST | 2 files with real changes
- Added
(-w)shorthand notation to--worktreedescription - Examples changed from short form to long form:
claude -w feature-auth->claude --worktree feature-auth
Commit: d41ab834 | Date: 2026-02-21 07:38 EST
All 57 files had only fetched: timestamp updates. No documentation content changed.
Commit: 43a92670 | Date: 2026-02-21 13:38 EST | 9 files with real changes
- New command:
claude agents-- "List all configured subagents, grouped by source"
Two new subsections:
- Subagent worktrees -- Subagents can use worktree isolation to work in parallel. Configure
isolation: worktreein custom subagent frontmatter. Auto-cleanup on finish. - Non-git version control -- Worktree isolation works with git by default. For SVN, Perforce, Mercurial, etc., configure
WorktreeCreateandWorktreeRemovehooks.
- Two new hook events:
WorktreeCreate(replaces default git worktree behavior for non-git VCS, must print path to stdout) andWorktreeRemove(cleanup counterpart, fires on session exit or subagent finish) - Matcher table: added
ConfigChangerow with configuration source matchers - New section: WorktreeCreate -- Full documentation with SVN checkout example, input schema, output requirements
- New section: WorktreeRemove -- Cleanup documentation with
jq -r .worktree_path | xargs rm -rfexample - Hook type support reorganized into two clear lists (events supporting all types vs command-only)
- Agent hooks (
type: "agent") documented alongside prompt hooks
- Removed default model tier table; replaced with anchor link to
#default-model-setting - Example model: "Sonnet 4.5" -> "Sonnet 4.6"
- New: "To disable 1M context entirely, set
CLAUDE_CODE_DISABLE_1M_CONTEXT=1"
- New environment variable:
CLAUDE_CODE_DISABLE_1M_CONTEXT-- "Set to1to disable 1M context window support. Useful for enterprise environments with compliance requirements" - Variables reordered alphabetically
- New: "To list all configured subagents from the command line, run
claude agents. Shows agents grouped by source and indicates which are overridden."
| # | Date | Files Changed | Nature |
|---|---|---|---|
| 1 | Feb 20 15:59 | 58 added | Initial import |
| 2 | Feb 20 19:37 | 3 modified | Desktop rewrite (preview, PR monitoring, permission renames) |
| 3 | Feb 21 01:37 | 2 modified | Worktree flag notation |
| 4 | Feb 21 07:38 | 0 | Frontmatter-only (no content changes) |
| 5 | Feb 21 13:38 | 7 modified | WorktreeCreate/Remove hooks, claude agents command, 1M context disable |