一键导入
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 页面并帮你完成安装。
基于 SOC 职业分类
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.
| 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.