원클릭으로
get-task
Get details of a specific task by ID or name. Use when the user wants to view or look up a task.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Get details of a specific task by ID or name. Use when the user wants to view or look up a task.
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 | get-task |
| description | Get details of a specific task by ID or name. Use when the user wants to view or look up a task. |
| allowed-tools | Glob, Read |
Retrieve full details of a specific task — no CLI required.
The user's query is in $ARGUMENTS (a task ID like 077 or a task name/keyword).
Find the task directory:
.taskmd.yaml if it exists to check for a custom dir fieldtasks if not configuredFind the task file:
Glob for <task-dir>/**/*$ARGUMENTS*.md to find files matching the ID or keywordid matching $ARGUMENTSGlob for <task-dir>/**/*.md and read frontmatter of each to find a matching idRead the full task file using the Read tool
Present the task including:
See SPEC_REFERENCE.md (in the plugin root) for valid field values and frontmatter schema.