Thank you for your interest in the Copilot Studio extension! This project is the source code for the Copilot Studio extension in the Visual Studio Code Marketplace.
Source code is complete; build requires internal dependencies.
This repository contains the full source code that produces the shipping extension. However, the build currently requires NuGet packages from an internal feed that is not accessible to external contributors.
| Area | Status |
|---|---|
| Source code | Complete — matches the published extension |
| Build | Requires internal Microsoft.Agents.* NuGet packages. External builds are not supported yet. |
| Unit tests | 530 unit tests + 13 LSP journal tests pass internally |
| VSIX packaging | Builds internally for 6 platform targets (win32-x64, win32-arm64, linux-x64, linux-arm64, darwin-x64, darwin-arm64) |
The internal NuGet dependency comes from the cloud sync module (PullAgent), which uses Microsoft's internal Dataverse authoring SDK. We are replacing this with delegated use of PAC (Power Platform CLI), which will eliminate the internal package requirements entirely.
Once that migration is complete:
nuget.configwill reference only nuget.orgdotnet buildanddotnet testwill work for external contributors- This file will be updated to reflect the fully open contribution model
In the meantime, the source code is available for review, issue filing with source context, and understanding the extension's architecture.
src/
LanguageServers/ # .NET language server (C#)
CLaSP/ # Common Language Server Protocol framework
PowerPlatformLS/ # Language server solution (11 projects)
vscode-extensions/ # VS Code extension (TypeScript)
microsoft-powerplatformlang-extension/ # Extension entry point
shared/ # Shared TypeScript modules
docs/ # Architecture documentation
assets/ # Shared assets (BotSchema.json)
build/ # Build infrastructure
Please use GitHub Issues. We provide issue templates for bug reports and feature requests.
For bugs, we recommend using the extension's built-in issue reporter:
- Open the Command Palette (
Ctrl+Shift+P/Cmd+Shift+P) - Run Help: Copilot Studio: Report Issue
This automatically includes diagnostic information like your session ID, which helps us investigate more efficiently.
Note: External pull requests that require building the project cannot be validated until the internal NuGet dependencies are removed (see roadmap above). We welcome contributions and will review them as capacity allows — documentation fixes, TypeScript extension changes, and issue reports are particularly easy to accept during this period.
- Fork the repository and create a feature branch from
main. - Make your changes, following the existing code style.
- Ensure your changes do not introduce new warnings or errors (where possible — see Build State above).
- Submit a pull request with a clear description of the change and its motivation.
- Keep PRs focused — one logical change per PR.
- Include a summary of what changed and why.
- Reference any related issues (e.g.,
Fixes #123). - For bug fixes, describe how to reproduce the original problem.
To build this project, you currently need access to an internal NuGet feed. We are working to remove this requirement (see roadmap above).
The toolchain requirements are:
- .NET 10 SDK or later
- Node.js 22 LTS or later
- Visual Studio Code
If you have access to the internal NuGet feed that provides the
Microsoft.Agents.* packages, you can build and test the full project today.
The repo's nuget.config lists only nuget.org. Because it does not use
<clear />, NuGet automatically merges it with your user-level configuration.
Add the internal feed to your user-level config once:
dotnet nuget add source <feed-url> --name CCI-Dependency \
--configfile ~/.nuget/NuGet/NuGet.ConfigThe feed URL is available from your team's internal onboarding documentation or the ObjectModel monorepo's
nuget.config.
After this, dotnet restore resolves all six Microsoft.Agents.* packages
automatically — three from nuget.org and three from the internal feed.
dotnet build src/LanguageServers/PowerPlatformLS/PowerPlatformLS.sln
dotnet test src/LanguageServers/PowerPlatformLS/PowerPlatformLS.slncd src/vscode-extensions
npm install
npm run buildFour Microsoft.Agents.* packages are currently only available on the
internal feed: Platform.Content, Platform.Content.Internal,
ObjectModel.Dataverse, and ObjectModel.NodeGenerators. We are eliminating
these by migrating PullAgent to delegate through
PAC CLI.
When that work completes, nuget.config will reference only nuget.org and
external contributors will be able to build, test, and submit verified PRs.
Contributions that advance this migration are especially valuable.
This project has adopted the Microsoft Open Source Code of Conduct. See CODE_OF_CONDUCT.md for details.
This project is licensed under the MIT License.