.claude/skills/copilot/SKILL.md
Respond to GitHub Copilot review comments — fix or reply, then commit and resolve threads.
npx skillsauth add terassyi/tomei copilotInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Fetch GitHub Copilot review comments, address each one, commit fixes, and resolve threads.
git branch --show-current
gh pr view --json number,title,url --jq '"#\(.number) \(.title) \(.url)"' 2>/dev/null || echo "no PR found for current branch"
Get PR number for the current branch, then fetch all review comments:
gh api repos/{owner}/{repo}/pulls/{pr_number}/comments
Filter to unresolved comments only.
For each unresolved comment:
gh api repos/{owner}/{repo}/pulls/{pr_number}/comments -f body="Fixed. <explanation>" -f in_reply_to={comment_id}gh api ... -f body="No change needed. <reasoning>" -f in_reply_to={comment_id}If code changes were made:
make build → make test → make test-integration → make test-e2emake fmt + make lintgit add relevant filesfix(<scope>): address copilot review commentsCo-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>gh api graphql -f query='mutation { resolveReviewThread(input: {threadId: "<thread_id>"}) { thread { isResolved } } }'
tomei apply, tomei init, chezmoi apply, or chezmoi initgit pushtesting
Run full test suite — unit, integration, e2e sequentially. Stops on first failure.
testing
Pre-release checklist — verify CI status, version tags, CUE module coordination, changelog preview. Read-only.
development
Expert team review and refactor — tomei, Go, TDD, OS specialists discuss the diff and implement improvements.
development
Run tests, lint, format, create branch if needed, and commit with conventional message.