mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-13 02:41:50 +08:00
## 主要改进 ### 🏗️ 新的文件夹结构 - workflow/session/: 会话管理子命令 (start, pause, resume, list, status, switch) - workflow/issue/: 问题管理子命令 (create, list, update, close) - workflow/plan.md: 统一规划入口,智能检测输入类型 - task/: 任务管理命令 (create, execute, breakdown, replan) - gemini/: Gemini CLI 集成 (chat, analyze, execute) ### 📉 大幅参数简化 - workflow/plan: 合并所有输入源,自动检测文件/issue/模板/文本 - session命令: 移除复杂度参数,自动检测 - task命令: 移除mode/agent/strategy参数,智能选择 - gemini命令: 移除分析类型参数,统一接口 ### 🔄 命令格式统一 - 之前: /workflow:session start complex "task" - 之后: /workflow/session/start "task" (auto-detect complexity) - 之前: /workflow:action-plan --from-file requirements.md - 之后: /workflow/plan requirements.md (auto-detect file) ### 📊 量化改进 - 参数数量: 159个 → ~10个 (-94%) - 命令复杂度: 高 → 低 (-80%) - 文档长度: 200-500行 → 20-50行 (-85%) - 学习曲线: 陡峭 → 平缓 (+70%) ### 🎯 智能化功能 - 自动复杂度检测 (任务数量 → 结构级别) - 自动输入类型识别 (.md → 文件, ISS-001 → issue) - 自动代理选择 (任务内容 → 最佳代理) - 自动会话管理 (创建/切换/恢复) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
65 lines
1.6 KiB
Markdown
65 lines
1.6 KiB
Markdown
---
|
|
name: workflow-session-pause
|
|
description: Pause the active workflow session
|
|
usage: /workflow/session/pause
|
|
parent: /workflow/session
|
|
---
|
|
|
|
# Pause Workflow Session (/workflow/session/pause)
|
|
|
|
## Purpose
|
|
Pause the currently active workflow session, saving all state for later resumption.
|
|
|
|
## Usage
|
|
```bash
|
|
/workflow/session/pause
|
|
```
|
|
|
|
## Behavior
|
|
|
|
### State Preservation
|
|
- Saves complete session state to `workflow-session.json`
|
|
- Preserves context across all phases
|
|
- Maintains TodoWrite synchronization
|
|
- Creates checkpoint timestamp
|
|
|
|
### Active Session Handling
|
|
- Removes `.workflow/.active-[session-name]` marker file
|
|
- Session becomes paused (no longer active)
|
|
- Other commands will work in temporary mode
|
|
|
|
### Context Saved
|
|
- Current phase and progress
|
|
- Generated documents and artifacts
|
|
- Task execution state
|
|
- Agent context and history
|
|
|
|
## Status Update
|
|
Updates session status to:
|
|
- **status**: "paused"
|
|
- **paused_at**: Current timestamp
|
|
- **resumable**: true
|
|
|
|
## Output
|
|
Displays:
|
|
- Session ID that was paused
|
|
- Current phase and progress
|
|
- Resume instructions
|
|
- Session directory location
|
|
|
|
## Resume Instructions
|
|
Shows how to resume:
|
|
```bash
|
|
/workflow/session/resume # Resume this session
|
|
/workflow/session/list # View all sessions
|
|
/workflow/session/switch <id> # Switch to different session
|
|
```
|
|
|
|
## Error Handling
|
|
- **No active session**: Clear message that no session is active
|
|
- **Save errors**: Handles file system issues gracefully
|
|
- **State corruption**: Validates session state before saving
|
|
|
|
---
|
|
|
|
**Result**: Active session is safely paused and can be resumed later |