mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-12 02:37:45 +08:00
修复所有命令文件的usage格式:斜杠改为冒号
统一命令调用格式从 /workflow/session/list 改为 /workflow:session:list ## 修复范围 - workflow/session/: 6个子命令 (start, pause, resume, list, status, switch) - workflow/issue/: 4个子命令 (create, list, update, close) - workflow/: 3个主命令 (plan, execute, review) - task/: 4个命令 (create, execute, breakdown, replan) - gemini/: 3个命令 (chat, execute, analyze) ## 格式统一 - usage行: /workflow:session:list - examples: /workflow:session:start "任务" - 标题: # Command (/workflow:session:start) - 内容引用: 所有命令路径统一使用冒号格式 ## 验证完成 ✅ 24个命令文件全部采用统一格式 ✅ 所有examples和内容引用保持一致 ✅ parent字段同步更新 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
---
|
||||
name: task-breakdown
|
||||
description: Intelligent task decomposition with context-aware subtask generation
|
||||
usage: /task/breakdown <task-id>
|
||||
usage: /task:breakdown <task-id>
|
||||
argument-hint: task-id
|
||||
examples:
|
||||
- /task/breakdown IMPL-1
|
||||
- /task/breakdown IMPL-1.1
|
||||
- /task/breakdown impl-3
|
||||
- /task:breakdown IMPL-1
|
||||
- /task:breakdown IMPL-1.1
|
||||
- /task:breakdown impl-3
|
||||
---
|
||||
|
||||
# Task Breakdown Command (/task/breakdown)
|
||||
# Task Breakdown Command (/task:breakdown)
|
||||
|
||||
## Overview
|
||||
Intelligently breaks down complex tasks into manageable subtasks with automatic context distribution and agent assignment.
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
---
|
||||
name: task-create
|
||||
description: Create implementation tasks with automatic context awareness
|
||||
usage: /task/create "title"
|
||||
usage: /task:create "title"
|
||||
argument-hint: "task title"
|
||||
examples:
|
||||
- /task/create "Implement user authentication"
|
||||
- /task/create "Build REST API endpoints"
|
||||
- /task/create "Fix login validation bug"
|
||||
- /task:create "Implement user authentication"
|
||||
- /task:create "Build REST API endpoints"
|
||||
- /task:create "Fix login validation bug"
|
||||
---
|
||||
|
||||
# Task Create Command (/task/create)
|
||||
# Task Create Command (/task:create)
|
||||
|
||||
## Overview
|
||||
Creates new implementation tasks during IMPLEMENT phase with automatic context awareness and ID generation.
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
---
|
||||
name: task-execute
|
||||
description: Execute tasks with appropriate agents and context-aware orchestration
|
||||
usage: /task/execute <task-id>
|
||||
usage: /task:execute <task-id>
|
||||
argument-hint: task-id
|
||||
examples:
|
||||
- /task/execute impl-1
|
||||
- /task/execute impl-1.2
|
||||
- /task/execute impl-3
|
||||
- /task:execute impl-1
|
||||
- /task:execute impl-1.2
|
||||
- /task:execute impl-3
|
||||
---
|
||||
|
||||
### 🚀 **Command Overview: `/task/execute`**
|
||||
### 🚀 **Command Overview: `/task:execute`**
|
||||
|
||||
- **Purpose**: Executes tasks using intelligent agent selection, context preparation, and progress tracking.
|
||||
- **Core Principles**:
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
---
|
||||
name: task-replan
|
||||
description: Replan individual tasks with detailed user input and change tracking
|
||||
usage: /task/replan <task-id> [input]
|
||||
usage: /task:replan <task-id> [input]
|
||||
argument-hint: task-id ["text"|file.md|ISS-001]
|
||||
examples:
|
||||
- /task/replan impl-1 "Add OAuth2 authentication support"
|
||||
- /task/replan impl-1 updated-specs.md
|
||||
- /task/replan impl-1 ISS-001
|
||||
- /task:replan impl-1 "Add OAuth2 authentication support"
|
||||
- /task:replan impl-1 updated-specs.md
|
||||
- /task:replan impl-1 ISS-001
|
||||
---
|
||||
|
||||
# Task Replan Command (/task/replan)
|
||||
# Task Replan Command (/task:replan)
|
||||
|
||||
## Overview
|
||||
Replans individual tasks based on detailed user input with comprehensive change tracking, version management, and document synchronization. Focuses exclusively on single-task modifications with rich input options.
|
||||
|
||||
Reference in New Issue
Block a user