윤정민 fd504738eb
All checks were successful
Build and Deploy Teams Planner Bot / build-and-run (push) Successful in 14s
initial: teams planner bot with gemini classifier and docker deploy
2026-05-15 16:53:08 +09:00

49 lines
1.5 KiB
JSON

{
"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.16/MicrosoftTeams.schema.json",
"manifestVersion": "1.16",
"version": "0.1.0",
"id": "REPLACE_WITH_YOUR_BOT_APP_ID",
"packageName": "com.example.teamsplannerbot",
"developer": {
"name": "Internal",
"websiteUrl": "https://example.com",
"privacyUrl": "https://example.com/privacy",
"termsOfUseUrl": "https://example.com/terms"
},
"icons": {
"color": "color.png",
"outline": "outline.png"
},
"name": {
"short": "Planner Bot",
"full": "Teams Planner Bot"
},
"description": {
"short": "자연어로 Planner 작업을 만들고 업데이트합니다.",
"full": "사용자가 평범한 말로 작업 진행 상황을 알려주면 적절한 Plan/Bucket에 작업을 생성하거나 업데이트하는 봇입니다."
},
"accentColor": "#4F6BED",
"bots": [
{
"botId": "REPLACE_WITH_YOUR_BOT_APP_ID",
"scopes": ["personal", "team", "groupchat"],
"supportsFiles": false,
"isNotificationOnly": false,
"commandLists": [
{
"scopes": ["personal", "team", "groupchat"],
"commands": [
{ "title": "logout", "description": "Microsoft 계정 로그아웃" }
]
}
]
}
],
"permissions": ["identity", "messageTeamMembers"],
"validDomains": ["token.botframework.com"],
"webApplicationInfo": {
"id": "REPLACE_WITH_YOUR_BOT_APP_ID",
"resource": "https://graph.microsoft.com/"
}
}