mirror of
https://github.com/tw93/Mole.git
synced 2026-03-22 15:00:07 +00:00
1.0 KiB
1.0 KiB
name, description
| name | description |
|---|---|
| github-ops | Use this skill for GitHub issue, PR, and release operations in the Mole repository via gh CLI. |
GitHub Operations Skill
Use this skill when working with GitHub issues, PRs, and releases for Mole.
Golden Rule
ALWAYS use gh CLI for GitHub operations. Never use raw git commands or web scraping.
Issue Handling
# View issue
gh issue view 123
# List issues
gh issue list --state open
# NEVER comment without explicit user request
# Only prepare responses for user review
Pull Request Workflow
# View current PR
gh pr view
# View PR diff
gh pr diff
# Checkout PR branch
gh pr checkout 123
Safety Rules
- NEVER comment on issues/PRs without explicit user request
- NEVER create PRs automatically
- NEVER merge without explicit confirmation
- ALWAYS prepare responses for user review first
- ALWAYS use
ghinstead of manual curl/API calls
Issue Language
Draft replies in the same language as the issue author.