[feat] Add BotBuilder Plugin package, sample and tests#190
Merged
Conversation
added 3 commits
October 20, 2025 12:12
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR adds a new microsoft-teams-botbuilder package to enable backward compatibility with legacy Microsoft Bot Framework bots. The integration allows existing bots built with the BotBuilder SDK to work within the new Microsoft Teams AI Library architecture.
Key Changes
- Introduces the
microsoft-teams-botbuilderpackage with a plugin that bridges BotBuilder SDK and the Teams Apps framework - Adds a test application demonstrating BotBuilder integration with the new framework
- Refactors the HTTP plugin to expose response handling methods for plugin extensibility
Reviewed Changes
Copilot reviewed 11 out of 13 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
uv.lock |
Adds dependency lock entries for the new botbuilder package, test application, and required Bot Framework SDK dependencies (botbuilder-core, botbuilder-integration-aiohttp, etc.) |
packages/botbuilder/pyproject.toml |
Defines the new microsoft-teams-botbuilder package with dependencies on Bot Framework SDK and Teams packages |
packages/botbuilder/src/microsoft/teams/botbuilder/botbuilder_plugin.py |
Implements the BotBuilderPlugin that integrates Bot Framework adapters and handlers with the Teams Apps framework |
packages/botbuilder/src/microsoft/teams/botbuilder/__init__.py |
Exports the BotBuilderPlugin and BotBuilderPluginOptions for public API |
packages/botbuilder/tests/test_botbuilder_plugin.py |
Provides comprehensive test coverage for the BotBuilderPlugin functionality |
tests/botbuilder/src/main.py |
Example test application demonstrating BotBuilder and Teams framework integration |
tests/botbuilder/pyproject.toml |
Configuration for the botbuilder test application |
packages/apps/src/microsoft/teams/apps/http_plugin.py |
Refactors response handling into a protected method for extensibility |
pyrightconfig.json |
Adds the new botbuilder package to type checking configuration |
pyproject.toml |
Registers the new package in the workspace |
README.md |
Documents the new package and applies minor formatting fixes |
MehakBindra
force-pushed
the
mehak/botbuilder
branch
from
October 29, 2025 00:44
e362c45 to
9625f5b
Compare
heyitsaamir
reviewed
Oct 29, 2025
lilyydu
reviewed
Oct 30, 2025
MehakBindra
force-pushed
the
mehak/botbuilder
branch
from
November 4, 2025 23:49
35a0587 to
4c4594a
Compare
heyitsaamir
reviewed
Nov 5, 2025
heyitsaamir
left a comment
Collaborator
There was a problem hiding this comment.
Code looks good. Sample could use work! TY!
lilyydu
reviewed
Nov 5, 2025
MehakBindra
force-pushed
the
mehak/botbuilder
branch
from
November 11, 2025 21:26
a5a316c to
3037dd2
Compare
heyitsaamir
reviewed
Nov 12, 2025
heyitsaamir
left a comment
Collaborator
There was a problem hiding this comment.
Looks good!
Asking for a comment, and I still don't fully understand the app_id thing. Why do we need it?
heyitsaamir
approved these changes
Nov 12, 2025
Merged
lilyydu
added a commit
that referenced
this pull request
Nov 22, 2025
## Release 2.0.0a6 ### Changes - Make images required for Thumbnail (#216) - Revert "Add comment" - Add comment - Move tests to examples (#199) - Bump glob from 11.0.3 to 11.1.0 in /tests/tab/Web (#215) - Remove Agents class (#213) - Add signin/failure invoke activity support (#206) - Update config.yml (#214) - Adds a github template when New issues are created (#212) - feat: add OAuth support for regional bots (#209) - [feat] Add BotBuilder Plugin package, sample and tests (#190) Co-authored-by: lilydu <[email protected]>
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.
BotBuilderPlugin(overrides http plugin'son_activity_request)HttpPluginto easily extend to botbuilder without code duplicationHttpPluginOptionsto be able to extend easily