docs: 继续标准化工作流会话和版本命令文档格式

移除剩余命令文档中的表情符号和视觉装饰:
- version.md - 版本检查和更新命令
- workflow/session/list.md - 会话列表命令
- workflow/session/resume.md - 会话恢复命令
- workflow/session/start.md - 会话启动命令

保持与其他命令文档的格式一致性

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
catlog22
2025-11-05 21:49:03 +08:00
parent 967e3805b7
commit c36ff8fcec
4 changed files with 13 additions and 32 deletions

View File

@@ -152,12 +152,12 @@ bash(printf "%s\n%s" "3.2.1" "3.2.2" | sort -V | tail -n 1)
**Scenario 1: Up to date** **Scenario 1: Up to date**
``` ```
You are on the latest stable version (3.2.1) You are on the latest stable version (3.2.1)
``` ```
**Scenario 2: Upgrade available** **Scenario 2: Upgrade available**
``` ```
⬆️ A newer stable version is available: v3.2.2 A newer stable version is available: v3.2.2
Your version: 3.2.1 Your version: 3.2.1
To upgrade: To upgrade:
@@ -167,7 +167,7 @@ Bash: bash <(curl -fsSL https://raw.githubusercontent.com/catlog22/Claude-Code-W
**Scenario 3: Development version** **Scenario 3: Development version**
``` ```
You are running a development version (3.4.0-dev) You are running a development version (3.4.0-dev)
This is newer than the latest stable release (v3.3.0) This is newer than the latest stable release (v3.3.0)
``` ```
@@ -252,7 +252,3 @@ ERROR: version.json is invalid or corrupted
### Timeout Configuration ### Timeout Configuration
All network calls should use `timeout: 30000` (30 seconds) to handle slow connections. All network calls should use `timeout: 30000` (30 seconds) to handle slow connections.
## Related Commands
- `/cli:cli-init` - Initialize CLI configurations
- `/workflow:session:list` - List workflow sessions

View File

@@ -59,19 +59,19 @@ jq -r '.created_at // "unknown"' .workflow/WFS-session/workflow-session.json
``` ```
Workflow Sessions: Workflow Sessions:
WFS-oauth-integration (ACTIVE) [ACTIVE] WFS-oauth-integration
Project: OAuth2 authentication system Project: OAuth2 authentication system
Status: active Status: active
Progress: 3/8 tasks completed Progress: 3/8 tasks completed
Created: 2025-09-15T10:30:00Z Created: 2025-09-15T10:30:00Z
⏸️ WFS-user-profile (PAUSED) [PAUSED] WFS-user-profile
Project: User profile management Project: User profile management
Status: paused Status: paused
Progress: 1/5 tasks completed Progress: 1/5 tasks completed
Created: 2025-09-14T14:15:00Z Created: 2025-09-14T14:15:00Z
📁 WFS-database-migration (COMPLETED) [COMPLETED] WFS-database-migration
Project: Database schema migration Project: Database schema migration
Status: completed Status: completed
Progress: 4/4 tasks completed Progress: 4/4 tasks completed
@@ -81,10 +81,10 @@ Total: 3 sessions (1 active, 1 paused, 1 completed)
``` ```
### Status Indicators ### Status Indicators
- ****: Active session - **[ACTIVE]**: Active session
- **⏸️**: Paused session - **[PAUSED]**: Paused session
- **📁**: Completed session - **[COMPLETED]**: Completed session
- ****: Error/corrupted session - **[ERROR]**: Error/corrupted session
### Quick Commands ### Quick Commands
```bash ```bash
@@ -97,8 +97,3 @@ ls .workflow/.active-* | basename | sed 's/^\.active-//'
# Show recent sessions # Show recent sessions
ls -t .workflow/WFS-*/workflow-session.json | head -3 ls -t .workflow/WFS-*/workflow-session.json | head -3
``` ```
## Related Commands
- `/workflow:session:start` - Create new session
- `/workflow:session:switch` - Switch to different session
- `/workflow:session:status` - Detailed session info

View File

@@ -65,8 +65,3 @@ Session WFS-user-auth resumed
- Resumed at: 2025-09-15T15:45:00Z - Resumed at: 2025-09-15T15:45:00Z
- Ready for: /workflow:execute - Ready for: /workflow:execute
``` ```
## Related Commands
- `/workflow:session:pause` - Pause current session
- `/workflow:execute` - Continue workflow execution
- `/workflow:session:list` - Show all sessions

View File

@@ -213,8 +213,3 @@ bash(echo '{"session_id":"WFS-test","project":"test project","status":"planning"
- Characters: `a-z`, `0-9`, `-` only - Characters: `a-z`, `0-9`, `-` only
- Max length: 50 characters - Max length: 50 characters
- Uniqueness: Add numeric suffix if collision (`WFS-auth-2`, `WFS-auth-3`) - Uniqueness: Add numeric suffix if collision (`WFS-auth-2`, `WFS-auth-3`)
## Related Commands
- `/workflow:plan` - Uses `--auto` mode for session management
- `/workflow:execute` - Uses discovery mode for session selection
- `/workflow:session:status` - Shows detailed session information