Last active
January 6, 2025 03:21
-
-
Save vman/7b486b72d610f536a499d3cd8f5f994b to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.19/MicrosoftTeams.schema.json", | |
"manifestVersion": "1.19", | |
"version": "1.0.0", | |
"id": "${{TEAMS_APP_ID}}", | |
"icons": { | |
"color": "color.png", | |
"outline": "outline.png" | |
}, | |
"name": { | |
"short": "MyFirstAgent${{APP_NAME_SUFFIX}}", | |
"full": "Full name for MyFirstAgent" | |
}, | |
"description": { | |
"short": "Short description for MyFirstAgent", | |
"full": "Full description for MyFirstAgent" | |
}, | |
"accentColor": "#FFFFFF", | |
"composeExtensions": [], | |
"permissions": [ | |
"identity", | |
"messageTeamMembers" | |
], | |
"copilotAgents": { | |
"declarativeAgents": [ | |
{ | |
"id": "declarativeAgent", | |
"file": "declarativeAgent.json" | |
} | |
] | |
}, | |
"validDomains": [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment