원클릭으로
done-task
Mark a task as done — close the GitHub issue and clean up labels
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Mark a task as done — close the GitHub issue and clean up labels
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
| name | done-task |
| description | Mark a task as done — close the GitHub issue and clean up labels |
| allowed-tools | Bash |
| user-invocable | true |
| argument-hint | ["issue-number"] |
Mark a GitHub issue as done and clean up project board state.
Determine the repo name:
REPO_NAME=$(basename $(git rev-parse --show-toplevel))
If no issue number provided ($ARGUMENTS is empty), try to detect from branch name:
BRANCH=$(git branch --show-current)
# Extract issue number from branch like feat/issue-42-description
Update labels and close the issue:
gh issue edit $0 --repo PROJECT-OBA/$REPO_NAME --remove-label "in-progress" --remove-label "ready" --add-label "done"
gh issue close $0 --repo PROJECT-OBA/$REPO_NAME
If there's an open PR for this branch, link it in a comment:
PR_URL=$(gh pr list --repo PROJECT-OBA/$REPO_NAME --head $(git branch --show-current) --json url --jq '.[0].url')
if [ -n "$PR_URL" ]; then
gh issue comment $0 --repo PROJECT-OBA/$REPO_NAME --body "Completed in $PR_URL"
fi
Confirm closure to the user with issue title and number.
SOC 직업 분류 기준
Pick the next task from the GitHub project board for this repository
Run a security-focused review of recent changes using the security-reviewer agent
Run tests for a specific package by name or detect from current working directory
Verify a trace file's integrity and evaluate it against a policy in one step
Run documentation governance checks to verify docs consistency and claim accuracy
Review a pull request against Krynix project standards with code-reviewer agent