Integrate Azure Functions Skills with Copilot Chat - #5127
Draft
Tsuyoshi Ushio (TsuyoshiUshio) wants to merge 5 commits into
Draft
Integrate Azure Functions Skills with Copilot Chat#5127Tsuyoshi Ushio (TsuyoshiUshio) wants to merge 5 commits into
Tsuyoshi Ushio (TsuyoshiUshio) wants to merge 5 commits into
Conversation
Copilot started reviewing on behalf of
Tsuyoshi Ushio (TsuyoshiUshio)
July 7, 2026 23:18
View session
Contributor
There was a problem hiding this comment.
Pull request overview
This PR prototypes a “Build with Copilot Chat” flow tailored to serverless-agent scenarios by integrating Azure Functions Skills into the Functions template gallery experience, including local skill installation and VSIX packaging adjustments to keep the skills library external.
Changes:
- Adds an AI generation configuration and updates the Copilot Chat prompt content to steer generation through Azure Functions Skills.
- Installs Azure Functions Skills locally (best-effort) before opening Copilot Chat and records related telemetry.
- Switches demo dependencies to local
.tgzfiles and updates bundling/packaging to keep@azure/functions-skillsexternal but included in the VSIX.
Reviewed changes
Copilot reviewed 4 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| src/commands/createNewProject/FunctionsTemplateGalleryController.ts | Adds Copilot Chat UX/prompt updates and installs Azure Functions Skills before launching chat. |
| package.json | Adds local-file dependency on @azure/functions-skills and switches webview dependency to a local .tgz. |
| package-lock.json | Updates lockfile entries for local-file dependencies. |
| esbuild.mjs | Marks @azure/functions-skills as external to keep it out of the bundle. |
| .vscodeignore | Re-includes node_modules/@azure/functions-skills/** in the VSIX package. |
Comment on lines
+332
to
+334
| `**Azure Functions Skills:**`, | ||
| `- Azure Functions Skills have been installed locally in this workspace for GitHub Copilot Chat.`, | ||
| `- Use the relevant skills first, especially azure-functions-setup, azure-functions-create, and azure-functions-agents when this is a serverless-agent scenario.`, |
Tsuyoshi Ushio (TsuyoshiUshio)
force-pushed
the
feat/azure-functions-skills-copilot-demo
branch
from
August 12, 2026 20:16
e0fd504 to
1dfb7c8
Compare
Reference local demo packages, customize Template Gallery Build with Copilot Chat for serverless-agent scenarios, and install Azure Functions Skills locally before opening chat. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Use one serverless-agent example followed by standard Azure Functions examples, and route chat instructions through setup plus the prompt-selected skill. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Install Azure Functions Skills by default from Browse Templates and Build with Copilot Chat, while allowing users to opt out via a shared checkbox. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Build Azure Functions Skills from v0.0.6-preview and consume the rebased webview package locally until the published skills package clears the internal feed delay. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Resolve @azure/functions-skills from the official 0.0.6-preview release and bundle it into the extension instead of shipping a local archive. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Tsuyoshi Ushio (TsuyoshiUshio)
force-pushed
the
feat/azure-functions-skills-copilot-demo
branch
from
August 20, 2026 17:24
1dfb7c8 to
0b63dc2
Compare
Tsuyoshi Ushio (TsuyoshiUshio)
marked this pull request as ready for review
August 20, 2026 17:42
Tsuyoshi Ushio (TsuyoshiUshio)
marked this pull request as draft
August 20, 2026 17:46
Author
|
https://github.com/microsoft/vscode-azuretools/pull/2359 Should be merged first then we need to update this PR. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Integrates Azure Functions Skills into the Template Gallery's Build with Copilot Chat flow.
@azure/functions-skills@0.0.6-previewdependency and bundles it into the extensionmainDependency and merge order
This PR still depends on microsoft/vscode-azuretools#2359. The local
microsoft-vscode-azext-webview-1.2.0.tgzis retained because it contains theaiGenerationandworkspaceOptionsAPIs used here. The published@microsoft/vscode-azext-webview@1.2.0package does not contain those APIs.Keep this PR in draft until microsoft/vscode-azuretools#2359 is merged and a package containing its changes is published. Then replace the local webview tgz with that published version, regenerate the lockfile, and revalidate before marking this PR ready.
Validation
npm install --ignore-scriptsresolves@azure/functions-skills@0.0.6-previewfrom the official public feednpm run build:esbuildnpm run build:checknpx eslint src/commands/createNewProject/FunctionsTemplateGalleryController.ts --max-warnings 0npm run package -- --out <artifact-path>