원클릭으로
copilot
Translates task requirements into GitHub Copilot CLI commands. Used by copilot-driver agent to execute coding tasks via Copilot.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Translates task requirements into GitHub Copilot CLI commands. Used by copilot-driver agent to execute coding tasks via Copilot.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Translates task requirements into Cursor CLI commands. Used by cursor-driver agent to execute coding tasks via Cursor.
Intelligently routes and delegates coding tasks to the best AI agent (Codex, Cursor, Gemini, Copilot). Use /delegate <task> to automatically pick the optimal agent based on task type and complexity.
Translates task requirements into Gemini CLI commands. Used by gemini-driver agent to execute coding tasks via Google Gemini.
"Structured brainstorming with research-driven exclusion zones and shape uniqueness enforcement. Forces divergent thinking through volume and a hard constraint: no idea can take the same shape as any prior art or any previous idea. Use when exploring solutions to a problem, designing features, or when the obvious approach might not be the best one."
Translates task requirements into Codex CLI commands. Used by codex-driver agent to execute coding tasks via OpenAI Codex.
| name | copilot |
| description | Translates task requirements into GitHub Copilot CLI commands. Used by copilot-driver agent to execute coding tasks via Copilot. |
Subagents run with a minimal PATH. Always include mise/node paths:
export PATH="$HOME/.local/share/mise/installs/node/24.13.0/bin:$HOME/.local/bin:$PATH" && copilot <args>
Always apply these for programmatic (non-interactive) execution:
-p "<prompt>" — required for single-command execution--allow-all-paths — required when creating or editing filesexport PATH="$HOME/.local/share/mise/installs/node/24.13.0/bin:$HOME/.local/bin:$PATH" && copilot -p "<prompt>"
export PATH="$HOME/.local/share/mise/installs/node/24.13.0/bin:$HOME/.local/bin:$PATH" && copilot -p "<prompt>" --allow-all-paths
export PATH="$HOME/.local/share/mise/installs/node/24.13.0/bin:$HOME/.local/bin:$PATH" && copilot -p "<prompt>" --allow-all-paths --allow-all-urls
export PATH="$HOME/.local/share/mise/installs/node/24.13.0/bin:$HOME/.local/bin:$PATH" && copilot --continue
Note: Session inherits its original model and permissions. Use -p "<prompt>" with --continue if providing a new prompt.
| Task Type | Flags | Notes |
|---|---|---|
| Analysis, review, Q&A | (none) | Read-only by default |
| Create or edit files | --allow-all-paths | Standard for most coding tasks |
| Access specific URL | --allow-url <domain> | e.g., --allow-url github.com |
| Access any URL | --allow-all-urls | Confirm with user first |
When the calling agent specifies requirements, translate to flags:
| Requirement | Flag | Notes |
|---|---|---|
| Default / balanced | --model claude-sonnet-4.6 | Standard coding tasks (1x cost) |
| Fast / cheap | --model claude-haiku-4.5 | Quick, straightforward tasks (0.33x cost) |
| Complex / high-quality | --model claude-opus-4.6 | Multi-step problems, nuanced reasoning (3x cost) |
| OpenAI | --model gpt-5.2-codex | OpenAI's code model (1x cost) |
--model gemini-3-pro | Google's model (1x cost) |
If not specified, use default: claude-sonnet-4.6.
Reference files in prompts using @ syntax:
copilot -p "Explain @src/config/settings.ts"
Report to user: "You can resume this Copilot session by saying 'copilot continue'."
--allow-all-urls: confirm with user unless pre-authorizedCopilot automatically delegates to internal sub-agents (not configurable via flags):
| Sub-agent | Used for |
|---|---|
explore | Fast codebase exploration and Q&A |
task | Executing commands (tests, builds, installs) |
general-purpose | Complex multi-step tasks |
code-review | Reviewing code changes |
For interactive sessions (not programmatic), these slash commands are available:
| Command | Function |
|---|---|
/model | Select AI model |
/agent | Select custom agent |
/delegate [prompt] | Hand off to GitHub Copilot coding agent |
/context | View token usage |
/compact | Compress conversation history |