A curated collection of plugins and extensions for GitHub Copilot CLI.
Extensions are Node.js processes that add custom tools, hooks, and event-driven behaviors to Copilot CLI via the @github/copilot-sdk.
| Extension | Description |
|---|---|
| copilot-kanban | Real-time session & fleet monitoring dashboard with web UI |
| cron-task | Schedule recurring tasks — shell commands or agent prompts on a timer |
| phase-router | LLM-driven intent detection + intelligent model switching |
Copy the extension directory to either location:
# Project-level
cp -r extensions/<name> your-project/.github/extensions/
# User-level (all projects)
cp -r extensions/<name> ~/.copilot/extensions/Restart Copilot CLI or run /clear to load.
Plugins bundle agents, skills, hooks, and MCP configs into distributable packages.
# Register this marketplace
copilot plugin marketplace add Poorgramer-Zack/copilot-cli-things
# Browse available plugins
copilot plugin marketplace browse copilot-cli-things
# Install a plugin
copilot plugin install <plugin-name>@copilot-cli-things- Create a directory under
extensions/<name>/ - Add
extension.mjs(entry point) andREADME.md - Submit a PR
- Create a directory under
plugins/<name>/ - Add
plugin.jsonmanifest and plugin components (agents, skills, hooks, etc.) - Register it in
.github/plugin/marketplace.json - Submit a PR