Install
openclaw skills install github-copilot-cliEfficient daily use of GitHub Copilot CLI for senior engineers. Use when planning, prompting, reviewing, or chaining Copilot CLI commands (gh copilot) to explore codebases, draft changes, debug issues, or accelerate workflows without losing architectural intent.
openclaw skills install github-copilot-cliYAML frontmatter is strict. A single extra space can break the skill.
Before committing or publishing:
# Basic sanity check (no output = good)
python - <<'PY'
import yaml,sys
with open('SKILL.md') as f:
yaml.safe_load(f.read())
print('Frontmatter OK')
PY
Rules to remember:
name, description)name and description)Treat Copilot CLI as a team of elite specialists coordinated by you:
Copilot is excellent at coding and architecture when given clear roles. You act as the CTO / conductor:
gh copilot explain "What does this service do?" --path src/
Use when orienting yourself or reloading context after a break.
gh copilot suggest "Add logging when translation fallback is used" --path services/translation
Best practice:
gh copilot suggest "Why might this function return null under load?" --path src/choreo
Follow up manually by reading the code it points to.
gh copilot suggest "Write failing tests for punctuation correction on voice transcription" --path tests/
Then iterate toward the fix yourself.
Decompose (CTO)
Propose (Copilot roles)
gh copilot suggest "As a backend engineer, propose a minimal fix for mixed-language carryover" --path src/
gh copilot suggest "As a tester, write failing tests for mixed-language carryover" --path tests/
Cross‑check (Copilot vs Copilot)
Escalate (to you)
Finalize (with you)
Copilot CLI should not be the final authority in situations where:
In these cases, Copilot may still propose options, but you must explicitly review and decide.
Copilot is a force multiplier, not a decision owner.
Use Copilot to:
You own:
Copilot accelerates thinking — it does not replace judgment.