Install
openclaw skills install copilot-cli-skillRun GitHub Copilot CLI from OpenClaw for coding tasks in a target project directory. Use when the user asks OpenClaw to use Copilot for implementation, debug...
openclaw skills install copilot-cli-skillUse this skill to reliably call Copilot CLI from OpenClaw.
copilot --version) before first task.exec with pty:true.workdir to the target repository.background:true and track via process.Use:
exec.command: copilot -p "<task>" --allow-all-toolsexec.pty: trueexec.workdir: <repo path>Use --allow-tool and --deny-tool to control what Copilot can do:
exec.command: copilot -p "<task>" --allow-tool 'shell(git)' --allow-tool 'write'exec.pty: trueexec.workdir: <repo path>To block dangerous operations:
copilot -p "<task>" --allow-all-tools --deny-tool 'shell(rm)' --deny-tool 'shell(git push)'Use:
exec.command: copilotexec.pty: trueexec.workdir: <repo path>exec(background:true, pty:true, workdir, command:"copilot -p '...' --allow-all-tools")sessionId.process action:poll.process action:log.process action:submit.Use:
exec.command: copilot --resume (select from list)exec.command: copilot --continue (resume most recent)copilot is missing or auth fails, return exact remediation steps.pty/workdir/background) separate from CLI args.--allow-tool with specific scopes over --allow-all-tools for safety.--deny-tool 'shell(rm)' when working in directories with important data.references/copilot-doc-summary.mdreferences/copilot-usage-recipes.mdscripts/run-copilot-example.sh