Changelog
All notable changes to the Claude Commands Library.
[5.2.0] - May 2026
Real Claude Code subagents migration. Multi-agent research is now backed by actual Anthropic subagent infrastructure (isolated context per specialist, per-agent model routing, Task tool invocation), not prose simulation.
Added
- 5 real subagents in
.claude/agents/—research-explore(haiku, blue),research-pattern(haiku, green),research-security(sonnet, red),research-performance(sonnet, orange),research-citation(haiku, purple). Each carries valid Anthropic YAML frontmatter (name, description, tools, model, color) and a focused system-prompt body. See Anthropic frontmatter spec. tests/validate-subagent-invocation.ps1— verifies every@research-Xmention inprompt-research/SKILL.mdresolves to a real agent file, and every agent file is mentioned in the orchestrator skill.tests/validate-no-aspirational-config.ps1— verifies every top-level JSON config key has a live consumer (advisory).docs/V5.2-PREFLIGHT.md— full migration plan that gated Phase B.
Changed
prompt-research/SKILL.md— Specialist Selection Rules section, Orchestration Flow rewritten as explicit Task-tool invocation pattern per Anthropic parallel research guidance, Performance Expectations inline, Aggregation step appends citation index entries from main thread (subagents are read-only).research-adapter.mddebloated 2 411 → 627 words. Kept only Phase 0 research-specific add-ons (complexity scoring, strategy selection, Step 4/5 overrides, performance expectations). Removed Integration Wiring (lives in SKILL), Configuration References (skill reads configs directly), Error Handling (Anthropic default + auto-compaction), Version History (CHANGELOG-skills.md), Related Components.caching-strategy.md— Subagents-and-caching note added (separate cache lifecycle; do not list subagent files in main sessioncache_controlblocks).- Installer v5.1.0 → v5.2.0 — deploys
.claude/agents/; verifies all 5 expected research subagents present; v5.2 announcement block. validate-library-references.ps1v1.2 → v1.3 — adds Suite 6 (subagent existence) and Suite 7 (frontmatter validation).
Removed
library/research-agent-{explore,pattern,security,performance, citation}.md(5 files, ~6 000 words; content migrated to.claude/agents/).config/agent-roles.json(408 lines): per-agent metadata distributed to subagent frontmatter, body content, and skill orchestration; all aspirational fields (timeout_seconds, performance., error_handling., parallel_execution., agent_integration., metadata.*) dropped.
Tools narrowing
- Bash removed from
research-exploreandresearch-securityallowlists. Read-only research is fully served by Read + Grep + Glob; Bash widened attack surface unnecessarily. - Glob added to
research-securityandresearch-performancefor pattern-based file enumeration without resorting to Bash.
Anthropic alignment
"Subagents cannot spawn other subagents. If your workflow requires nested delegation, use Skills or chain subagents from the main conversation."
— Anthropic subagent docs
This is why orchestration (iteration loop, gap analysis, citation index persistence, aggregation) lives in prompt-research/SKILL.md (main thread), not in any subagent.
[5.0.0] - May 2026
Added
- Session Memory —
PreCompacthook writes a diary entry to.claude/memory/diary/YYYY-MM-DD-session-N.mdbefore every compaction. Captures task summary, design decisions (with WHY), challenges, solutions, and observed user preferences. Per-project; never committed. /reflect-diaryskill — reads accumulated diary entries, identifies patterns (2+ occurrences), and proposes updates toproject-profile.md. Nothing is applied without explicit user approval.- Global hook installer —
install-claude-commands.ps1now deployspre-compact.shto~/.claude/hooks/and registers thePreCompactevent in~/.claude/settings.jsonon any machine.
Removed
- 8 commands/skills deleted:
/prompt-hybrid,/prompt-technical,/prompt-article,/prompt-dotnet,/prompt-react,/deploy,/new-stack,/reflect - 5 config files deleted:
cache-config.json,verification-config.json,learning-config.json,predictive-intelligence.json,ai-fluency.json - Library subdirectories flattened:
adapters/,intelligence/,agents/,orchestration/— all files moved tolibrary/root
Changed
- Skills-only format — all three commands live in
.claude/skills/with YAML frontmatter;.claude/commands/directory removed - Library flat structure — 14 files at
library/root:prompt-perfection-core.md,readme-adapter.md,research-adapter.md,caching-strategy.md,model-router.md,execution-plan-template.md, orchestration files, research agent files install-claude-commands.ps1— v5.0.0: removescommands/on upgrade, checks 3 skills, deployshooks/directory, addsInstall-GlobalHookfunctionREADME.mdrewritten — 70 lines, honest 3-command description + Session memory sectionCLAUDE.mdupdated — v5.0.0, 3-command table, flat library architecturepackage.jsonversion 5.0.0.claude/skills/now includesreflect-diary/SKILL.md.claude/hooks/pre-compact.shadded as reference copy in repo
Kept
/prompt,/prompt-article-readme,/prompt-research— all maintained- Phase 0 shared foundation (
prompt-perfection-core.md) - Interaction Protocol from v4.8 (global, CLAUDE.md)
- Memory system (project-profile.md, sessions.md, prompt-patterns.md)
- All VitePress documentation (updated to reflect 3-command scope)
Why
Repo had grown to 11 commands, most untested and unused in practice. Reduced to the three that are actually run regularly.
[4.9.0] - April 2026
Added
- Opus 4.7 Optimisation — token + context savings targeted at
claude-opus-4-7. Seven additive changes:- Prompt caching strategy (
.claude/library/caching-strategy.md) withcache_control: ephemeralbreakpoints. ~90% input cost reduction on warm cache hits (5m default, 1h beta). - Fast Path in Phase 0 — trivial prompts (score < 5) short-circuit to Steps 0.1 → 0.5 → 0.6. Saves ~40% Phase 0 tokens.
- Model tier split —
opus→opus-fast(4.6, 200K ctx, 4K thinking) vsopus-smart(4.7, 1M ctx beta, 8K thinking, interleaved thinking beta). Router picks on depth-vs-latency. - Per-tier thinking budget — haiku 0 / sonnet 2K / opus-fast 4K / opus-smart 8K in
model-tiers.json. - Context-editing adapter —
clear_tool_uses_20250919for/prompt-researchmulti-iteration loops. - Memory-tool adapter — bridge to native
memory_20250818with Phase A/B/C/D progressive migration. - Consolidated CHANGELOG-skills.md — Version History deduped across seven skills (~5K tokens saved per skill load).
- Batch API hint in
/reflect(50% cost on SDK-driven runs).
- Prompt caching strategy (
Changed
prompt-perfection-core.mdv2.1 → v2.2 (Fast Path; Mermaid → text)model-router.mdv1.0 → v2.0 (smart vs fast decision)model-tiers.jsonv1.0 → v2.0 (opus split; caching; thinking modes)- All seven skills: Version History → CHANGELOG-skills.md pointer
install-claude-commands.ps1v4.8.0 → v4.9.0
Notes
- Backward compatible: legacy "opus" hints resolve to
opus-smart - Adapters are opt-in; they document strategy for SDK integration
[4.8.0] - April 2026
Added
- Interaction Protocol in
CLAUDE.md— global session-level directive that applies to ALL interactions, not just/prompt*slash commands - Four rules enforced globally:
- Language — user píše po slovensky; Claude odpovedá po slovensky; tool calls / commits / code / docs v angličtine; technické termíny verbatim
- Plan-First Execution — pred akoukoľvek zmenou: summary + 2-3 options (pre non-trivial tasks) + execution plan + explicit approval
- Proactive Option-Finding — Claude actively navrhuje lepšie cesty PRED exekúciou; pomenuje tradeoff, odporúča, rozhodnutie user-a
- Never Auto-Execute — žiadne
git commit,git push,npm install, installer runs bez explicitného súhlasu
- New documentation page
/guide/interaction-protocolcovering the rules, rationale, exceptions, and worked examples - v4.8 What's New card on the docs home feature grid
- Sidebar entry "Protocols > Interaction Protocol (v4.8)" under
/guide/
Changed
CLAUDE.md: project version v4.7.0 → v4.8.0; Skills promoted to PRIMARY in the architecture section (was grouped with legacy commands)install-claude-commands.ps1: v4.7.0 → v4.8.0 with new feature announcement block listing the four protocol rules.claude/memory/MEMORY.md: updated to reflect v4.8.0
Rationale
Previously, plan-first discipline (Curiosity Gate, Options-First, Execution Plan, Approval Gate) lived only inside /prompt* skills. Normal conversation bypassed it — leading to unwanted auto-execution and token waste when assumptions were wrong. v4.8 fixes the root cause: CLAUDE.md is loaded into every session automatically, so the same discipline applies everywhere.
Migration
No breaking changes. Existing skills and commands continue to work. Users will notice Claude now asks for approval more consistently in free-form chat tasks (not only inside /prompt).
[4.7.0] - April 2026
Added
- Dynamic model routing — new config
model-tiers.jsonmaps prompt types, complexity scores, and file counts to the best Claude tier (haiku / sonnet / opus) - Model Router (
library/model-router.md) — decision algorithm used by every skill: hard de-escalation, hard escalation, by complexity score, by prompt type, by file count. Each skill emits aMODEL HINTline before the approval gate - Execution Plan Template (
library/execution-plan-template.md) — mandatory pre-approval plan: Goal, Files, Steps, Tools, MODEL HINT, Risks, Verification, Estimated effort, Assumptions - Step 0.25 Curiosity Gate in Phase 0 — confidence score 0-100 + mandatory assumption ledger when confidence < 100%. Forces explicit uncertainty accounting
- Step 0.35 Options-First — 2-3 alternatives shown BY DEFAULT for Task/Feature/Bug Fix/Refactor/Config (was "only when multiple exist"). Each option carries model tier + cost estimate
- Step 0.55 Execution Plan + Model Selection — mandatory block before approval for all non-Question prompts
- Approval gate:
switch [tier]response — request a model change before approving, then re-approve
Changed
prompt-perfection-core.md: v2.0 → v2.1 (new steps, updated flowchart)skills/prompt/SKILL.md: v4.0 → v4.1skills/prompt-hybrid/SKILL.md: v4.0 → v4.1skills/prompt-dotnet,prompt-react,reflect,deploy,new-stack: v2.0 → v2.1- Legacy commands: Phase 0 v2.1 Add-ons block added
- Installer: v4.6.0 → v4.7.0, verifies all new library files + 7 skills
Performance
- Estimated token savings: 30-45% via Haiku default for simple tasks
- Clearer execution plans reduce re-prompting iterations
Upgrade Guide (4.6 → 4.7)
No breaking changes. Skills are backward compatible. Run the installer:
.\install-claude-commands.ps1Or update an existing installation:
.\install-claude-commands.ps1 -Force[4.6.0] - April 2026
Added
- Anti-Hallucination Contract in
prompt-perfection-core.mdv2.0- NEVER rules: prohibit inventing file paths, versions, config keys
- ALWAYS rules: require grounding every fact to a source file
- Grounding Protocol: map each stated fact to the file it was read from
- HARD-GATE blocks in all 7 skills (prompt, prompt-hybrid, prompt-dotnet, prompt-react, reflect, deploy, new-stack)
- Each skill now has a pre-flight checklist that must pass before output
- Skill-specific checks (e.g.
.csprojmust be read before .NET facts)
- NEVER sections in every skill — explicit per-domain hallucination prohibitions
- Mermaid flowchart for Phase 0 flow in core library
- Chain-of-Thought REASONING block required in Step 0.1 output
- Few-shot examples in
/promptand/prompt-hybrid— correct vs incorrect output - Version history sections added to all skills that were missing them
Changed
prompt-perfection-core.md: v1.6 → v2.0skills/prompt/SKILL.md: v3.0 → v4.0skills/prompt-hybrid/SKILL.md: v3.0 → v4.0- All other skills: v1.0 → v2.0
- Installer: v4.5.0 → v4.6.0, skills/ directory now verified, skills count shown in summary
Fixed
/promptSTARTUP template: removed hardcoded versionv4.5.0— now reads fromproject-profile.md
Upgrade Guide (4.5 → 4.6)
No breaking changes. Skills are backward compatible. Run the installer to get the latest version:
.\install-claude-commands.ps1[4.5.0] - March 2026
Removed
/session-startand/session-end— deleted (both skills and old commands/ format)- Replaced by Claude Code's built-in auto-memory system (
~/.claude/projects/.../memory/) - Auto-memory loads context into every conversation automatically without a command
session-adapter.mdlibrary file also removed (orphaned after deletion)
- Replaced by Claude Code's built-in auto-memory system (
Changed
Universal skills — all project-specific hardcoded values removed from all skills
/deployand/new-stack: removedlab463-web,linkvault-internal,postgresql-dbhardcodes- All server config now read dynamically from
~/.claude/memory/personal-profile.md personal-profile.mdnow requires:POSTGRES_CONTAINER,FRONTEND_NGINX_CONTAINER/new-stackDocker network references use[POSTGRES_STACK]-internal(dynamic)/new-stackDockerfile .NET version now detected from.csprojTargetFramework/prompt-hybridcontext display: reads fromproject-profile.md, no hardcoded project facts/prompt-hybridthreshold corrected: Very High is 20+ (was 15+, mismatched CLAUDE.md)/prompt-dotnetbest practices header: version-agnostic (was ".NET 10")/prompt-dotnetQuick Reference: version-agnostic (was ".NET 10 Quick Reference")
/deploy: safer defaults- Default output is now
copy(show script) — was ambiguous between copy and execute - Explicit guard: commands are NOT auto-executed without
runconfirmation - DB migrations detection added to Phase 1 pre-deploy checks (was a footnote)
- Default output is now
/reflect: scope and quality limits- Steps 2+3 merged (removed duplication)
- Max 5 observations per session
- Priority field added to each observation
- Grouped approval (HIGH/MEDIUM) replaces per-item yes/no loop
Fixed
/prompt-dotnet: scan fallback when.csprojnot found (3 options presented to user)/prompt-react: scan fallback whenpackage.jsonnot found; monorepo support (searchesfrontend/,client/,web/,app/subdirectories before failing)/session-start: removed hardcoded versionv4.2.0and hardcoded stack info/session-end: context limit warning added; sessions.md trimmed to max 10 entries; pattern detection scoped to current session only (no cross-session inference)- Installer: removed "private repository" error message (repo is public)
- CLAUDE.md: commands table updated — removed session commands, added
/deployand/new-stack
Upgrade Guide (4.4 → 4.5)
/session-start and /session-end no longer exist. If you relied on them:
- Context is now auto-loaded via Claude Code's built-in memory system
- Historical
sessions.mddata is preserved (not deleted by installer)
.\install-claude-commands.ps1[4.4.0] - March 2026
Added
/prompt-dotnet- .NET project-aware prompt perfection skill- Scans
.csproj,Program.cs,appsettings.json,Dockerfile,docker-compose.yml - Auto-detects: TargetFramework, architecture (Minimal API vs Controllers), auth, ORM, DB, Docker
- Applies .NET 10 best practices automatically based on detected stack (EF Core, PostgreSQL, JWT, CORS)
- Presents recommendations consistent with existing project patterns
- Related commands:
/prompt-react,/deploy
- Scans
/prompt-react- React project-aware prompt perfection skill- Scans
package.json,vite.config.ts,tsconfig.json,src/structure,.env - Auto-detects: React version, TypeScript strict mode, router, state management, data fetching, base path
- Applies React best practices automatically (hooks, TS types, TanStack Query, Vite env vars, SPA subpath)
- Presents recommendations consistent with existing project patterns
- Related commands:
/prompt-dotnet,/deploy
- Scans
Fixed
- Installer critical bug -
skills/directory was listed in$obsoleteDirsand was deleted on every updateskills/removed from$obsoleteDirs, added to$directoriesToDeploy- All skills (prompt-dotnet, prompt-react, deploy, new-stack, etc.) now survive updates
Upgrade Guide (4.3 → 4.4)
No breaking changes. Two new skills added.
.\install-claude-commands.ps1[4.3.0] - March 2026
Added
Skills Format - Commands migrated to new
.claude/skills/format- YAML frontmatter:
name,description,disable-model-invocation,argument-hint descriptionfield enables Claude to auto-invoke skills when contextually relevantdisable-model-invocation: trueon workflow commands (session-start, session-end, reflect)- New skills:
prompt/SKILL.md,prompt-hybrid/SKILL.md,session-start/SKILL.md,session-end/SKILL.md,reflect/SKILL.md - Old
.claude/commands/files still work unchanged (backward compatible)
- YAML frontmatter:
STARTUP Section in all prompt skills - Project context loaded before any analysis
- Reads
project-profile.md,sessions.md,prompt-patterns.mdon every invocation - Shows "CONTEXT LOADED" summary so user sees what is pre-filled
- Eliminates repeated context questions across sessions
- Reads
project-profile.md v2.0 - Populated with real project data
- Previously contained only empty section headers
- Now includes: project identity, full tech stack, infrastructure, project structure, command list, architecture overview, user preferences, workflows, known gotchas
- All Phase 0 commands immediately benefit via Step 0.2a Memory Recall
Auto Memory (
~/.claude/projects/.../memory/MEMORY.md)- Created MEMORY.md with project key facts for new session bootstrapping
- Follows Claude Code native auto-memory format (first 200 lines loaded per session)
Changed
prompt-perfection-core.md → v1.6
- Step 0.2a renamed to "ALWAYS LOAD FIRST" with stronger emphasis
- Now reads three memory sources: project-profile.md + sessions.md + prompt-patterns.md
- Shows "CONTEXT LOADED" brief summary on every invocation
- Backward compatible: still works without any memory files
CLAUDE.md - Memory Recall section updated
- References now-populated project-profile.md v2.0
- Lists all three memory files to check before asking questions
- Documents
.claude/skills/as new preferred format
session-end skill - Now includes check for project-profile.md updates
- After each session, checks if new permanent facts should be added to profile
- Ensures project-profile.md stays current with project evolution
Improved
- Commands no longer ask for project context the user has already provided
- Skills with
descriptionfield are suggested by Claude when contextually relevant - Session continuity improved through richer memory loading at startup
Upgrade Guide (4.2 → 4.3)
No breaking changes. New .claude/skills/ directory works alongside existing .claude/commands/.
# Optional: re-run installer to get latest files
.\install-claude-commands.ps1[4.2.0] - February 2026
Added
Memory Recall System
- New
.claude/memory/project-profile.mdstructured fact store - Phase 0 Step 0.2a reads profile before completeness check
- Pre-fills known facts with "(from project profile)" attribution
- Step 0.3 skips questions already answered by profile
- First-use opt-in prompt for profile creation
- New
Profile Extraction in
/session-end(v3.0)- New Step 1.5 extracts structured facts from session
- Categories: Infrastructure, Tech Stack, Deployment, Project Structure, User Preferences, Workflows
- Merges without duplicating existing facts
- Shows extraction summary
Memory Recall in CLAUDE.md
- Root CLAUDE.md instructs Claude to check profile for all interactions
- Works outside slash commands too
Changed
project-knowledge.mdslimmed from 440 to ~40 lines (headers only, grows on use)architectural-context.mdslimmed from 653 to ~45 lines (headers only, grows on use)- Installer (v4.2.0) now deploys new memory files on update without overwriting existing ones
- Installer deploys all memory templates on fresh install
Improved
- All Phase 0 commands gain memory recall automatically (no individual command changes needed)
- Fewer repeat questions across sessions
[4.1.0] - January 2026
Added
AI Fluency Framework Integration (Anthropic's 4Ds Model)
- Delegation Assessment - Explicit human vs AI task distribution
- Problem Awareness (goal clarity, scope definition, success criteria)
- Platform Awareness (AI capabilities matching)
- Task Delegation (autonomous, review, collaborative, human-only modes)
- Interaction Mode Detection - Automation, Augmentation, or Agency modes
- Performance Description - AI behavior preferences (concise/detailed, formal/casual)
- Discernment Hints - Product, Process, and Performance evaluation criteria
- Diligence Summary - Track AI-generated content requiring verification
- New configuration:
.claude/config/ai-fluency.json
- Delegation Assessment - Explicit human vs AI task distribution
Skill Reflection System (
/reflect)- Analyze conversations and propose skill improvements
- Signal detection: corrections, successes, edge cases, preferences
- Priority-coded change proposals (HIGH/MED/LOW)
- Direct skill file modifications with user approval
- Observation persistence for later review
- Integration with learning system
Improved
- Phase 0 completeness check expanded from 6 to 9 criteria
- Learning system now tracks reflection signals
- Better integration between commands
/session-endnow includes Diligence Summary section
[4.0.0] - January 2026
Added
Predictive Intelligence (Phase 0.15)
- Journey stage detection (6 stages)
- Proactive domain warnings
- Pattern recognition
- Relationship mapping to previous work
- Next-steps prediction with scope options
- Smart scoping (Focused/Balanced/Comprehensive)
Configuration files
predictive-intelligence.jsonfor Phase 0.15- Enhanced
learning-config.json
Changed
/promptnow includes LITE predictive intelligence/prompt-hybridincludes FULL predictive intelligence- Improved complexity detection accuracy
Documentation
- VitePress documentation site launched
- Comprehensive architecture documentation
- Full configuration reference
[3.0.0] - December 2025
Added
Multi-Agent Research System (
/prompt-research)- 2-5 specialized agents working in parallel
- 2-4 iteration cycles with gap-driven refinement
- Lead agent orchestration
- Consensus analysis and conflict resolution
External Memory
- Persistent knowledge graph
- Research history tracking
- Cross-session relationship mapping
New Configuration Files
orchestration-config.json- Research strategiesiteration-rules.json- Convergence criteriaagent-roles.json- Agent definitionscitation-config.json- Citation formattingexternal-memory-config.json- Memory persistence
Changed
- Agent result caching now includes iteration checkpoints
- Learning system tracks agent effectiveness
- Improved multi-agent verification
[2.0.0] - November 2025
Added
Hybrid Intelligence System
- Automatic complexity detection
- Intelligent agent spawning
- Configurable thresholds
Agent Types
- Explore Agent (Haiku, 30s)
- Plan Agent (Sonnet, 60s)
- Security Agent (Sonnet, 45s)
- Performance Agent (Sonnet, 45s)
- Pattern Agent (Haiku, 30s)
Caching System
- Content-based cache keys
- Automatic invalidation
- 10-20x speedup on cache hits
Learning System
- Pattern tracking
- User preference detection
- Smart defaults after 3+ occurrences
Multi-Agent Verification
- 2-3 agents parallel verification
- Consensus analysis
- Conflict detection
Configuration Files
complexity-rules.jsonagent-templates.jsoncache-config.jsonverification-config.jsonlearning-config.json
Changed
- All commands now use library system
/prompt-hybridreplaces manual complexity selection/prompt-technicalauto-spawns agents for complex tasks
[1.0.0] - October 2025
Added
Core Commands
/prompt- Basic prompt perfection/prompt-technical- Technical implementation focus/prompt-article- Article writing wizard/prompt-article-readme- README generator/session-start- Load session context/session-end- Save session context
Library Architecture
prompt-perfection-core.md- Canonical Phase 0- Adapter system for domain customization
- Centralized library for consistency
Phase 0 System
- 6-step prompt perfection flow
- Completeness check (6 criteria)
- Clarification questions
- Approval gate
Session Management
- Session persistence in
.claude/memory/ - Context aggregation
- Cross-session continuity
- Session persistence in
Version History Summary
| Version | Date | Highlight |
|---|---|---|
| 4.4 | Mar 2026 | .NET + React Project-Aware Skills |
| 4.3 | Mar 2026 | Skills Format + Project-Aware Commands |
| 4.2 | Feb 2026 | Memory Recall System |
| 4.1 | Jan 2026 | Skill Reflection System |
| 4.0 | Jan 2026 | Predictive Intelligence |
| 3.0 | Dec 2025 | Multi-Agent Research |
| 2.0 | Nov 2025 | Hybrid Intelligence |
| 1.0 | Oct 2025 | Initial Release |
Upgrade Guide
From 4.1 to 4.2
Re-run installer:
powershell.\install-claude-commands.ps1The installer automatically adds new
project-profile.mdto your memory directoryAll existing commands work unchanged - memory recall activates on first use
From 3.x to 4.x
Update library files:
powershell.\install-claude-commands.ps1Add new config file:
- Copy
predictive-intelligence.jsonto.claude/config/
- Copy
Existing commands work unchanged
From 2.x to 3.x
Re-run installer:
powershell.\install-claude-commands.ps1Add new config files:
orchestration-config.jsoniteration-rules.jsonagent-roles.jsoncitation-config.jsonexternal-memory-config.json
Create memory directories:
powershellNew-Item -ItemType Directory -Path .claude/memory -Force
From 1.x to 2.x
Back up memory files:
powershellCopy-Item .claude/memory/* ./memory-backup/Re-run installer:
powershell.\install-claude-commands.ps1Add configuration files from defaults
Restore memory:
powershellCopy-Item ./memory-backup/* .claude/memory/
Backward Compatibility
All versions maintain backward compatibility:
- v1.0 commands work in v4.2
- Configuration is additive (new files, not breaking changes)
- Memory files persist across upgrades
- Project profile is opt-in (commands work without it)
Deprecation Notices
Planned for v5.0
- None currently planned
Removed in v4.0
- None (all features maintained)
Related
- Installation - Latest install instructions
- Configuration - All config options
- Troubleshooting - Common issues