Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR consolidates the endpoint registration functionality into the blueprint subcommand, removing the standalone endpoint subcommand. The change simplifies the setup workflow by automatically registering the blueprint messaging endpoint immediately after blueprint creation, rather than requiring it as a separate step.
Key Changes
- Endpoint subcommand removed: The standalone
a365 setup endpointcommand has been eliminated - Blueprint subcommand enhanced: Endpoint registration now occurs automatically within blueprint creation via
RegisterEndpointAndSyncAsync() - Test coverage maintained: Endpoint-related tests moved from
EndpointSubcommandTests.cstoBlueprintSubcommandTests.cs
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
src/Microsoft.Agents.A365.DevTools.Cli/Commands/SetupSubcommands/EndpointSubcommand.cs |
Entire file deleted as endpoint functionality merged into blueprint subcommand |
src/Microsoft.Agents.A365.DevTools.Cli/Commands/SetupSubcommands/BlueprintSubcommand.cs |
Added RegisterEndpointAndSyncAsync() method and integrated endpoint registration into blueprint creation flow |
src/Microsoft.Agents.A365.DevTools.Cli/Commands/SetupCommand.cs |
Removed endpoint subcommand registration and updated command description |
src/Microsoft.Agents.A365.DevTools.Cli/Commands/SetupSubcommands/AllSubcommand.cs |
Removed separate endpoint registration step (Step 5) as it's now handled within blueprint creation |
src/Tests/Microsoft.Agents.A365.DevTools.Cli.Tests/Commands/EndpointSubcommandTests.cs |
Test file deleted - tests moved to BlueprintSubcommandTests.cs |
src/Tests/Microsoft.Agents.A365.DevTools.Cli.Tests/Commands/BlueprintSubcommandTests.cs |
Added endpoint-related tests and updated all test method calls to include new IBotConfigurator parameter |
src/Tests/Microsoft.Agents.A365.DevTools.Cli.Tests/Commands/SetupCommandTests.cs |
Removed endpoint subcommand assertions and related test cases |
src/Microsoft.Agents.A365.DevTools.Cli/Commands/SetupSubcommands/AllSubcommand.cs
Show resolved
Hide resolved
tmlsousa
approved these changes
Nov 26, 2025
mengyimicro
approved these changes
Nov 27, 2025
sellakumaran
pushed a commit
that referenced
this pull request
Feb 27, 2026
* Update blueprint setup command * Respond to comments
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.
Merging endpoint setup into blueprint subcommand.