Files
Claude-Code-Workflow/.claude/commands/workflow/issue/list.md
catlog22 754f9b8da0 修复所有命令文件的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>
2025-09-08 16:32:41 +08:00

2.6 KiB

name, description, usage, parent, examples
name description usage parent examples
workflow-issue-list List and filter workflow issues /workflow:issue:list /workflow:issue
/workflow:issue:list
/workflow:issue:list --open
/workflow:issue:list --priority=high

List Workflow Issues (/workflow:issue:list)

Purpose

Display all issues and change requests within the current workflow session.

Usage

/workflow:issue:list [filter]

Optional Filters

Simple keyword-based filtering:

/workflow:issue:list --open           # Only open issues
/workflow:issue:list --closed         # Only closed issues
/workflow:issue:list --critical       # Critical priority
/workflow:issue:list --high           # High priority
/workflow:issue:list --bug            # Bug type issues
/workflow:issue:list --feature        # Feature type issues
/workflow:issue:list --blocking       # Blocking issues only

Display Format

Open Issues

🔴 ISS-001: Add OAuth2 social login support
   Type: Feature | Priority: High | Created: 2025-09-07
   Status: Open | Impact: Medium
   
🔴 ISS-002: Fix user avatar security vulnerability  
   Type: Bug | Priority: Critical | Created: 2025-09-08
   Status: Open | Impact: High | 🚫 BLOCKING

Closed Issues

✅ ISS-003: Update authentication documentation
   Type: Documentation | Priority: Low
   Status: Closed | Completed: 2025-09-05
   Reason: Documentation updated in PR #45

Integrated Issues

🔗 ISS-004: Implement rate limiting
   Type: Feature | Priority: Medium
   Status: Integrated → IMPL-003
   Integrated: 2025-09-06 | Task: impl-3.json

Summary Stats

📊 Issue Summary for WFS-oauth-integration:
   Total: 4 issues
   🔴 Open: 2 | ✅ Closed: 1 | 🔗 Integrated: 1
   🚫 Blocking: 1 | ⚡ Critical: 1 | 📈 High: 1

Empty State

If no issues exist:

No issues found for current session.

Create your first issue:
/workflow:issue:create "describe the issue or request"

Quick Actions

For each issue, shows available actions:

  • Update: /workflow:issue:update ISS-001
  • Integrate: Link to workflow tasks
  • Close: /workflow:issue:close ISS-001
  • View Details: Full issue information

Session Context

  • Lists issues from current active session
  • Shows session name and directory
  • Indicates if .issues/ directory exists

Sorting

Issues are sorted by:

  1. Blocking status (blocking first)
  2. Priority (critical → high → medium → low)
  3. Creation date (newest first)

Performance

  • Fast loading from JSON files
  • Cached issue registry
  • Efficient filtering

Result: Complete overview of all workflow issues with their current status