[Foundry] Add scaffolding for new foundry extensions#8219
Open
trangevi wants to merge 1 commit into
Open
Conversation
Signed-off-by: trangevi <trangevi@microsoft.com>
🔗 Linked Issue RequiredThanks for the contribution! Please link a GitHub issue to this PR by adding |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds scaffolding for six new Foundry-related azd Go extensions so they can be built, versioned, and exposed through extension metadata.
Changes:
- Adds extension manifests, version files, changelogs, READMEs, and build scripts for Foundry connections, inspector, projects, routines, skills, and toolboxes.
- Adds minimal Cobra root commands with
context,version, andmetadatasubcommands for each extension. - Adds Go module definitions and dependency lock files where included.
Reviewed changes
Copilot reviewed 72 out of 78 changed files in this pull request and generated 19 comments.
Show a summary per file
| File | Description |
|---|---|
cli/azd/extensions/azure.ai.connections/CHANGELOG.md |
Adds initial release history. |
cli/azd/extensions/azure.ai.connections/README.md |
Adds initial README placeholder. |
cli/azd/extensions/azure.ai.connections/build.ps1 |
Adds Windows build script. |
cli/azd/extensions/azure.ai.connections/build.sh |
Adds Unix build script. |
cli/azd/extensions/azure.ai.connections/extension.yaml |
Adds extension manifest. |
cli/azd/extensions/azure.ai.connections/go.mod |
Adds Go module dependencies. |
cli/azd/extensions/azure.ai.connections/internal/cmd/context.go |
Adds context command. |
cli/azd/extensions/azure.ai.connections/internal/cmd/metadata.go |
Adds metadata command. |
cli/azd/extensions/azure.ai.connections/internal/cmd/root.go |
Adds root command wiring. |
cli/azd/extensions/azure.ai.connections/internal/cmd/version.go |
Adds version command. |
cli/azd/extensions/azure.ai.connections/main.go |
Adds extension entry point. |
cli/azd/extensions/azure.ai.connections/version.txt |
Adds extension version. |
cli/azd/extensions/azure.ai.inspector/CHANGELOG.md |
Adds initial release history. |
cli/azd/extensions/azure.ai.inspector/README.md |
Adds initial README placeholder. |
cli/azd/extensions/azure.ai.inspector/build.ps1 |
Adds Windows build script. |
cli/azd/extensions/azure.ai.inspector/build.sh |
Adds Unix build script. |
cli/azd/extensions/azure.ai.inspector/extension.yaml |
Adds extension manifest. |
cli/azd/extensions/azure.ai.inspector/go.mod |
Adds Go module dependencies. |
cli/azd/extensions/azure.ai.inspector/internal/cmd/context.go |
Adds context command. |
cli/azd/extensions/azure.ai.inspector/internal/cmd/metadata.go |
Adds metadata command. |
cli/azd/extensions/azure.ai.inspector/internal/cmd/root.go |
Adds root command wiring. |
cli/azd/extensions/azure.ai.inspector/internal/cmd/version.go |
Adds version command. |
cli/azd/extensions/azure.ai.inspector/main.go |
Adds extension entry point. |
cli/azd/extensions/azure.ai.inspector/version.txt |
Adds extension version. |
cli/azd/extensions/azure.ai.projects/CHANGELOG.md |
Adds initial release history. |
cli/azd/extensions/azure.ai.projects/README.md |
Adds initial README placeholder. |
cli/azd/extensions/azure.ai.projects/build.ps1 |
Adds Windows build script. |
cli/azd/extensions/azure.ai.projects/build.sh |
Adds Unix build script. |
cli/azd/extensions/azure.ai.projects/extension.yaml |
Adds extension manifest. |
cli/azd/extensions/azure.ai.projects/go.mod |
Adds Go module dependencies. |
cli/azd/extensions/azure.ai.projects/go.sum |
Adds dependency checksums. |
cli/azd/extensions/azure.ai.projects/internal/cmd/context.go |
Adds context command. |
cli/azd/extensions/azure.ai.projects/internal/cmd/metadata.go |
Adds metadata command. |
cli/azd/extensions/azure.ai.projects/internal/cmd/root.go |
Adds root command wiring. |
cli/azd/extensions/azure.ai.projects/internal/cmd/version.go |
Adds version command. |
cli/azd/extensions/azure.ai.projects/main.go |
Adds extension entry point. |
cli/azd/extensions/azure.ai.projects/version.txt |
Adds extension version. |
cli/azd/extensions/azure.ai.routines/CHANGELOG.md |
Adds initial release history. |
cli/azd/extensions/azure.ai.routines/README.md |
Adds initial README placeholder. |
cli/azd/extensions/azure.ai.routines/build.ps1 |
Adds Windows build script. |
cli/azd/extensions/azure.ai.routines/build.sh |
Adds Unix build script. |
cli/azd/extensions/azure.ai.routines/extension.yaml |
Adds extension manifest. |
cli/azd/extensions/azure.ai.routines/go.mod |
Adds Go module dependencies. |
cli/azd/extensions/azure.ai.routines/internal/cmd/context.go |
Adds context command. |
cli/azd/extensions/azure.ai.routines/internal/cmd/metadata.go |
Adds metadata command. |
cli/azd/extensions/azure.ai.routines/internal/cmd/root.go |
Adds root command wiring. |
cli/azd/extensions/azure.ai.routines/internal/cmd/version.go |
Adds version command. |
cli/azd/extensions/azure.ai.routines/main.go |
Adds extension entry point. |
cli/azd/extensions/azure.ai.routines/version.txt |
Adds extension version. |
cli/azd/extensions/azure.ai.skills/CHANGELOG.md |
Adds initial release history. |
cli/azd/extensions/azure.ai.skills/README.md |
Adds initial README placeholder. |
cli/azd/extensions/azure.ai.skills/build.ps1 |
Adds Windows build script. |
cli/azd/extensions/azure.ai.skills/build.sh |
Adds Unix build script. |
cli/azd/extensions/azure.ai.skills/extension.yaml |
Adds extension manifest. |
cli/azd/extensions/azure.ai.skills/go.mod |
Adds Go module dependencies. |
cli/azd/extensions/azure.ai.skills/go.sum |
Adds dependency checksums. |
cli/azd/extensions/azure.ai.skills/internal/cmd/context.go |
Adds context command. |
cli/azd/extensions/azure.ai.skills/internal/cmd/metadata.go |
Adds metadata command. |
cli/azd/extensions/azure.ai.skills/internal/cmd/root.go |
Adds root command wiring. |
cli/azd/extensions/azure.ai.skills/internal/cmd/version.go |
Adds version command. |
cli/azd/extensions/azure.ai.skills/main.go |
Adds extension entry point. |
cli/azd/extensions/azure.ai.skills/version.txt |
Adds extension version. |
cli/azd/extensions/azure.ai.toolboxes/CHANGELOG.md |
Adds initial release history. |
cli/azd/extensions/azure.ai.toolboxes/README.md |
Adds initial README placeholder. |
cli/azd/extensions/azure.ai.toolboxes/build.ps1 |
Adds Windows build script. |
cli/azd/extensions/azure.ai.toolboxes/build.sh |
Adds Unix build script. |
cli/azd/extensions/azure.ai.toolboxes/extension.yaml |
Adds extension manifest. |
cli/azd/extensions/azure.ai.toolboxes/go.mod |
Adds Go module dependencies. |
cli/azd/extensions/azure.ai.toolboxes/internal/cmd/context.go |
Adds context command. |
cli/azd/extensions/azure.ai.toolboxes/internal/cmd/metadata.go |
Adds metadata command. |
cli/azd/extensions/azure.ai.toolboxes/internal/cmd/root.go |
Adds root command wiring. |
cli/azd/extensions/azure.ai.toolboxes/internal/cmd/version.go |
Adds version command. |
cli/azd/extensions/azure.ai.toolboxes/main.go |
Adds extension entry point. |
cli/azd/extensions/azure.ai.toolboxes/version.txt |
Adds extension version. |
| # yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/main/cli/azd/extensions/extension.schema.json | ||
| capabilities: | ||
| - custom-commands | ||
| - mcp-server |
| # yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/main/cli/azd/extensions/extension.schema.json | ||
| capabilities: | ||
| - custom-commands | ||
| - mcp-server |
| # yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/main/cli/azd/extensions/extension.schema.json | ||
| capabilities: | ||
| - custom-commands | ||
| - mcp-server |
| # yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/main/cli/azd/extensions/extension.schema.json | ||
| capabilities: | ||
| - custom-commands | ||
| - mcp-server |
| # yaml-language-server: $schema=https://raw.githubusercontent.com/Azure/azure-dev/refs/heads/main/cli/azd/extensions/extension.schema.json | ||
| capabilities: | ||
| - custom-commands | ||
| - mcp-server |
Comment on lines
+1
to
+3
| # `azd` Demo Extension | ||
|
|
||
| An azd Demo extension |
Comment on lines
+1
to
+3
| # `azd` Demo Extension | ||
|
|
||
| An azd Demo extension |
Comment on lines
+1
to
+3
| # `azd` Demo Extension | ||
|
|
||
| An azd Demo extension |
Comment on lines
+1
to
+3
| # `azd` Demo Extension | ||
|
|
||
| An azd Demo extension |
Comment on lines
+1
to
+3
| # `azd` Demo Extension | ||
|
|
||
| An azd Demo extension |
JeffreyCA
reviewed
May 15, 2026
Contributor
There was a problem hiding this comment.
Looks good, the only thing that's missing I'd say are the CI/pipeline pieces which azd x init doesn't scaffold. Things like:
- eng/pipelines/release-ext-azure-ai-.yml
- .github/workflows/lint-ext-azure-ai-.yml
- .github/scripts/approval-ext-azure-ai-agents.js (if you want the same approval gates to apply)
- ci-build.ps1
- ci-test.ps1
- version.txt
- cspell.yaml
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.
No description provided.