ワンクリックで
next-task
Get the next recommended task to work on. Use when the user asks what to work on next or needs a task assignment.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Get the next recommended task to work on. Use when the user asks what to work on next or needs a task assignment.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
List tasks with optional filters. Use when the user wants to see their tasks.
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.
| name | next-task |
| description | Get the next recommended task to work on. Use when the user asks what to work on next or needs a task assignment. |
| allowed-tools | Glob, Read |
Find the next recommended task using priority ranking — no CLI required.
The user may provide optional filters in $ARGUMENTS (e.g. --tag mvp, --group cli).
Find the task directory:
.taskmd.yaml if it exists to check for a custom dir fieldtasks if not configuredScan all task files: Use Glob with <task-dir>/**/*.md
.worklogs/ directoriesRead frontmatter of each task file and collect: id, title, status, priority, effort, dependencies, tags, group, created, owner
Filter candidates:
status: pending (or no status field)completed$ARGUMENTS (e.g. --tag, --group, --owner)Rank candidates using this priority order:
Present the top recommendation:
See SPEC_REFERENCE.md (in the plugin root) for valid field values and ranking logic.