npx claudepluginhub jpoutrin/product-forge --plugin product-designThis skill uses the workspace's default tool permissions.
**Category**: Task Management
Lists tasks from Markdown files with YAML frontmatter in 'tasks' directory or custom path, applies filters like --status, --priority, --tags, --owner, displays formatted table.
Displays progress on incomplete task lists from .plans/tasks-*.yml files: total/completed counts, next actionable task per feature. Use to check active feature status.
Lists tasks using taskmd CLI with optional filters like --status, --priority, --format. Use when users want to view their tasks.
Share bugs, ideas, or general feedback.
Category: Task Management
task-list [--dir <directory>] [--status <status>] [--format <format>]
--dir: Optional - Specific directory (focus, active, paused, completed, all). Default: all--status: Optional - Filter by status (pending, in_progress, completed, blocked)--format: Optional - Output format (table, list, json). Default: tableWhen this command is run, Claude Code should:
๐ Task List Overview
FOCUS (1 task)
ID | Title | Progress | Est/Act | Priority | Status
----------|----------------------------|----------|---------|----------|------------
TASK-001 | User Authentication | 50% | 8h/4h | ๐ด High | In Progress
ACTIVE (3 tasks)
ID | Title | Progress | Est/Act | Priority | Status
----------|----------------------------|----------|---------|----------|------------
TASK-002 | API Documentation | 0% | 4h/0h | ๐ก Med | Pending
TASK-003 | Search Implementation | 20% | 12h/2h | ๐ด High | In Progress
TASK-004 | Performance Optimization | 0% | 6h/0h | ๐ข Low | Blocked โ ๏ธ
PAUSED (1 task)
ID | Title | Progress | Est/Act | Priority | Reason
----------|----------------------------|----------|---------|----------|------------
TASK-005 | Data Migration | 30% | 10h/3h | ๐ก Med | Waiting for DB
Summary: 5 tasks | 2 in progress | 1 blocked | Total: 40h estimated, 9h actual
๐ Task List
๐ฏ FOCUS
โโโ TASK-001: User Authentication
Progress: 50% | 8h estimated, 4h actual | High priority
Status: In Progress | Next: 2.3 Implement JWT tokens
๐ ACTIVE (3)
โโโ TASK-002: API Documentation
โ Progress: 0% | 4h estimated | Medium priority
โ Status: Pending | Dependencies: TASK-001
โ
โโโ TASK-003: Search Implementation
โ Progress: 20% | 12h estimated, 2h actual | High priority
โ Status: In Progress
โ
โโโ TASK-004: Performance Optimization
Progress: 0% | 6h estimated | Low priority
Status: Blocked โ ๏ธ | Reason: Waiting for profiling tools
{
"summary": {
"total_tasks": 5,
"in_progress": 2,
"blocked": 1,
"total_estimated_hours": 40,
"total_actual_hours": 9
},
"tasks": {
"focus": [...],
"active": [...],
"paused": [...],
"completed": [...]
}
}
โโโโโโโโโโ - Visual progress bartask-system-init# List all tasks
task-list
# Show only focused task
task-list --dir focus
# Show all in-progress tasks
task-list --status in_progress
# Get JSON for automation
task-list --format json > tasks.json
# Show only active directory in list format
task-list --dir active --format list