Conversation
added 2 commits
August 26, 2025 10:44
Contributor
There was a problem hiding this comment.
Pull Request Overview
This pull request introduces the initial implementation of the @microsoft/agents-hosting-extensions-teams package, providing comprehensive Teams-specific extensions for the Microsoft 365 Agents SDK. The changes establish a foundation for building Microsoft Teams agents with support for messaging, meetings, extensions, and Teams-specific data structures.
Key changes:
- Complete Teams extension package structure with TypeScript definitions and Zod schemas
- Comprehensive Teams activity handlers and event management system
- Message extensions, task modules, and meeting event support
Reviewed Changes
Copilot reviewed 96 out of 97 changed files in this pull request and generated 7 comments.
| File | Description |
|---|---|
| tsconfig.build.json | Added build configuration for new Teams extensions package |
| samples/teams/*.ts | Created example implementations demonstrating Teams functionality |
| packages/agents-hosting-extensions-teams/package.json | Package manifest with dependencies and metadata |
| packages/agents-hosting-extensions-teams/src/* | Core Teams functionality including extensions, parsers, and type definitions |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
axelsrz
approved these changes
Sep 8, 2025
rido-min
added a commit
that referenced
this pull request
Sep 8, 2025
* restore teams-extensions. Pending Tests verification * fixes @microsoft/agents-hosting-extensions-teams TeamsInfo.getTeamChannels wrongly typed Fixes #507 * fix: correct typos in tenantId parameter and test descriptions --------- Co-authored-by: Rido <nouser@gh.com>
rido-min
added a commit
that referenced
this pull request
Sep 8, 2025
* Reorder fileDownloaders execution in agentApplication (#543) * chore: update dependencies in package.json and package-lock.json (#549) Co-authored-by: Rido <nouser@gh.com> * fix: update npm install display name to npm ci and adjust branch filter for pull requests (#557) * fix: update npm install display name to npm ci and adjust branch filter for pull requests * fix: update branch filter in CI configuration to include release branches --------- Co-authored-by: Rido <nouser@gh.com> * Add citation URL to streaming response metadata (#558) * citation url * add streamingResponse tests --------- Co-authored-by: Rido <nouser@gh.com> * Restore teams-extensions (#548) * restore teams-extensions. Pending Tests verification * fixes @microsoft/agents-hosting-extensions-teams TeamsInfo.getTeamChannels wrongly typed Fixes #507 * fix: correct typos in tenantId parameter and test descriptions --------- Co-authored-by: Rido <nouser@gh.com> * fix lock * rolback deps --------- Co-authored-by: Cecilia Avila <44245136+ceciliaavila@users.noreply.github.com> Co-authored-by: Rido <nouser@gh.com>
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.
This pull request introduces the initial implementation of the
@microsoft/agents-hosting-extensions-teamspackage, providing Teams-specific extensions for the Microsoft 365 Agents SDK. The changes include the package manifest, documentation, and a comprehensive set of type definitions and schemas for Teams activities, events, and data structures. The most important changes are grouped below.Package setup and documentation:
package.jsonfor@microsoft/agents-hosting-extensions-teamswith metadata, dependencies, and configuration for publishing the package.README.mdexplaining installation, usage, and available Teams-specific features for agent developers.Core Teams activity and data types:
ChannelInfo,TeamInfo,TenantInfo,NotificationInfo,TeamsMeetingInfo,TeamsChannelData, and related settings, supporting validation and type safety for Teams activity payloads. [1] [2] [3] [4] [5] [6] [7]src/activity-extensions/index.tsto expose all relevant Teams activity types for external usage.Teams-specific event types:
Teams channel account and client interfaces:
TeamsChannelAccountinterface extending the base channel account with Teams-specific properties.