catlog22
f1c89127dc
chore: release v5.2.1 - SKILL workflow improvements
...
Major Changes:
- Redesigned /memory:load-skill-memory as manual activation tool
- Changed --regenerate to --update flag in skill-memory command
- Enhanced context search strategy with SKILL first priority
Details:
1. load-skill-memory command redesign:
- Manual activation: user specifies SKILL name explicitly
- Intent-driven doc loading: 5 levels based on task description
- Memory-based validation: removed bash checks
- File size: 355→132 lines (-62.8%)
2. Parameter naming consistency:
- Renamed --regenerate to --update in skill-memory.md
- Updated all references and examples
3. Context search strategy (global .claude):
- Added SKILL packages as first priority tool
- Emphasized use BEFORE Gemini analysis
- Updated tool selection matrix and examples
See CHANGELOG.md for complete details.
2025-11-03 22:07:09 +08:00
catlog22
8926611964
refactor: update load-skill-memory command to manual activation and intent-driven loading
2025-11-03 21:55:22 +08:00
catlog22
8a9bc7a210
refactor: optimize load-skill-memory structure and remove emojis
...
- Merge duplicate content: consolidate Sections 4, 6, 7, 9, 10
- Reduce file size from 382 to 348 lines (-8.9%)
- Remove all emoji icons, replace with text alternatives
- Improve section flow: 8 sections total (was 11)
- Preserve all information while eliminating redundancy
2025-11-03 21:38:42 +08:00
catlog22
25a358b729
feat: implement dynamic SKILL discovery with intelligent matching
...
Transform load-skill-memory from manual specification to automatic discovery:
**Core Change**:
- From: User specifies SKILL name manually
- To: System automatically discovers and matches SKILL based on task context
**New Capabilities**:
1. **Three-Step Execution**:
- Step 1: Discover all available SKILLs (.claude/skills/)
- Step 2: Match most relevant SKILL using scoring algorithm
- Step 3: Activate matched SKILL via Skill() tool
2. **Intelligent Matching Algorithm**:
- **Path-Based** (Highest Priority): Direct path match from file paths
- **Keyword Matching** (Secondary): Score by keyword overlap
- **Action Matching** (Tertiary): Detect action verbs (分析/修改/学习)
3. **Updated Parameters**:
- From: `<skill_name> [--level] [task description]`
- To: `"task description or file path"`
- More intuitive user experience
4. **New Examples**:
```bash
/memory:load-skill-memory "分析热模型builder pattern实现"
/memory:load-skill-memory "D:\dongdiankaifa9\hydro_generator_module\builders\base.py"
/memory:load-skill-memory "修改workflow文档生成逻辑"
```
**Matching Examples**:
Task: "分析热模型builder pattern实现"
- hydro_generator_module: 4 points (thermal+builder+analyzing) ✅
- Claude_dms3: 1 point (analyzing only)
Task: "D:\dongdiankaifa9\hydro_generator_module\builders\base.py"
- Path match: hydro_generator_module ✅ (exact path)
**Benefits**:
- No manual SKILL name required
- Automatic best match selection
- Path-based intelligent routing
- Keyword scoring for relevance
- Action verb detection for context
**User Experience**:
Before: "/memory:load-skill-memory hydro_generator_module '分析热模型'"
After: "/memory:load-skill-memory '分析热模型实现'"
System automatically discovers and activates hydro_generator_module SKILL.
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-11-03 21:31:06 +08:00
catlog22
9e0a70150a
refactor: redesign load-skill-memory to use Skill tool activation
...
Complete redesign from manual document reading to SKILL activation pattern:
**Before (Manual Loading)**:
- Complex level selection logic (0-3)
- Manual Read operations for each document
- Task-based auto-level selection
- ~200 lines of document loading code
**After (Skill Activation)**:
- Simple two-step: Validate → Activate
- Use Skill(command: "skill_name") tool
- System handles all documentation loading automatically
- ~100 lines simpler, more maintainable
**Key Changes**:
1. **Examples Updated**:
- From: `/memory:load-skill-memory hydro_generator_module "分析热模型"`
- To: `Skill(command: "hydro_generator_module")`
2. **Execution Flow Simplified**:
- Step 1: Validate SKILL.md exists
- Step 2: Skill(command: "skill_name")
- System automatically handles progressive loading
3. **Removed Manual Logic**:
- No explicit --level parameter
- No manual document reading
- No level selection algorithm
- System determines context needs automatically
4. **Added SKILL Trigger Mechanism**:
- Explains how SKILL description triggers work
- Keyword matching (domain terms)
- Action detection (analyzing, modifying, learning)
- Memory gap detection
- Path-based triggering
5. **Updated Integration Examples**:
```javascript
Skill(command: "hydro_generator_module")
SlashCommand(command: "/workflow:plan \"task\"")
```
**Benefits**:
- Simpler user experience (just activate SKILL)
- Automatic context optimization
- System handles complexity
- Follows Claude SKILL architecture
- Leverages built-in SKILL trigger patterns
**Philosophy Shift**:
- From: Manual control over documentation loading
- To: Trust SKILL system to load appropriate context
- Aligns with skill-memory.md description optimization
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-11-03 21:26:52 +08:00
catlog22
7b2160d51f
feat: add /memory:load-skill-memory command for progressive SKILL loading
...
New command for loading SKILL package documentation with intelligent level selection:
**Two-Step Process**:
1. Validate SKILL existence in .claude/skills/{skill_name}/
2. Load documentation based on task requirements and complexity
**Progressive Loading Levels**:
- Level 0: Quick Start (~2K tokens) - Overview exploration
- Level 1: Core Modules (~10K tokens) - Module analysis
- Level 2: Complete (~25K tokens) - Code modification
- Level 3: Deep Dive (~40K tokens) - Feature implementation
**Auto-Level Selection**:
- Keyword-based detection from task description
- "快速了解" → Level 0
- "分析" → Level 1
- "修改" → Level 2
- "实现" → Level 3
**Key Features**:
- SKILL existence validation with available SKILLs listing
- Task-driven level auto-selection
- Token budget estimation
- Error handling for missing SKILLs/documentation
- Explicit --level override support
**Usage Examples**:
```bash
/memory:load-skill-memory hydro_generator_module "分析热模型"
/memory:load-skill-memory Claude_dms3 --level 2 "修改workflow"
/memory:load-skill-memory multiphysics_network "实现耦合器"
```
**Integration**:
- Works with SKILL packages generated by /memory:skill-memory
- Optimizes token usage through progressive loading
- Supports workflow planning and execution commands
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-11-03 21:10:32 +08:00
catlog22
aa1900a3e7
feat: enhance SKILL description to prioritize context loading when memory is empty
...
Optimize description format to emphasize SKILL as primary context source:
**Key Changes**:
1. Action verbs updated: "working with" → "modifying" (more explicit)
2. Added priority trigger: "especially when no relevant context exists in memory"
3. Expanded Trigger Optimization guidance with three key scenarios
**Three Key Actions**:
- analyzing (分析) - Understanding codebase structure
- modifying (修改) - Making changes to code
- learning (了解) - Exploring unfamiliar modules
**Priority Context Loading**:
- Emphasize SKILL loading when conversation memory lacks relevant context
- Position SKILL as first-choice context source for fresh inquiries
- Improve trigger sensitivity for cold-start scenarios
**Before**:
"Load this SKILL when analyzing, working with, or learning about {domain}
or files under this path for comprehensive context."
**After**:
"Load this SKILL when analyzing, modifying, or learning about {domain}
or files under this path, especially when no relevant context exists in memory."
**Impact**:
- Higher trigger rate when users ask about unfamiliar modules
- Better context initialization for new analysis sessions
- Clearer action vocabulary aligns with actual use cases
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-11-03 21:06:52 +08:00
catlog22
2303699b33
fix: correct description format placeholder from project_name to domain_description
...
Fix inconsistency between Format definition and Example usage:
**Problem**:
- Format used {project_name} placeholder (technical directory name)
- Example used "workflow management" (human-readable domain description)
- Mismatch causes incorrect description generation
**Solution**:
- Changed {project_name} → {domain_description} in format
- Added explicit guidance: "Extract human-readable domain/feature area"
- Added examples: "workflow management", "thermal modeling"
- Clarified: Use domain description, NOT technical project_name
**Impact**:
- Generated descriptions now correctly use domain terms
- Improved trigger sensitivity with natural language
- Consistent with example pattern
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-11-03 21:05:31 +08:00
catlog22
f7a97e8159
feat: add project path to SKILL.md description for location-based triggering
...
Enhance description format to include project path information:
- Add "(located at {project_path})" to description format
- Reference TARGET_PATH from Phase 1 for accurate path
- Include "or files under this path" trigger condition
- Improve sensitivity when users mention specific directories
Benefits:
- SKILL triggers when user asks about files in project directory
- Path-based context identification improves accuracy
- Better integration with file location queries
Before: "{Project} {capabilities}. Load when {scenarios}..."
After: "{Project} {capabilities} (located at {path}). Load when {scenarios} or files under this path..."
Example:
"Workflow orchestration system with CLI tools (located at /d/Claude_dms3).
Load this SKILL when analyzing, working with, or learning about workflow
management or files under this path for comprehensive context."
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-11-03 20:58:45 +08:00
catlog22
360f6f79dc
feat: optimize SKILL.md description format for better trigger sensitivity
...
Enhance description generation in Phase 4 Step 3:
- New format emphasizes "Load this SKILL" pattern for improved triggering
- Explicitly covers three key scenarios: analyzing, working with, or learning
- Prioritizes SKILL as primary context source for project understanding
- Added trigger optimization guidance for context retrieval scenarios
Before: "{Function}. Use when {trigger conditions}."
After: "{Project} {core capabilities}. Load this SKILL when analyzing, working with, or learning about {project_name} for comprehensive context."
Example:
"Workflow orchestration system with CLI tools and documentation generation.
Load this SKILL when analyzing, working with, or learning about workflow
management for comprehensive context."
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-11-03 20:57:09 +08:00
catlog22
152037ad7b
fix: correct relative path in skill-memory SKILL.md template
...
Update documentation path references from ../../ to ../../../:
- From: .claude/skills/{project_name}/SKILL.md
- To: .workflow/docs/{project_name}/
- Correct path depth: ../../../.workflow/docs/
Fixed paths:
- Documentation root reference
- Level 0: README.md link
- Level 2: ARCHITECTURE.md link
- Level 3: EXAMPLES.md link
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-11-03 20:49:16 +08:00
catlog22
822643e4c8
feat: increase document limit from 7 to 10 per task in docs workflow
...
Update task grouping constraints to support up to 10 documents per task:
- Primary constraint: ≤10 documents (up from ≤7)
- Conflict resolution thresholds adjusted accordingly
- Updated all examples (Small/Medium/Large projects)
- Maintains 2-dir grouping optimization for context sharing
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-11-03 20:39:29 +08:00
catlog22
78569a7b75
refactor: eliminate TodoWrite duplication in skill-memory phases
...
Simplify TodoWrite updates in each phase to one-line format, matching auto-parallel.md pattern.
**Changes**:
- Phase 1-4: Replace code block with single line "Mark phase X completed, phase Y in_progress"
- Maintain detailed TodoWrite Pattern section for complete reference
- Remove 32 redundant lines (36 deletions, 4 insertions)
**Before**:
```
**TodoWrite Update**:
```javascript
TodoWrite({todos: [
{"content": "...", "status": "completed"},
{"content": "...", "status": "in_progress"},
...
]})
```
**After**:
```
**TodoWrite**: Mark phase X completed, phase Y in_progress
```
**Benefits**:
- Eliminates duplication between phase updates and TodoWrite Pattern section
- Improves readability with concise phase-level updates
- Maintains complete TodoWrite lifecycle in dedicated pattern section
- Consistent with auto-parallel.md orchestrator pattern
**File size**: 488 lines → 456 lines (-32 lines, -6.6%)
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-11-03 20:08:03 +08:00
catlog22
7aca88104b
feat: enhance skill-memory auto-continue mechanism with detailed execution flow
...
Optimize TodoWrite auto-continuation pattern based on auto-parallel.md and docs.md best practices.
**Enhanced Auto-Continue Mechanism**:
- Added detailed "Auto-Continue Execution Flow" section with implementation rules
- Enhanced Core Rules with specific auto-continue logic (7 rules → clearer guidelines)
- Added "Completion Criteria" for each phase (validates phase success)
- Added explicit "TodoWrite Update" code blocks at each phase
- Added "After Phase X" auto-continue triggers with "no user input required" emphasis
**Improved Phase Documentation**:
- Phase 1-4: Added completion criteria and validation requirements
- Each phase now has explicit TodoWrite update pattern
- Clear state transitions: completed → in_progress → execute
- Error handling rules for failed phases
**New Sections**:
- "Auto-Continue Execution Flow" - Visual execution sequence diagram
- "Critical Implementation Rules" - 4 key rules for autonomous execution
- Status-driven execution pattern with TodoList checking
- Error handling guidelines (do not continue on failure)
**TodoWrite Pattern Enhancement**:
- Added inline comments explaining each action
- Added "Auto-Continue Logic" explanation
- Shows complete lifecycle from initialize to completion
- Includes FIRST/NEXT/FINAL action annotations
**Benefits**:
- Clear autonomous execution expectations
- No ambiguity about when to continue phases
- Explicit validation criteria for each phase
- Better error handling guidance
- Consistent with auto-parallel.md orchestrator pattern
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-11-03 20:02:44 +08:00
catlog22
254715069d
feat: optimize documentation task grouping strategy with document count limit
...
- Change primary constraint to ≤7 documents per task (previously ≤5)
- Prefer grouping 2 top-level directories for context sharing via single Gemini analysis
- Add intelligent conflict resolution: split groups when exceeding doc limit
- Update Phase 4 decomposition algorithm with detailed grouping examples
- Add doc_count field to phase2-analysis.json group assignments
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-11-03 17:31:15 +08:00
catlog22
bcebd229df
feat: update SKILL.md generation process with intelligent description extraction and streamlined file handling
2025-11-03 17:22:09 +08:00
catlog22
528c5efc66
Implement feature X to enhance user experience and fix bug Y in module Z
2025-11-03 17:12:32 +08:00
catlog22
accd319093
feat: enhance documentation workflow with batch processing, dual execution modes, and pre-computed analysis
2025-11-03 16:33:46 +08:00
catlog22
d22bf80919
feat: refine batch module trees task documentation and clarify execution model
2025-11-03 16:03:53 +08:00
catlog22
5aa9931dd7
feat: optimize documentation generation process with batch processing and unified analysis
2025-11-03 15:59:30 +08:00
catlog22
e53a1bf397
feat: add CLI execution mode support to documentation commands and update argument hints
2025-11-03 15:47:18 +08:00
catlog22
03de6b3078
feat: update documentation workflow to use workflow-session.json for session metadata
2025-11-03 15:34:09 +08:00
catlog22
b18647353b
feat: enhance documentation generation process with improved structure and quality guidelines
2025-11-03 15:17:37 +08:00
catlog22
cdc0af90ba
feat: add support for 'codex' tool and enhance --regenerate flag handling in skill-memory command
2025-11-03 14:54:10 +08:00
catlog22
507cd696b1
Refactor skill-memory command to streamline documentation generation process
...
- Updated command description and argument hints for clarity.
- Changed the orchestrator role to emphasize its function as a pure orchestrator without task JSON generation.
- Implemented a 4-phase workflow for documentation generation, including auto-continue mechanisms.
- Enhanced argument parsing to include a new mode option for full or partial documentation generation.
- Simplified the output structure and improved validation steps throughout the phases.
- Revised the SKILL.md generation process to include a progressive loading guide and module index.
- Removed unnecessary complexity and reduced code size by approximately 70%.
2025-11-03 14:49:44 +08:00
catlog22
fdba75dd79
Implement feature X to enhance user experience and fix bug Y in module Z
2025-11-03 11:26:37 +08:00
catlog22
cefe6076e2
feat: add skill-memory command for generating SKILL packages with path mirroring
2025-11-03 10:31:18 +08:00
catlog22
4f0edb27ff
refactor: update subagent type to context-search-agent in load and context-gather commands
2025-10-25 15:32:33 +08:00
catlog22
da908d8db4
refactor: remove MCP code-index dependency, replace with ripgrep/find
...
Replace all mcp__code-index__ calls with native ripgrep and find commands
across workflow and command files for better performance and portability.
Changes:
- Remove 41 mcp__code-index__ function calls from 12 files
- Replace with ripgrep (rg) for content search
- Replace with find for file discovery
- Remove index refresh dependencies (no longer needed)
Modified files:
- workflow/tools: context-gather, test-context-gather, task-generate-agent,
task-generate, test-task-generate (core workflow tools)
- workflow: review (security scanning)
- memory: load, update-related, docs (memory management)
- cli/mode: plan, bug-index, code-analysis (CLI modes)
Documentation updates:
- Simplify mcp-tool-strategy.md to only Exa usage (5 lines)
- Streamline context-search-strategy.md to 69 lines
- Standardize codebase-retrieval syntax per intelligent-tools-strategy.md
Benefits:
- Faster search with ripgrep (no index overhead)
- Better cross-platform compatibility
- Simpler configuration (fewer MCP dependencies)
- -232 lines of code removed
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-10-24 15:45:26 +08:00
catlog22
047d809e23
docs: rename general-purpose agent to universal-executor and update documentation
...
Major updates in this release:
1. Agent Renaming (13 files, 21 references):
- Renamed general-purpose → universal-executor to avoid naming conflicts
- Updated all references in commands and workflows
- Maintained backward compatibility in documentation
2. README Updates (4 files):
- Removed /workflow:session:start step (auto-created by /workflow:plan)
- Simplified workflow from 4 steps to 3 steps
- Updated version to v4.6.2
- Added CLI tool usage guidelines
3. GETTING_STARTED Enhancements (2 files):
- Added Design Philosophy section explaining multi-model CLI integration
- Added comprehensive CLI tool usage guide with common workflows
- Reorganized quick start to emphasize automatic session creation
- Added examples for bug fixes and feature development
Files modified:
- Agent config: .claude/agents/general-purpose.md
- Commands: 7 files in .claude/commands/
- Workflows: 5 files in .claude/workflows/
- Documentation: README.md, README_CN.md, GETTING_STARTED.md, GETTING_STARTED_CN.md
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-10-23 21:18:36 +08:00
catlog22
d3f8d012a1
docs: 更新文档,增强CLI工具使用说明,明确命令行参数和上下文组装指南
2025-10-22 22:17:00 +08:00
catlog22
6fdcf9b8cc
docs: 更新文档,增强文档生成工具的使用说明
2025-10-22 21:22:04 +08:00
catlog22
632a6e474a
docs: 更新文档,添加自动跳过路径和执行顺序的估计时间
2025-10-22 14:53:49 +08:00
catlog22
e3a6c885db
refactor: 更新模块文档更新流程,简化任务描述并增强执行脚本的失败处理
2025-10-22 12:17:52 +08:00
catlog22
eb9b10c96b
docs: 更新文档,明确任务结构和操作模式的约束条件
2025-10-22 11:16:34 +08:00
catlog22
804617d8cd
refactor: 移除策略参数,改为基于目录深度自动选择更新策略
2025-10-22 10:50:46 +08:00
catlog22
b6c1880abf
feat: 更新文档更新脚本,添加策略参数以支持单层和多层更新
2025-10-22 10:35:30 +08:00
catlog22
7783ee0ac5
refactor: 更新 update_module_claude.sh 脚本,调整参数顺序并添加模型选择说明
2025-10-21 21:02:17 +08:00
catlog22
de3dc35c5b
refactor: improve memory update commands with parallel execution and fix file naming
...
- Renamed update-memory-full.md -> update-full.md for consistency
- Renamed update-memory-related.md -> update-related.md for consistency
- Added parallel execution support (max 4 concurrent) for both direct and agent modes
- Fixed execution strategy: <20 modules direct parallel, ≥20 modules agent batch
- Removed misleading "orchestrator agent" section that caused hierarchy confusion
- Clarified coordinator always executes, agents only for batching ≥20 modules
- Added explicit file naming rules to prevent ToolSidebar.CLAUDE.md errors
- Updated template and script with CRITICAL file naming constraints
- Removed all emoji symbols from documentation for clean text format
- Added smart filtering strategy to docs.md for auto-skip patterns
Key improvements:
- Phase 3A: Direct parallel execution (max 4 concurrent per depth)
- Phase 3B: Agent batch execution (4 modules/agent)
- Both modes use same batching strategy, differ only in agent layer
- Explicit CLAUDE.md file naming in 3 locations (script, template, checklist)
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-10-21 20:28:11 +08:00
catlog22
83664cb777
feat: migrate to Gemini CLI v0.11.0-nightly with native prompt support
...
## Major Changes
### Gemini CLI Integration (google-gemini/gemini-cli#11228 )
- Migrate from wrapper scripts to native Gemini CLI v0.11.0-nightly
- Remove `-p` flag requirement for prompt strings
- Deprecate `gemini-wrapper` and `qwen-wrapper` scripts
- Update all commands and workflows to use direct CLI syntax
### Command Syntax Updates
- **Before**: `gemini -p "CONTEXT: @**/* prompt"`
- **After**: `gemini "CONTEXT: @**/* prompt"`
- Apply to all 70+ command files and workflow templates
- Maintain backward compatibility for Qwen fallback
### File Pattern Migration
- Replace `@{CLAUDE.md}` with `@CLAUDE.md`
- Replace `@{**/*}` with `@**/*`
- Update all file references to use direct @ notation
- Remove legacy brace syntax across all documentation
### Documentation Improvements
- Reorganize `intelligent-tools-strategy.md` structure
- Add Quick Start section with decision matrix
- Enhance `--include-directories` best practices
- Add comprehensive command templates and examples
- Improve navigation with clearer section hierarchy
### Files Modified (75+ files)
- Commands: All CLI commands updated (cli/, workflow/, task/, memory/)
- Workflows: Core strategy files and templates
- Agents: CLI execution agent and doc generator
- Templates: Planning roles and tech stack guides
## Breaking Changes
- Gemini CLI v0.11.0-nightly or later required
- Old wrapper scripts no longer supported
- Legacy `@{pattern}` syntax deprecated
## Migration Guide
Users should:
1. Update Gemini CLI to v0.11.0-nightly or later
2. Remove `-p` flag from existing commands
3. Update file patterns from `@{pattern}` to `@pattern`
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-10-21 14:46:16 +08:00
catlog22
51a0cb3a3c
docs: release v4.6.2 - documentation optimization and /memory:load refinement
...
### Documentation Optimization
**Optimized `/memory:load` Command Specification**:
- Reduced documentation from 273 to 240 lines (12% reduction)
- Merged redundant sections for better information flow
- Removed unnecessary internal implementation details
- Simplified usage examples while preserving clarity
- Maintained all critical information (parameters, workflow, JSON structure)
### Documentation Updates
**CHANGELOG.md**:
- Added v4.6.2 release entry with documentation improvements
**COMMAND_SPEC.md**:
- Updated `/memory:load` specification to match actual implementation
- Corrected syntax: `[--tool gemini|qwen]` instead of outdated `[--agent] [--json]` flags
- Added agent-driven execution details
**GETTING_STARTED.md**:
- Added "Quick Context Loading for Specific Tasks" section
- Positioned between "Full Project Index Rebuild" and "Incremental Related Module Updates"
- Includes practical examples and use case guidance
**README.md**:
- Updated version badge to v4.6.2
- Updated latest release description
**COMMAND_REFERENCE.md**:
- Added `/memory:load` command reference entry
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-10-20 10:58:31 +08:00
catlog22
5e59c1d2d9
fix: correct workflow:execute usage in docs command
...
Fixed incorrect usage of /workflow:execute with task IDs.
- Changed from: /workflow:execute IMPL-001 (incorrect)
- Changed to: /workflow:execute (correct - executes entire workflow)
- Simplified execution commands section
- Aligned with execute.md specification
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-10-16 16:54:00 +08:00
catlog22
4aec163441
refactor: reorganize memory commands and update brainstorm workflows
...
Changes:
- Move memory commands to .claude/commands/memory/ directory
- Relocate update-memory-full.md and update-memory-related.md
- Add new docs.md command for documentation workflows
- Update brainstorm commands (api-designer, data-architect, system-architect, ui-designer, ux-expert)
- Remove deprecated workflow/tools/docs.md
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
2025-10-16 10:41:38 +08:00