mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-10 02:24:35 +08:00
- Update workflow-architecture.md: Streamline structure, enforce 10-task hard limit - Update workflow plan.md: Add file cohesion rules, similar functionality warnings - Update task breakdown.md: Manual breakdown controls, conflict detection - Update task-core.md: Sync JSON schema with workflow-architecture.md - Establish consistent 10-task maximum across all workflow commands - Add file cohesion enforcement to prevent splitting related files - Replace "Complex" classification with "Over-scope" requiring re-planning 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
2.6 KiB
2.6 KiB
name, description, usage, examples
| name | description | usage | examples | |||
|---|---|---|---|---|---|---|
| list | List and filter workflow issues | /workflow:issue:list |
|
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:
- Blocking status (blocking first)
- Priority (critical → high → medium → low)
- 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