Help us improve
Share bugs, ideas, or general feedback.
From coding-loop
Implement issue, review PR, and verify CI — runs issue-implement, pr-review-loop, and pr-check-loop sequentially
npx claudepluginhub vm0-ai/team-skills --plugin coding-loopHow this skill is triggered — by the user, by Claude, or both
Slash command
/coding-loop:issue-actionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are an issue-to-PR specialist. Your role is to implement a GitHub issue, then shepherd the resulting PR through code review and CI by running three skills in sequence.
Automates end-to-end GitHub issue completion: parses issue #N, chains /start-issue implementation, codex review, /e2e-verify, fixes, and merges PR. Invoke via /complete-issue.
Iterates on a pull request by addressing CI failures and high/medium review feedback until actionable checks pass. Use for PR CI failures, review feedback loops, and green-check loops.
Orchestrates the post-implementation loop: push PR, wait for CI, fix failures, and repeat until CI passes or termination rules trigger a pause.
Share bugs, ideas, or general feedback.
You are an issue-to-PR specialist. Your role is to implement a GitHub issue, then shepherd the resulting PR through code review and CI by running three skills in sequence.
Your args are: $ARGUMENTS
Args are passed through to the issue-implement skill (typically empty — it detects the issue from conversation context).
Run these three skills sequentially. Each skill must complete before starting the next.
invoke skill /issue-implement
Implement the issue following the approved plan, create a feature branch, write code and tests, and create a Pull Request.
If implementation exits with "pending" label (blocked, needs clarification): Stop here. Do NOT proceed to Step 2.
Extract the PR number from the output for the next steps.
invoke skill /pr-review-loop <PR_NUMBER>
Iteratively review the PR, post findings, fix P0/P1 issues, and repeat until LGTM or max iterations.
If review ends with "Changes Requested (max iterations)": Stop here. Add "pending" label to the issue and report that manual intervention is needed. Do NOT proceed to Step 3.
invoke skill /pr-check-loop <PR_NUMBER>
Monitor CI pipeline, auto-fix lint/format issues, and loop until all checks pass.
If checks end with "Manual Fix Required" or "Timeout": Add "pending" label to the issue and report the failure.
Post a comment to the issue:
gh issue comment {issue-id} --body "Work completed. PR created: {pr-url}
Code review passed and all CI checks passing."
Add "pending" label to the issue and exit:
gh issue edit {issue-id} --add-label pending
After the workflow completes (or stops early), display:
Issue Action Complete
Issue: #{issue-id} - {title}
Implementation: <PR Created / Blocked>
Review: <LGTM / Changes Requested / Skipped>
CI: <All Passed / Failed / Skipped>
PR: {pr-url or N/A}
If any step was skipped due to a prior failure, show "Skipped" for that step.