원클릭으로
complete-task
Mark a task as completed. Use when the user wants to mark a task as done or complete.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Mark a task as completed. Use when the user wants to mark a task as done or complete.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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.
SOC 직업 분류 기준
| name | complete-task |
| description | Mark a task as completed. Use when the user wants to mark a task as done or complete. |
| allowed-tools | Bash, Read, Edit |
Mark a task as completed using the taskmd CLI.
The user's query is in $ARGUMENTS (a task ID like 077). If $ARGUMENTS is empty or does not contain a task ID, infer the task from conversation context (e.g., the task currently being worked on). If the task cannot be determined, ask the user which task to complete.
Read the task file to understand the full task scope:
taskmd get <ID> to get the task contents- [ ] / - [x] items) in the task bodyVerify subtasks and acceptance criteria are met:
- [x]) any items that are complete but not yet checked off by editing the task fileAdd a final worklog entry (if worklogs are enabled):
.taskmd.yaml for worklogs: true -- only create worklogs if explicitly enabled; skip this step otherwisetasks/<group>/.worklogs/<ID>.md (or tasks/.worklogs/<ID>.md)Check the workflow mode in .taskmd.yaml:
workflow: pr-review is set, use taskmd set $ARGUMENTS --status in-review instead of completed (note: in pr-review mode, tasks are completed by merging the PR, not by setting status directly)solo mode), run taskmd set $ARGUMENTS --status completed --verify--verify flag runs any verification checks defined in the task before applying the status changeConfirm the status change to the user