A plugin for Claude Code and GitHub Copilot CLI that enables authoring, testing, and troubleshooting Microsoft Copilot Studio agents through YAML files — directly from your terminal.
- Claude Code or GitHub Copilot CLI
- VS Code with the Copilot Studio Extension
/plugin marketplace add microsoft/skills-for-copilot-studio
/plugin install copilot-studio@microsoft/skills-for-copilot-studiogit clone https://github.com/microsoft/skills-for-copilot-studio.git
# Load for a single session
claude --plugin-dir /path/to/skills-for-copilot-studio
# Or install persistently (user-wide)
claude plugin install /path/to/skills-for-copilot-studio --scope user
# Or install for a specific project
claude plugin install /path/to/skills-for-copilot-studio --scope projectThe plugin provides three commands, each backed by a specialized agent:
/copilot-studio:author Create and edit YAML (topics, actions, knowledge, triggers, variables)
/copilot-studio:test Test published agents — point-tests, batch suites, or evaluation analysis
/copilot-studio:troubleshoot Debug issues — wrong topic routing, validation errors, unexpected behavior
After cloning a Copilot Studio agent with the VS Code extension:
# Open your agent's directory
cd ~/CopilotStudio/MyAgent
# Design and build topics
/copilot-studio:author Create a topic that handles IT service requests
# Push & publish in Copilot Studio, then test
/copilot-studio:test Send "How do I request a new laptop?" to the published agent
# Troubleshoot and fix issues
/copilot-studio:troubleshoot The agent is hallucinating — it's not using real data from our knowledge baseSee SETUP_GUIDE.md for a full end-to-end walkthrough including validation, testing options, and troubleshooting.
This plugin is an experimental research project, not an officially supported Microsoft product. The Copilot Studio YAML schema may change without notice. Always review and validate generated YAML before pushing to your environment — AI-generated output may contain errors or unsupported patterns.
See CONTRIBUTING.md for local development setup, building bundled scripts, and project structure.