From rules-review
Executes local Copilot CLI via bash for coding assistance including code generation, debugging, second opinions, and task delegation. Requires copilot in PATH.
npx claudepluginhub hiroro-work/claude-plugins --plugin apply-rulesThis skill is limited to using the following tools:
Executes the local `copilot` CLI to get coding assistance.
Delegates tasks to GitHub Copilot CLI non-interactively with multi-model support (Claude, GPT, Gemini), permission controls, output sharing, and session resume. Useful for Copilot delegation requests, model comparisons, or programmatic runs.
Executes local codex CLI for coding assistance including code generation, debugging, codebase analysis, and task delegation. Use for second opinions or automation with --full-auto.
Delivers interactive tutorials and Q&A for GitHub Copilot CLI beginners, with developer/non-developer tracks and progress tracking.
Share bugs, ideas, or general feedback.
Executes the local copilot CLI to get coding assistance.
Note: This skill requires the copilot CLI to be installed and available in your system's PATH.
Run a single query with -p (prompt mode):
copilot -p "Your question or task here" --allow-all-tools
| Option | Description |
|---|---|
-p | Non-interactive prompt mode (required for scripting) |
--model MODEL | Specify model (e.g., claude-sonnet-4.5, gpt-5, gpt-5-mini) |
--allow-all-tools | Auto-approve all tool executions (required for -p) |
--continue | Resume the most recent session |
For all available options, run
copilot --help
Ask a coding question:
copilot -p "How do I implement a binary search in Python?" --allow-all-tools
Use a specific model:
copilot -p "Review this code for potential issues" --model gpt-5 --allow-all-tools
Let Copilot make changes automatically:
copilot -p "Refactor this function to use async/await" --allow-all-tools
Continue a previous session:
copilot -p "Now add error handling to that function" --continue --allow-all-tools
-p flag runs Copilot non-interactively and requires --allow-all-tools--model to switch models