원클릭으로
start-task
Starts work on a new task — asks what the user wants to do, creates a GitHub issue, branch, exec-plan, and optionally a worktree
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Starts work on a new task — asks what the user wants to do, creates a GitHub issue, branch, exec-plan, and optionally a worktree
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | start-task |
| description | Starts work on a new task — asks what the user wants to do, creates a GitHub issue, branch, exec-plan, and optionally a worktree |
Kicks off work on a new task by asking the user what they want to do, creating a GitHub issue, then following the same flow as start-issue: branch, assign, exec-plan, and optionally worktree + setup.
If the user hasn't already described the task, ask:
What do you want to work on?
Wait for the user's response. Gather enough context to create a meaningful issue.
If the description is too vague to create a useful issue, ask follow-up questions:
Keep it to 1-2 follow-up questions max — don't interrogate.
Based on the user's description:
| Description | Type | Label |
|---|---|---|
| Bug, broken behavior, regression | Bug | bug |
| Refactoring, cleanup, restructuring | Refactoring | refactoring |
| Everything else | Feature | (none required) |
gh issue create \
--repo fleetyards/infrastructure \
--title "<concise title>" \
--body "<structured body>" \
--assignee @me \
[--label "bug" if applicable] \
[--label "refactoring" if applicable]
The issue body should follow this structure:
## Description
[Clear description of what needs to be done, based on the user's input]
## Acceptance Criteria
- [ ] [Criterion 1]
- [ ] [Criterion 2]
## Notes
[Any additional context from the conversation]
Show the created issue URL to the user.
From here, follow the exact same steps as the start-issue skill starting from step 5 (assign is already done via --assignee @me):
feat/, fix/, or refactor/ prefix + issue number + kebab-case description)docs/exec-plans/<branch-slug>.md.worktrees/<branch-slug> and run bin/setupRefer to the start-issue skill for the detailed steps and templates.
start-issue skill error handling