├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── RootBot ├── AdapterWithErrorHandler.cs ├── Bots │ └── RootBot.cs ├── Cards │ ├── AdaptiveCardFactory.cs │ ├── FlightItineraryCard.json │ ├── WeatherCard.json │ └── WelcomeCard.json ├── Controllers │ ├── BotController.cs │ └── SkillController.cs ├── DeploymentTemplates │ ├── DeployUseExistResourceGroup │ │ ├── parameters-for-template-AzureBot-with-rg.json │ │ ├── parameters-for-template-BotApp-with-rg.json │ │ ├── readme.md │ │ ├── template-AzureBot-with-rg.json │ │ └── template-BotApp-with-rg.json │ └── DeployWithNewResourceGroup │ │ ├── parameters-for-template-AzureBot-new-rg.json │ │ ├── parameters-for-template-BotApp-new-rg.json │ │ ├── readme.md │ │ ├── template-AzureBot-new-rg.json │ │ └── template-BotApp-new-rg.json ├── Dialogs │ └── MainDialog.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── RootBot.csproj ├── SkillsConfiguration.cs ├── Startup.cs ├── TeamsAppManifest │ ├── icon-color.png │ ├── icon-outline.png │ └── manifest.json ├── TokenExchangeSkillHandler.cs ├── appsettings.template.json └── wwwroot │ └── default.htm ├── SECURITY.md ├── SUPPORT.md ├── SkillBot ├── Bots │ └── SkillBot.cs ├── CLU │ ├── CLUResolutionKinds.cs │ └── ConversationLanguageUnderstandingClient.cs ├── CognitiveModels │ └── SkillModel.cs ├── Controllers │ └── BotController.cs ├── DeploymentTemplates │ ├── DeployUseExistResourceGroup │ │ ├── parameters-for-template-AzureBot-with-rg.json │ │ ├── parameters-for-template-BotApp-with-rg.json │ │ ├── readme.md │ │ ├── template-AzureBot-with-rg.json │ │ └── template-BotApp-with-rg.json │ └── DeployWithNewResourceGroup │ │ ├── parameters-for-template-AzureBot-new-rg.json │ │ ├── parameters-for-template-BotApp-new-rg.json │ │ ├── readme.md │ │ ├── template-AzureBot-new-rg.json │ │ └── template-BotApp-new-rg.json ├── Dialogs │ ├── ActivityRouterDialog.cs │ ├── CLURecognizer.cs │ ├── CancelAndHelpDialog.cs │ ├── DateResolverDialog.cs │ ├── SkillDetails.cs │ └── SkillDialog.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── SkillAdapterWithErrorHandler.cs ├── SkillBot.csproj ├── Startup.cs ├── appsettings.template.json └── wwwroot │ ├── default.htm │ └── manifest │ └── ssoskillbot-manifest-1.0.json └── SkillsBot.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/README.md -------------------------------------------------------------------------------- /RootBot/AdapterWithErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/AdapterWithErrorHandler.cs -------------------------------------------------------------------------------- /RootBot/Bots/RootBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/Bots/RootBot.cs -------------------------------------------------------------------------------- /RootBot/Cards/AdaptiveCardFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/Cards/AdaptiveCardFactory.cs -------------------------------------------------------------------------------- /RootBot/Cards/FlightItineraryCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/Cards/FlightItineraryCard.json -------------------------------------------------------------------------------- /RootBot/Cards/WeatherCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/Cards/WeatherCard.json -------------------------------------------------------------------------------- /RootBot/Cards/WelcomeCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/Cards/WelcomeCard.json -------------------------------------------------------------------------------- /RootBot/Controllers/BotController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/Controllers/BotController.cs -------------------------------------------------------------------------------- /RootBot/Controllers/SkillController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/Controllers/SkillController.cs -------------------------------------------------------------------------------- /RootBot/DeploymentTemplates/DeployUseExistResourceGroup/parameters-for-template-AzureBot-with-rg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/DeploymentTemplates/DeployUseExistResourceGroup/parameters-for-template-AzureBot-with-rg.json -------------------------------------------------------------------------------- /RootBot/DeploymentTemplates/DeployUseExistResourceGroup/parameters-for-template-BotApp-with-rg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/DeploymentTemplates/DeployUseExistResourceGroup/parameters-for-template-BotApp-with-rg.json -------------------------------------------------------------------------------- /RootBot/DeploymentTemplates/DeployUseExistResourceGroup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/DeploymentTemplates/DeployUseExistResourceGroup/readme.md -------------------------------------------------------------------------------- /RootBot/DeploymentTemplates/DeployUseExistResourceGroup/template-AzureBot-with-rg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/DeploymentTemplates/DeployUseExistResourceGroup/template-AzureBot-with-rg.json -------------------------------------------------------------------------------- /RootBot/DeploymentTemplates/DeployUseExistResourceGroup/template-BotApp-with-rg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/DeploymentTemplates/DeployUseExistResourceGroup/template-BotApp-with-rg.json -------------------------------------------------------------------------------- /RootBot/DeploymentTemplates/DeployWithNewResourceGroup/parameters-for-template-AzureBot-new-rg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/DeploymentTemplates/DeployWithNewResourceGroup/parameters-for-template-AzureBot-new-rg.json -------------------------------------------------------------------------------- /RootBot/DeploymentTemplates/DeployWithNewResourceGroup/parameters-for-template-BotApp-new-rg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/DeploymentTemplates/DeployWithNewResourceGroup/parameters-for-template-BotApp-new-rg.json -------------------------------------------------------------------------------- /RootBot/DeploymentTemplates/DeployWithNewResourceGroup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/DeploymentTemplates/DeployWithNewResourceGroup/readme.md -------------------------------------------------------------------------------- /RootBot/DeploymentTemplates/DeployWithNewResourceGroup/template-AzureBot-new-rg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/DeploymentTemplates/DeployWithNewResourceGroup/template-AzureBot-new-rg.json -------------------------------------------------------------------------------- /RootBot/DeploymentTemplates/DeployWithNewResourceGroup/template-BotApp-new-rg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/DeploymentTemplates/DeployWithNewResourceGroup/template-BotApp-new-rg.json -------------------------------------------------------------------------------- /RootBot/Dialogs/MainDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/Dialogs/MainDialog.cs -------------------------------------------------------------------------------- /RootBot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/Program.cs -------------------------------------------------------------------------------- /RootBot/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/Properties/launchSettings.json -------------------------------------------------------------------------------- /RootBot/RootBot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/RootBot.csproj -------------------------------------------------------------------------------- /RootBot/SkillsConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/SkillsConfiguration.cs -------------------------------------------------------------------------------- /RootBot/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/Startup.cs -------------------------------------------------------------------------------- /RootBot/TeamsAppManifest/icon-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/TeamsAppManifest/icon-color.png -------------------------------------------------------------------------------- /RootBot/TeamsAppManifest/icon-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/TeamsAppManifest/icon-outline.png -------------------------------------------------------------------------------- /RootBot/TeamsAppManifest/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/TeamsAppManifest/manifest.json -------------------------------------------------------------------------------- /RootBot/TokenExchangeSkillHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/TokenExchangeSkillHandler.cs -------------------------------------------------------------------------------- /RootBot/appsettings.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/appsettings.template.json -------------------------------------------------------------------------------- /RootBot/wwwroot/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/RootBot/wwwroot/default.htm -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /SkillBot/Bots/SkillBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/Bots/SkillBot.cs -------------------------------------------------------------------------------- /SkillBot/CLU/CLUResolutionKinds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/CLU/CLUResolutionKinds.cs -------------------------------------------------------------------------------- /SkillBot/CLU/ConversationLanguageUnderstandingClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/CLU/ConversationLanguageUnderstandingClient.cs -------------------------------------------------------------------------------- /SkillBot/CognitiveModels/SkillModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/CognitiveModels/SkillModel.cs -------------------------------------------------------------------------------- /SkillBot/Controllers/BotController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/Controllers/BotController.cs -------------------------------------------------------------------------------- /SkillBot/DeploymentTemplates/DeployUseExistResourceGroup/parameters-for-template-AzureBot-with-rg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/DeploymentTemplates/DeployUseExistResourceGroup/parameters-for-template-AzureBot-with-rg.json -------------------------------------------------------------------------------- /SkillBot/DeploymentTemplates/DeployUseExistResourceGroup/parameters-for-template-BotApp-with-rg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/DeploymentTemplates/DeployUseExistResourceGroup/parameters-for-template-BotApp-with-rg.json -------------------------------------------------------------------------------- /SkillBot/DeploymentTemplates/DeployUseExistResourceGroup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/DeploymentTemplates/DeployUseExistResourceGroup/readme.md -------------------------------------------------------------------------------- /SkillBot/DeploymentTemplates/DeployUseExistResourceGroup/template-AzureBot-with-rg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/DeploymentTemplates/DeployUseExistResourceGroup/template-AzureBot-with-rg.json -------------------------------------------------------------------------------- /SkillBot/DeploymentTemplates/DeployUseExistResourceGroup/template-BotApp-with-rg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/DeploymentTemplates/DeployUseExistResourceGroup/template-BotApp-with-rg.json -------------------------------------------------------------------------------- /SkillBot/DeploymentTemplates/DeployWithNewResourceGroup/parameters-for-template-AzureBot-new-rg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/DeploymentTemplates/DeployWithNewResourceGroup/parameters-for-template-AzureBot-new-rg.json -------------------------------------------------------------------------------- /SkillBot/DeploymentTemplates/DeployWithNewResourceGroup/parameters-for-template-BotApp-new-rg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/DeploymentTemplates/DeployWithNewResourceGroup/parameters-for-template-BotApp-new-rg.json -------------------------------------------------------------------------------- /SkillBot/DeploymentTemplates/DeployWithNewResourceGroup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/DeploymentTemplates/DeployWithNewResourceGroup/readme.md -------------------------------------------------------------------------------- /SkillBot/DeploymentTemplates/DeployWithNewResourceGroup/template-AzureBot-new-rg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/DeploymentTemplates/DeployWithNewResourceGroup/template-AzureBot-new-rg.json -------------------------------------------------------------------------------- /SkillBot/DeploymentTemplates/DeployWithNewResourceGroup/template-BotApp-new-rg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/DeploymentTemplates/DeployWithNewResourceGroup/template-BotApp-new-rg.json -------------------------------------------------------------------------------- /SkillBot/Dialogs/ActivityRouterDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/Dialogs/ActivityRouterDialog.cs -------------------------------------------------------------------------------- /SkillBot/Dialogs/CLURecognizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/Dialogs/CLURecognizer.cs -------------------------------------------------------------------------------- /SkillBot/Dialogs/CancelAndHelpDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/Dialogs/CancelAndHelpDialog.cs -------------------------------------------------------------------------------- /SkillBot/Dialogs/DateResolverDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/Dialogs/DateResolverDialog.cs -------------------------------------------------------------------------------- /SkillBot/Dialogs/SkillDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/Dialogs/SkillDetails.cs -------------------------------------------------------------------------------- /SkillBot/Dialogs/SkillDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/Dialogs/SkillDialog.cs -------------------------------------------------------------------------------- /SkillBot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/Program.cs -------------------------------------------------------------------------------- /SkillBot/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/Properties/launchSettings.json -------------------------------------------------------------------------------- /SkillBot/SkillAdapterWithErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/SkillAdapterWithErrorHandler.cs -------------------------------------------------------------------------------- /SkillBot/SkillBot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/SkillBot.csproj -------------------------------------------------------------------------------- /SkillBot/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/Startup.cs -------------------------------------------------------------------------------- /SkillBot/appsettings.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/appsettings.template.json -------------------------------------------------------------------------------- /SkillBot/wwwroot/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/wwwroot/default.htm -------------------------------------------------------------------------------- /SkillBot/wwwroot/manifest/ssoskillbot-manifest-1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillBot/wwwroot/manifest/ssoskillbot-manifest-1.0.json -------------------------------------------------------------------------------- /SkillsBot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/skillBotTemplate/HEAD/SkillsBot.sln --------------------------------------------------------------------------------