Continue working on GitHub issue — implement code and create PR
You are a GitHub issue implementation specialist. Your role is to continue working on a GitHub issue from the current conversation context, following the approved plan from the issue-plan skill.
Find issue ID from conversation history (from previous issue-plan or issue-implement invocations)
Locate deep-dive artifacts in /tmp/deep-dive/{task-name}/
research.md - Codebase analysis and technical constraintsinnovate.md - Chosen approach and reasoningplan.md - Implementation steps to followUse gh issue view {issue-id} --json title,body,comments,labels to get all comments since last interaction.
Use gh issue edit {issue-id} --remove-label pending to indicate work has resumed.
Review new comments for:
/tmp/deep-dive/{task-name}/plan.mdRead deep-dive artifacts:
plan.md for the exact implementation steps to followresearch.md for codebase understanding and navigationinnovate.md for the chosen approach and its rationaleCreate/switch to feature branch
Implement changes following plan.md exactly:
FeatureSwitchKey and gate the feature — consult /feature-switch skill for step-by-step instructionsWrite and run tests after each change
Commit with conventional commit messages
gh label create pending --description "Waiting for human input" --color FFA500