원클릭으로
list-tasks
List tasks with optional filters. Use when the user wants to see their tasks.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
List tasks with optional filters. Use when the user wants to see their tasks.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
List tasks with optional filters. Use when the user wants to see their tasks.
Get the next recommended task to work on. Use when the user asks what to work on next or needs a task assignment.
Create a new task file following the taskmd specification. Use when the user wants to add a new task to the project.
Split a large task into smaller sub-tasks. Accepts a task ID, evaluates complexity, and creates sibling task files if warranted.
Update an existing task's fields (status, priority, title, tags, dependencies, etc.). Use when the user wants to modify a task's properties.
Create a new task file following the taskmd specification. Use when the user wants to add a new task to the project.
SOC 직업 분류 기준
| name | list-tasks |
| description | List tasks with optional filters. Use when the user wants to see their tasks. |
| allowed-tools | Glob, Read |
List tasks by scanning task files directly — no CLI required.
The user's arguments are in $ARGUMENTS (e.g. --status pending, --priority high, a directory path).
Find the task directory:
.taskmd.yaml if it exists to check for a custom dir fieldtasks if not configured or file doesn't existScan for task files: Use Glob with pattern <task-dir>/**/*.md
.worklogs/ directoriesRead and parse each task file:
--- and second ---)Apply filters from $ARGUMENTS:
--status <value>: Show only tasks matching this status--priority <value>: Show only tasks matching this priority--filter effort=<value>: Show only tasks matching this effort (supports >=, >, <=, <)--filter type=<value>: Show only tasks matching this type--filter tags=<value>: Show only tasks containing this tag--filter owner=<value>: Show only tasks matching this owner--phase <value>: Show only tasks matching this phase--scope <value>: Show only tasks in this scope (supports wildcards)Display results as a formatted table:
ID | Status | Priority | Title
------|-------------|----------|-------------------------------
001 | pending | high | Implement user auth
002 | in-progress | medium | Fix login bug
If no tasks match the filters, inform the user.
See SPEC_REFERENCE.md (in the plugin root) for valid field values and frontmatter schema.