A collection of CLI plugins for GitHub Copilot CLI and Claude Code.
These plugins run in GitHub Copilot CLI (copilot). Install by placing in .github/plugins/ or ~/.copilot/plugins/.
| Plugin | Description | CLI Tools Used |
|---|---|---|
| dev-workflow-automation | Full-cycle developer workflow for GCP, GitHub, and Atlassian. 16 slash commands from /login to /retrospective. |
gh, acli, gcloud, kubectl, curl |
| gke-health-monitor | Monitor GKE infrastructure health across 7 dimensions — URL maps, pods, Pub/Sub, nodes, latency, Spanner. | gcloud, kubectl, curl, jq |
| slo-cujs | Generate evidence-backed CUJs and SLO recommendations from GitHub, Confluence, Jira, GCP, and K8s. Self-contained with semantic search. | gh, acli, gcloud, kubectl, python3 |
| sqlserver-plugin | SQL Server diagnostics — DMV analysis, blocking chains, execution plans, anomaly detection. | External mssql-mcp-server |
| system-diag | System diagnostics — CPU, memory, storage, network, battery, and hardware info. | python3 |
| benchmark-models | Benchmark AI models on coding tasks with scoring rubrics and HTML reports. | Playwright, shell scripts |
This plugin runs in Claude Code and is used to generate Copilot CLI plugins.
| Plugin | Description |
|---|---|
| copilot-plugin-generator | Analyzes any codebase and generates a complete Copilot CLI plugin with agents, skills, hooks, MCP server, and scripts. |
- CLI-first — All plugins use CLI tools (
gh,acli,gcloud,kubectl) and bash/python scripts instead of MCP servers where possible - Self-contained — No external backend servers or databases required (except sqlserver-plugin which needs an external MCP server for stateful SQL connections)
- Copilot CLI as the LLM — Agents handle all reasoning; scripts are pure data access
- Read-only external access — Plugins read from external systems but never write (enforced via hooks)
Plugin format specification: docs/copilot_cli_docs/