Help us improve
Share bugs, ideas, or general feedback.
From github-workflow
Continue working on GitHub issue — implement code and create PR
npx claudepluginhub vm0-ai/team-skills --plugin github-workflowHow this skill is triggered — by the user, by Claude, or both
Slash command
/github-workflow:issue-implementThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
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.
Tracks GitHub issue progress using gh CLI and git: labels issues, adds comments/commits, creates branches/PRs. Use when starting implementation or reporting updates.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
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:
Write and run tests after each change
Commit with conventional commit messages
gh label create pending --description "Waiting for human input" --color FFA500