GitHub Copilot CLI host adapter for the shared polycli companion.
copilot plugin marketplace add bbingz/polycli
copilot plugin install polycli-copilot@polycli-hostsInvoke the installed polycli skill with:
polycli health
polycli timing --provider qwen --json
Run health once after install, login, or provider config changes. With no provider it probes every integrated provider and reports healthyProviders; use --provider only for single-provider diagnosis. Normal ask, review, and rescue calls should run directly with --provider. If health shows the provider is unavailable or the probe fails, fix that provider CLI first. The Copilot host adapter only wraps the shared companion.
- Skill:
polycli
The skill runs the bundled companion at scripts/polycli-companion.bundle.mjs, so the installed plugin does not depend on the source repository layout.
setuphealthaskrescuereviewadversarial-reviewstatusresultcanceltiming
polycli setup --provider gemini
polycli health
polycli ask --provider kimi Explain this stack trace
polycli rescue --provider qwen --background Audit the flaky test and explain the root cause
polycli review --provider gemini --scope staged
polycli status --wait
polycli result pr-1234abcd
polycli cancel pr-1234abcd
polycli timing --provider qwen --json
- Start a long task with
--background - Check progress with
polycli status <jobId>orpolycli status <jobId> --wait - Read the final output with
polycli result <jobId> - Cancel an active job with
polycli cancel <jobId>