sofia-cli 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/agents/copilot-instructions.md +39 -0
- package/.github/agents/speckit.analyze.agent.md +184 -0
- package/.github/agents/speckit.checklist.agent.md +294 -0
- package/.github/agents/speckit.clarify.agent.md +181 -0
- package/.github/agents/speckit.constitution.agent.md +84 -0
- package/.github/agents/speckit.implement.agent.md +135 -0
- package/.github/agents/speckit.plan.agent.md +90 -0
- package/.github/agents/speckit.specify.agent.md +258 -0
- package/.github/agents/speckit.tasks.agent.md +137 -0
- package/.github/agents/speckit.taskstoissues.agent.md +30 -0
- package/.github/copilot-instructions.md +257 -0
- package/.github/prompts/speckit.analyze.prompt.md +3 -0
- package/.github/prompts/speckit.checklist.prompt.md +3 -0
- package/.github/prompts/speckit.clarify.prompt.md +3 -0
- package/.github/prompts/speckit.constitution.prompt.md +3 -0
- package/.github/prompts/speckit.implement.prompt.md +3 -0
- package/.github/prompts/speckit.plan.prompt.md +3 -0
- package/.github/prompts/speckit.specify.prompt.md +3 -0
- package/.github/prompts/speckit.tasks.prompt.md +3 -0
- package/.github/prompts/speckit.taskstoissues.prompt.md +3 -0
- package/.github/workflows/ci.yml +38 -0
- package/.prettierrc +6 -0
- package/.specify/memory/constitution.md +181 -0
- package/.specify/scripts/bash/check-prerequisites.sh +166 -0
- package/.specify/scripts/bash/common.sh +156 -0
- package/.specify/scripts/bash/create-new-feature.sh +297 -0
- package/.specify/scripts/bash/setup-plan.sh +61 -0
- package/.specify/scripts/bash/update-agent-context.sh +810 -0
- package/.specify/templates/agent-file-template.md +28 -0
- package/.specify/templates/checklist-template.md +40 -0
- package/.specify/templates/constitution-template.md +50 -0
- package/.specify/templates/plan-template.md +113 -0
- package/.specify/templates/spec-template.md +115 -0
- package/.specify/templates/tasks-template.md +251 -0
- package/.vscode/mcp.json +42 -0
- package/.vscode/settings.json +19 -0
- package/CODE_OF_CONDUCT.md +128 -0
- package/LICENSE +21 -0
- package/README.md +213 -0
- package/dist/src/cli/developCommand.js +240 -0
- package/dist/src/cli/directCommands.js +143 -0
- package/dist/src/cli/envLoader.js +16 -0
- package/dist/src/cli/exportCommand.js +53 -0
- package/dist/src/cli/index.js +203 -0
- package/dist/src/cli/ioContext.js +109 -0
- package/dist/src/cli/preflight.js +57 -0
- package/dist/src/cli/statusCommand.js +110 -0
- package/dist/src/cli/workshopCommand.js +400 -0
- package/dist/src/develop/checkpointState.js +86 -0
- package/dist/src/develop/codeGenerator.js +319 -0
- package/dist/src/develop/dynamicScaffolder.js +226 -0
- package/dist/src/develop/githubMcpAdapter.js +122 -0
- package/dist/src/develop/index.js +15 -0
- package/dist/src/develop/mcpContextEnricher.js +195 -0
- package/dist/src/develop/pocScaffolder.js +542 -0
- package/dist/src/develop/ralphLoop.js +659 -0
- package/dist/src/develop/templateRegistry.js +364 -0
- package/dist/src/develop/testRunner.js +202 -0
- package/dist/src/logging/logger.js +58 -0
- package/dist/src/loop/conversationLoop.js +227 -0
- package/dist/src/loop/phaseSummarizer.js +87 -0
- package/dist/src/mcp/mcpManager.js +267 -0
- package/dist/src/mcp/mcpTransport.js +391 -0
- package/dist/src/mcp/retryPolicy.js +47 -0
- package/dist/src/mcp/webSearch.js +254 -0
- package/dist/src/phases/contextSummarizer.js +101 -0
- package/dist/src/phases/discoveryEnricher.js +156 -0
- package/dist/src/phases/phaseExtractors.js +222 -0
- package/dist/src/phases/phaseHandlers.js +328 -0
- package/dist/src/prompts/design.md +51 -0
- package/dist/src/prompts/develop-boundary.md +51 -0
- package/dist/src/prompts/develop.md +111 -0
- package/dist/src/prompts/discover.md +58 -0
- package/dist/src/prompts/ideate.md +56 -0
- package/dist/src/prompts/plan.md +51 -0
- package/dist/src/prompts/promptLoader.js +167 -0
- package/dist/src/prompts/promptLoader.ts +198 -0
- package/dist/src/prompts/select.md +47 -0
- package/dist/src/prompts/summarize/README.md +8 -0
- package/dist/src/prompts/summarize/design-summary.md +37 -0
- package/dist/src/prompts/summarize/develop-summary.md +25 -0
- package/dist/src/prompts/summarize/ideate-summary.md +27 -0
- package/dist/src/prompts/summarize/plan-summary.md +27 -0
- package/dist/src/prompts/summarize/select-summary.md +21 -0
- package/dist/src/prompts/system.md +28 -0
- package/dist/src/sessions/exportPaths.js +22 -0
- package/dist/src/sessions/exportWriter.js +406 -0
- package/dist/src/sessions/sessionManager.js +81 -0
- package/dist/src/sessions/sessionStore.js +65 -0
- package/dist/src/shared/activitySpinner.js +91 -0
- package/dist/src/shared/copilotClient.js +129 -0
- package/dist/src/shared/data/cards.json +1249 -0
- package/dist/src/shared/data/cardsLoader.js +51 -0
- package/dist/src/shared/errorClassifier.js +120 -0
- package/dist/src/shared/events.js +28 -0
- package/dist/src/shared/markdownRenderer.js +34 -0
- package/dist/src/shared/schemas/session.js +265 -0
- package/dist/src/shared/tableRenderer.js +20 -0
- package/dist/src/vendor/chalk.js +2 -0
- package/dist/src/vendor/cli-table3.js +3 -0
- package/dist/src/vendor/commander.js +2 -0
- package/dist/src/vendor/marked-terminal.js +3 -0
- package/dist/src/vendor/marked.js +2 -0
- package/dist/src/vendor/ora.js +2 -0
- package/dist/src/vendor/pino.js +2 -0
- package/dist/src/vendor/zod.js +2 -0
- package/dist/tests/e2e/developE2e.spec.js +126 -0
- package/dist/tests/e2e/developFailureE2e.spec.js +247 -0
- package/dist/tests/e2e/developPty.spec.js +75 -0
- package/dist/tests/e2e/discoveryWebSearchRelevance.spec.js +84 -0
- package/dist/tests/e2e/harness.spec.js +83 -0
- package/dist/tests/e2e/mcpLive.spec.js +120 -0
- package/dist/tests/e2e/newSession.e2e.spec.js +177 -0
- package/dist/tests/e2e/ralphLoopEnrichmentComparison.spec.js +62 -0
- package/dist/tests/e2e/workiqEnrichment.spec.js +56 -0
- package/dist/tests/e2e/zavaSimulation.spec.js +452 -0
- package/dist/tests/fixtures/test-fixture-project/src/add.js +3 -0
- package/dist/tests/fixtures/test-fixture-project/tests/failing.test.js +6 -0
- package/dist/tests/fixtures/test-fixture-project/tests/hanging.test.js +8 -0
- package/dist/tests/fixtures/test-fixture-project/tests/passing.test.js +10 -0
- package/dist/tests/fixtures/test-fixture-project/vitest.config.js +6 -0
- package/dist/tests/integration/autoStartConversation.spec.js +138 -0
- package/dist/tests/integration/defaultCommand.spec.js +147 -0
- package/dist/tests/integration/directCommandNonTty.spec.js +224 -0
- package/dist/tests/integration/directCommandTty.spec.js +151 -0
- package/dist/tests/integration/discoveryEnrichmentFlow.spec.js +175 -0
- package/dist/tests/integration/exportArtifacts.spec.js +202 -0
- package/dist/tests/integration/exportFallbackFlow.spec.js +99 -0
- package/dist/tests/integration/mcpDegradationFlow.spec.js +190 -0
- package/dist/tests/integration/mcpTransportFlow.spec.js +139 -0
- package/dist/tests/integration/newSessionFlow.spec.js +343 -0
- package/dist/tests/integration/pocGithubMcp.spec.js +186 -0
- package/dist/tests/integration/pocLocalFallback.spec.js +171 -0
- package/dist/tests/integration/pocScaffold.spec.js +163 -0
- package/dist/tests/integration/ralphLoopFlow.spec.js +359 -0
- package/dist/tests/integration/ralphLoopPartial.spec.js +368 -0
- package/dist/tests/integration/resumeAndBacktrack.spec.js +247 -0
- package/dist/tests/integration/spinnerLifecycle.spec.js +220 -0
- package/dist/tests/integration/summarizationFlow.spec.js +115 -0
- package/dist/tests/integration/testRunnerReal.spec.js +52 -0
- package/dist/tests/integration/webSearchAgent.spec.js +128 -0
- package/dist/tests/live/copilotSdkLive.spec.js +107 -0
- package/dist/tests/live/zavaFullWorkshop.spec.js +392 -0
- package/dist/tests/setup/loadEnv.js +3 -0
- package/dist/tests/unit/cli/developCommand.spec.js +567 -0
- package/dist/tests/unit/cli/directCommands.spec.js +279 -0
- package/dist/tests/unit/cli/envLoader.spec.js +58 -0
- package/dist/tests/unit/cli/ioContext.spec.js +119 -0
- package/dist/tests/unit/cli/preflight.spec.js +108 -0
- package/dist/tests/unit/cli/statusCommand.spec.js +111 -0
- package/dist/tests/unit/cli/workshopClientFallback.spec.js +80 -0
- package/dist/tests/unit/cli/workshopCommand.spec.js +329 -0
- package/dist/tests/unit/config/vitestEnvSetup.spec.js +13 -0
- package/dist/tests/unit/develop/checkpointState.spec.js +315 -0
- package/dist/tests/unit/develop/codeGenerator.spec.js +355 -0
- package/dist/tests/unit/develop/githubMcpAdapter.spec.js +231 -0
- package/dist/tests/unit/develop/mcpContextEnricher.spec.js +433 -0
- package/dist/tests/unit/develop/outputValidator.spec.js +119 -0
- package/dist/tests/unit/develop/pocScaffolder.spec.js +353 -0
- package/dist/tests/unit/develop/ralphLoop.spec.js +1248 -0
- package/dist/tests/unit/develop/templateRegistry.spec.js +85 -0
- package/dist/tests/unit/develop/testRunner.spec.js +249 -0
- package/dist/tests/unit/infraBicep.spec.js +92 -0
- package/dist/tests/unit/infraDeploy.spec.js +82 -0
- package/dist/tests/unit/infraTeardown.spec.js +63 -0
- package/dist/tests/unit/logging/logger.spec.js +43 -0
- package/dist/tests/unit/loop/conversationLoop.spec.js +592 -0
- package/dist/tests/unit/loop/phaseSummarizer.spec.js +141 -0
- package/dist/tests/unit/loop/streamingMarkdown.spec.js +147 -0
- package/dist/tests/unit/mcp/mcpManager.spec.js +279 -0
- package/dist/tests/unit/mcp/mcpTransport.spec.js +529 -0
- package/dist/tests/unit/mcp/retryPolicy.spec.js +218 -0
- package/dist/tests/unit/mcp/timeoutValidation.spec.js +46 -0
- package/dist/tests/unit/mcp/webSearch.spec.js +567 -0
- package/dist/tests/unit/phases/contextSummarizer.spec.js +140 -0
- package/dist/tests/unit/phases/discoveryEnricher.repeatCalls.spec.js +93 -0
- package/dist/tests/unit/phases/discoveryEnricher.spec.js +411 -0
- package/dist/tests/unit/phases/phaseExtractors.spec.js +352 -0
- package/dist/tests/unit/phases/phaseHandlers.spec.js +425 -0
- package/dist/tests/unit/prompts/promptLoader.spec.js +118 -0
- package/dist/tests/unit/schemas/pocSchemas.spec.js +412 -0
- package/dist/tests/unit/schemas/session.spec.js +257 -0
- package/dist/tests/unit/sessions/exportPaths.spec.js +31 -0
- package/dist/tests/unit/sessions/exportWriter.spec.js +655 -0
- package/dist/tests/unit/sessions/sessionManager.spec.js +151 -0
- package/dist/tests/unit/sessions/sessionStore.spec.js +116 -0
- package/dist/tests/unit/shared/activitySpinner.spec.js +175 -0
- package/dist/tests/unit/shared/cardsLoader.spec.js +76 -0
- package/dist/tests/unit/shared/copilotClient.spec.js +155 -0
- package/dist/tests/unit/shared/errorClassifier.spec.js +131 -0
- package/dist/tests/unit/shared/events.spec.js +55 -0
- package/dist/tests/unit/shared/markdownRenderer.spec.js +35 -0
- package/dist/tests/unit/shared/markdownRendererChunks.spec.js +70 -0
- package/dist/tests/unit/shared/tableRenderer.spec.js +34 -0
- package/dist/vitest.config.js +14 -0
- package/dist/vitest.live.config.js +18 -0
- package/docs/README.md +35 -0
- package/docs/architecture.md +169 -0
- package/docs/cli-usage.md +207 -0
- package/docs/environment.md +66 -0
- package/docs/export-format.md +146 -0
- package/docs/session-model.md +113 -0
- package/eslint.config.js +35 -0
- package/infra/deploy.sh +193 -0
- package/infra/gather-env.sh +211 -0
- package/infra/main.bicep +90 -0
- package/infra/main.bicepparam +18 -0
- package/infra/resources.bicep +134 -0
- package/infra/teardown.sh +114 -0
- package/package.json +63 -0
- package/specs/001-cli-workshop-rebuild/checklists/requirements.md +35 -0
- package/specs/001-cli-workshop-rebuild/contracts/cli.md +59 -0
- package/specs/001-cli-workshop-rebuild/contracts/export-summary-json.md +23 -0
- package/specs/001-cli-workshop-rebuild/contracts/session-json.md +30 -0
- package/specs/001-cli-workshop-rebuild/data-model.md +210 -0
- package/specs/001-cli-workshop-rebuild/plan.md +361 -0
- package/specs/001-cli-workshop-rebuild/quickstart.md +83 -0
- package/specs/001-cli-workshop-rebuild/research.md +116 -0
- package/specs/001-cli-workshop-rebuild/spec.md +240 -0
- package/specs/001-cli-workshop-rebuild/tasks.md +476 -0
- package/specs/002-poc-generation/contracts/poc-output.md +172 -0
- package/specs/002-poc-generation/contracts/ralph-loop.md +113 -0
- package/specs/002-poc-generation/data-model.md +172 -0
- package/specs/002-poc-generation/plan.md +109 -0
- package/specs/002-poc-generation/quickstart.md +97 -0
- package/specs/002-poc-generation/research.md +786 -0
- package/specs/002-poc-generation/spec.md +81 -0
- package/specs/002-poc-generation/tasks-fix.md +198 -0
- package/specs/002-poc-generation/tasks.md +252 -0
- package/specs/003-mcp-transport-integration/checklists/requirements.md +37 -0
- package/specs/003-mcp-transport-integration/contracts/context-enricher.md +220 -0
- package/specs/003-mcp-transport-integration/contracts/discovery-enricher.md +267 -0
- package/specs/003-mcp-transport-integration/contracts/github-adapter.md +149 -0
- package/specs/003-mcp-transport-integration/contracts/mcp-transport.md +288 -0
- package/specs/003-mcp-transport-integration/data-model.md +326 -0
- package/specs/003-mcp-transport-integration/plan.md +114 -0
- package/specs/003-mcp-transport-integration/quickstart.md +311 -0
- package/specs/003-mcp-transport-integration/research.md +395 -0
- package/specs/003-mcp-transport-integration/spec.md +234 -0
- package/specs/003-mcp-transport-integration/tasks.md +324 -0
- package/specs/003-next-spec-gaps.md +150 -0
- package/specs/004-dev-resume-hardening/checklists/requirements.md +37 -0
- package/specs/004-dev-resume-hardening/contracts/cli.md +160 -0
- package/specs/004-dev-resume-hardening/data-model.md +321 -0
- package/specs/004-dev-resume-hardening/plan.md +107 -0
- package/specs/004-dev-resume-hardening/quickstart.md +115 -0
- package/specs/004-dev-resume-hardening/research.md +142 -0
- package/specs/004-dev-resume-hardening/spec.md +221 -0
- package/specs/004-dev-resume-hardening/tasks.md +333 -0
- package/specs/005-ai-search-deploy/checklists/requirements.md +39 -0
- package/specs/005-ai-search-deploy/contracts/web-search-tool.md +241 -0
- package/specs/005-ai-search-deploy/data-model.md +130 -0
- package/specs/005-ai-search-deploy/plan.md +93 -0
- package/specs/005-ai-search-deploy/quickstart.md +96 -0
- package/specs/005-ai-search-deploy/research.md +187 -0
- package/specs/005-ai-search-deploy/spec.md +143 -0
- package/specs/005-ai-search-deploy/tasks.md +284 -0
- package/specs/006-workshop-extraction-fixes/checklists/requirements.md +61 -0
- package/specs/006-workshop-extraction-fixes/contracts/summarization-and-export.md +131 -0
- package/specs/006-workshop-extraction-fixes/data-model.md +149 -0
- package/specs/006-workshop-extraction-fixes/plan.md +123 -0
- package/specs/006-workshop-extraction-fixes/quickstart.md +101 -0
- package/specs/006-workshop-extraction-fixes/research.md +143 -0
- package/specs/006-workshop-extraction-fixes/spec.md +210 -0
- package/specs/006-workshop-extraction-fixes/tasks.md +316 -0
- package/src/cli/developCommand.ts +308 -0
- package/src/cli/directCommands.ts +195 -0
- package/src/cli/envLoader.ts +17 -0
- package/src/cli/exportCommand.ts +65 -0
- package/src/cli/index.ts +249 -0
- package/src/cli/ioContext.ts +139 -0
- package/src/cli/preflight.ts +86 -0
- package/src/cli/statusCommand.ts +118 -0
- package/src/cli/workshopCommand.ts +496 -0
- package/src/develop/checkpointState.ts +121 -0
- package/src/develop/codeGenerator.ts +402 -0
- package/src/develop/dynamicScaffolder.ts +284 -0
- package/src/develop/githubMcpAdapter.ts +199 -0
- package/src/develop/index.ts +34 -0
- package/src/develop/mcpContextEnricher.ts +279 -0
- package/src/develop/pocScaffolder.ts +646 -0
- package/src/develop/ralphLoop.ts +1044 -0
- package/src/develop/templateRegistry.ts +427 -0
- package/src/develop/testRunner.ts +276 -0
- package/src/logging/logger.ts +73 -0
- package/src/loop/conversationLoop.ts +355 -0
- package/src/loop/phaseSummarizer.ts +114 -0
- package/src/mcp/mcpManager.ts +365 -0
- package/src/mcp/mcpTransport.ts +562 -0
- package/src/mcp/retryPolicy.ts +87 -0
- package/src/mcp/webSearch.ts +388 -0
- package/src/originalPrompts/design_thinking.md +178 -0
- package/src/originalPrompts/design_thinking_persona.md +76 -0
- package/src/originalPrompts/document_generator_example.md +77 -0
- package/src/originalPrompts/document_generator_persona.md +47 -0
- package/src/originalPrompts/facilitator_persona.md +125 -0
- package/src/originalPrompts/guardrails.md +47 -0
- package/src/phases/contextSummarizer.ts +154 -0
- package/src/phases/discoveryEnricher.ts +223 -0
- package/src/phases/phaseExtractors.ts +247 -0
- package/src/phases/phaseHandlers.ts +450 -0
- package/src/prompts/design.md +51 -0
- package/src/prompts/develop-boundary.md +51 -0
- package/src/prompts/develop.md +111 -0
- package/src/prompts/discover.md +58 -0
- package/src/prompts/ideate.md +56 -0
- package/src/prompts/plan.md +51 -0
- package/src/prompts/promptLoader.ts +198 -0
- package/src/prompts/select.md +47 -0
- package/src/prompts/summarize/README.md +8 -0
- package/src/prompts/summarize/design-summary.md +37 -0
- package/src/prompts/summarize/develop-summary.md +25 -0
- package/src/prompts/summarize/ideate-summary.md +27 -0
- package/src/prompts/summarize/plan-summary.md +27 -0
- package/src/prompts/summarize/select-summary.md +21 -0
- package/src/prompts/system.md +28 -0
- package/src/sessions/exportPaths.ts +28 -0
- package/src/sessions/exportWriter.ts +490 -0
- package/src/sessions/sessionManager.ts +119 -0
- package/src/sessions/sessionStore.ts +69 -0
- package/src/shared/activitySpinner.ts +108 -0
- package/src/shared/copilotClient.ts +291 -0
- package/src/shared/data/cards.json +1249 -0
- package/src/shared/data/cardsLoader.ts +70 -0
- package/src/shared/errorClassifier.ts +160 -0
- package/src/shared/events.ts +103 -0
- package/src/shared/markdownRenderer.ts +44 -0
- package/src/shared/schemas/session.ts +346 -0
- package/src/shared/tableRenderer.ts +28 -0
- package/src/types/marked-terminal.d.ts +5 -0
- package/src/vendor/chalk.ts +2 -0
- package/src/vendor/cli-table3.ts +3 -0
- package/src/vendor/commander.ts +2 -0
- package/src/vendor/marked-terminal.ts +3 -0
- package/src/vendor/marked.ts +2 -0
- package/src/vendor/ora.ts +2 -0
- package/src/vendor/pino.ts +3 -0
- package/src/vendor/zod.ts +3 -0
- package/tests/e2e/developE2e.spec.ts +152 -0
- package/tests/e2e/developFailureE2e.spec.ts +289 -0
- package/tests/e2e/developPty.spec.ts +86 -0
- package/tests/e2e/discoveryWebSearchRelevance.spec.ts +103 -0
- package/tests/e2e/harness.spec.ts +104 -0
- package/tests/e2e/mcpLive.spec.ts +149 -0
- package/tests/e2e/newSession.e2e.spec.ts +245 -0
- package/tests/e2e/ralphLoopEnrichmentComparison.spec.ts +70 -0
- package/tests/e2e/workiqEnrichment.spec.ts +72 -0
- package/tests/e2e/zava-assessment/agent-interaction-script.md +258 -0
- package/tests/e2e/zava-assessment/company-profile.md +98 -0
- package/tests/e2e/zava-assessment/expected-results-checklist.md +454 -0
- package/tests/e2e/zavaSimulation.spec.ts +511 -0
- package/tests/fixtures/completedSession.json +141 -0
- package/tests/fixtures/test-fixture-project/package-lock.json +1585 -0
- package/tests/fixtures/test-fixture-project/package.json +12 -0
- package/tests/fixtures/test-fixture-project/src/add.ts +3 -0
- package/tests/fixtures/test-fixture-project/tests/failing.test.ts +7 -0
- package/tests/fixtures/test-fixture-project/tests/hanging.test.ts +9 -0
- package/tests/fixtures/test-fixture-project/tests/passing.test.ts +13 -0
- package/tests/fixtures/test-fixture-project/vitest.config.ts +7 -0
- package/tests/integration/autoStartConversation.spec.ts +168 -0
- package/tests/integration/defaultCommand.spec.ts +179 -0
- package/tests/integration/directCommandNonTty.spec.ts +260 -0
- package/tests/integration/directCommandTty.spec.ts +185 -0
- package/tests/integration/discoveryEnrichmentFlow.spec.ts +209 -0
- package/tests/integration/exportArtifacts.spec.ts +232 -0
- package/tests/integration/exportFallbackFlow.spec.ts +115 -0
- package/tests/integration/mcpDegradationFlow.spec.ts +231 -0
- package/tests/integration/mcpTransportFlow.spec.ts +178 -0
- package/tests/integration/newSessionFlow.spec.ts +406 -0
- package/tests/integration/pocGithubMcp.spec.ts +224 -0
- package/tests/integration/pocLocalFallback.spec.ts +205 -0
- package/tests/integration/pocScaffold.spec.ts +220 -0
- package/tests/integration/ralphLoopFlow.spec.ts +430 -0
- package/tests/integration/ralphLoopPartial.spec.ts +416 -0
- package/tests/integration/resumeAndBacktrack.spec.ts +278 -0
- package/tests/integration/spinnerLifecycle.spec.ts +270 -0
- package/tests/integration/summarizationFlow.spec.ts +135 -0
- package/tests/integration/testRunnerReal.spec.ts +63 -0
- package/tests/integration/webSearchAgent.spec.ts +155 -0
- package/tests/live/copilotSdkLive.spec.ts +149 -0
- package/tests/live/zavaFullWorkshop.spec.ts +515 -0
- package/tests/setup/loadEnv.ts +5 -0
- package/tests/unit/cli/developCommand.spec.ts +679 -0
- package/tests/unit/cli/directCommands.spec.ts +325 -0
- package/tests/unit/cli/envLoader.spec.ts +73 -0
- package/tests/unit/cli/ioContext.spec.ts +148 -0
- package/tests/unit/cli/preflight.spec.ts +125 -0
- package/tests/unit/cli/statusCommand.spec.ts +134 -0
- package/tests/unit/cli/workshopClientFallback.spec.ts +100 -0
- package/tests/unit/cli/workshopCommand.spec.ts +378 -0
- package/tests/unit/config/vitestEnvSetup.spec.ts +24 -0
- package/tests/unit/develop/checkpointState.spec.ts +378 -0
- package/tests/unit/develop/codeGenerator.spec.ts +447 -0
- package/tests/unit/develop/githubMcpAdapter.spec.ts +283 -0
- package/tests/unit/develop/mcpContextEnricher.spec.ts +564 -0
- package/tests/unit/develop/outputValidator.spec.ts +134 -0
- package/tests/unit/develop/pocScaffolder.spec.ts +451 -0
- package/tests/unit/develop/ralphLoop.spec.ts +1439 -0
- package/tests/unit/develop/templateRegistry.spec.ts +106 -0
- package/tests/unit/develop/testRunner.spec.ts +294 -0
- package/tests/unit/infraBicep.spec.ts +116 -0
- package/tests/unit/infraDeploy.spec.ts +102 -0
- package/tests/unit/infraTeardown.spec.ts +77 -0
- package/tests/unit/logging/logger.spec.ts +50 -0
- package/tests/unit/loop/conversationLoop.spec.ts +719 -0
- package/tests/unit/loop/phaseSummarizer.spec.ts +169 -0
- package/tests/unit/loop/streamingMarkdown.spec.ts +180 -0
- package/tests/unit/mcp/mcpManager.spec.ts +336 -0
- package/tests/unit/mcp/mcpTransport.spec.ts +689 -0
- package/tests/unit/mcp/retryPolicy.spec.ts +278 -0
- package/tests/unit/mcp/timeoutValidation.spec.ts +55 -0
- package/tests/unit/mcp/webSearch.spec.ts +718 -0
- package/tests/unit/phases/contextSummarizer.spec.ts +158 -0
- package/tests/unit/phases/discoveryEnricher.repeatCalls.spec.ts +125 -0
- package/tests/unit/phases/discoveryEnricher.spec.ts +512 -0
- package/tests/unit/phases/phaseExtractors.spec.ts +406 -0
- package/tests/unit/phases/phaseHandlers.spec.ts +483 -0
- package/tests/unit/prompts/promptLoader.spec.ts +144 -0
- package/tests/unit/schemas/pocSchemas.spec.ts +457 -0
- package/tests/unit/schemas/session.spec.ts +328 -0
- package/tests/unit/sessions/exportPaths.spec.ts +38 -0
- package/tests/unit/sessions/exportWriter.spec.ts +737 -0
- package/tests/unit/sessions/sessionManager.spec.ts +174 -0
- package/tests/unit/sessions/sessionStore.spec.ts +136 -0
- package/tests/unit/shared/activitySpinner.spec.ts +211 -0
- package/tests/unit/shared/cardsLoader.spec.ts +89 -0
- package/tests/unit/shared/copilotClient.spec.ts +185 -0
- package/tests/unit/shared/errorClassifier.spec.ts +152 -0
- package/tests/unit/shared/events.spec.ts +71 -0
- package/tests/unit/shared/markdownRenderer.spec.ts +42 -0
- package/tests/unit/shared/markdownRendererChunks.spec.ts +83 -0
- package/tests/unit/shared/tableRenderer.spec.ts +38 -0
- package/tsconfig.json +20 -0
- package/vitest.config.ts +15 -0
- package/vitest.live.config.ts +19 -0
|
@@ -0,0 +1,1249 @@
|
|
|
1
|
+
{
|
|
2
|
+
"categories": [
|
|
3
|
+
"Information management",
|
|
4
|
+
"Data and predictive analytics",
|
|
5
|
+
"Task automation",
|
|
6
|
+
"Decision making",
|
|
7
|
+
"Visual perception",
|
|
8
|
+
"Text processing",
|
|
9
|
+
"Communication",
|
|
10
|
+
"Speech recognition",
|
|
11
|
+
"Environmental awareness",
|
|
12
|
+
"Content creation",
|
|
13
|
+
"Process optimization",
|
|
14
|
+
"Navigation and control"
|
|
15
|
+
],
|
|
16
|
+
"cards": [
|
|
17
|
+
{
|
|
18
|
+
"cardId": "extract-information",
|
|
19
|
+
"category": "Information management",
|
|
20
|
+
"title": "Extract Information",
|
|
21
|
+
"description": "Use AI for efficient and speedy extraction of vital data from large databases or unsorted data stores, enhancing research and productivity.",
|
|
22
|
+
"typicalScenarios": [
|
|
23
|
+
"Legal and Tax - Use AI to quickly locate pertinent cases, laws, and regulations from extensive legal databases.",
|
|
24
|
+
"Scientific Research - Implement AI to swiftly sift through scholarly articles and extract key findings."
|
|
25
|
+
],
|
|
26
|
+
"azureServices": [
|
|
27
|
+
"Bing Search API",
|
|
28
|
+
"Azure AI Search",
|
|
29
|
+
"Azure AI Foundry",
|
|
30
|
+
"Microsoft 365 Copilot",
|
|
31
|
+
"Azure Machine Learning"
|
|
32
|
+
],
|
|
33
|
+
"optionalCategory": "Data Analysis"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"cardId": "retrieve-information",
|
|
37
|
+
"category": "Information management",
|
|
38
|
+
"title": "Retrieve information",
|
|
39
|
+
"description": "Enhance productivity by using AI to find relevant information.",
|
|
40
|
+
"typicalScenarios": [
|
|
41
|
+
"E-Commerce - Analyze user behavior and preferences to deliver precise personalized product recommendations.",
|
|
42
|
+
"Learning - Assist students by finding specific information to help learn and study a concept."
|
|
43
|
+
],
|
|
44
|
+
"azureServices": [
|
|
45
|
+
"Bing Search API",
|
|
46
|
+
"Azure AI Search",
|
|
47
|
+
"Azure Machine Learning",
|
|
48
|
+
"Sharepoint Premium",
|
|
49
|
+
"Microsoft 365 Copilot"
|
|
50
|
+
],
|
|
51
|
+
"optionalCategory": "Data Analysis"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"cardId": "organize-data",
|
|
55
|
+
"category": "Information management",
|
|
56
|
+
"title": "Organize Data",
|
|
57
|
+
"description": "Use AI to efficiently categorize and organize data, enhancing analysis and decision-making.",
|
|
58
|
+
"typicalScenarios": [
|
|
59
|
+
"Healthcare - Categorize patient data by symptoms, diagnosis, and treatment to aid in research and patient care.",
|
|
60
|
+
"Marketing - Identify and group customers to target marketing efforts effectively based on their interests, shopping habits, or annual spending."
|
|
61
|
+
],
|
|
62
|
+
"azureServices": [
|
|
63
|
+
"Azure AI Document Intelligence",
|
|
64
|
+
"Azure AI Search",
|
|
65
|
+
"Azure Machine Learning",
|
|
66
|
+
"Sharepoint Premium"
|
|
67
|
+
],
|
|
68
|
+
"optionalCategory": "Data classification"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"cardId": "discover-patterns",
|
|
72
|
+
"category": "Information management",
|
|
73
|
+
"title": "Discover Patterns",
|
|
74
|
+
"description": "Harness AI to identify patterns and relationships in data, leading to insightful analysis and decision-making.",
|
|
75
|
+
"typicalScenarios": [
|
|
76
|
+
"Marketing - Employ AI to group customers based on purchasing behavior, demographics, and preferences for targeted marketing.",
|
|
77
|
+
"Social Media - Use AI to identify and group trending sentiments or topics, aiding sentiment analysis and trend prediction."
|
|
78
|
+
],
|
|
79
|
+
"azureServices": [
|
|
80
|
+
"Azure Machine Learning",
|
|
81
|
+
"Azure AI Foundry"
|
|
82
|
+
],
|
|
83
|
+
"optionalCategory": "Data Analysis"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"cardId": "structure-raw-data",
|
|
87
|
+
"category": "Information management",
|
|
88
|
+
"title": "Structure Raw Data",
|
|
89
|
+
"description": "Leverage AI to transform raw, unstructured data into a structured format for easier analysis and insights extraction.",
|
|
90
|
+
"typicalScenarios": [
|
|
91
|
+
"Text Mining - Convert unstructured text from social media, emails, or reviews into structured data for sentiment analysis or trend identification.",
|
|
92
|
+
"Healthcare - Organize disparate, unstructured patient data into structured records, enhancing healthcare delivery and research."
|
|
93
|
+
],
|
|
94
|
+
"azureServices": [
|
|
95
|
+
"Azure AI Document Intelligence",
|
|
96
|
+
"Azure Machine Learning",
|
|
97
|
+
"Azure AI Foundry"
|
|
98
|
+
],
|
|
99
|
+
"optionalCategory": "Data Transformation"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"cardId": "gain-market-insights",
|
|
103
|
+
"category": "Data and predictive analytics",
|
|
104
|
+
"title": "Gain Market Insights",
|
|
105
|
+
"description": "Utilize AI to understand market trends, forecast, and assess competitor behavior.",
|
|
106
|
+
"typicalScenarios": [
|
|
107
|
+
"Retail - Analyze data points to understand market trends and inform strategic decisions",
|
|
108
|
+
"Marketing - Track competitor's digital footprint to comprehend their strategies and performance"
|
|
109
|
+
],
|
|
110
|
+
"azureServices": [
|
|
111
|
+
"Azure AI Foundry",
|
|
112
|
+
"Azure Machine Learning",
|
|
113
|
+
"Power BI",
|
|
114
|
+
"Bing Search API",
|
|
115
|
+
"Azure Maps",
|
|
116
|
+
"Azure AI Language"
|
|
117
|
+
],
|
|
118
|
+
"optionalCategory": "Market Analysis"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"cardId": "visualize-data",
|
|
122
|
+
"category": "Data and predictive analytics",
|
|
123
|
+
"title": "Visualize Data",
|
|
124
|
+
"description": "Leverage AI to automatically visualize and interpret data relationships.",
|
|
125
|
+
"typicalScenarios": [
|
|
126
|
+
"Sales - Use AI to generate visuals and reports, identifying customer trends and buying patterns",
|
|
127
|
+
"Business Analysis - Employ AI for swift performance reporting and visual data arrangement"
|
|
128
|
+
],
|
|
129
|
+
"azureServices": [
|
|
130
|
+
"Microsoft Fabric",
|
|
131
|
+
"Azure AI Foundry",
|
|
132
|
+
"Azure Machine Learning",
|
|
133
|
+
"Microsoft 365 Copilot for Sales"
|
|
134
|
+
],
|
|
135
|
+
"optionalCategory": "Data Visualization"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"cardId": "analyze-sentiments",
|
|
139
|
+
"category": "Data and predictive analytics",
|
|
140
|
+
"title": "Analyze Sentiments",
|
|
141
|
+
"description": "Leverage AI to detect and analyze sentiment in text and images.",
|
|
142
|
+
"typicalScenarios": [
|
|
143
|
+
"Customer Service - Use AI to gauge customer sentiment from feedback or product reviews",
|
|
144
|
+
"Marketing - Analyze social media comments with AI to assess public sentiment about a brand or event"
|
|
145
|
+
],
|
|
146
|
+
"azureServices": [
|
|
147
|
+
"Azure AI Language",
|
|
148
|
+
"Azure Machine Learning",
|
|
149
|
+
"Azure AI Foundry",
|
|
150
|
+
"Azure AI Custom Vision",
|
|
151
|
+
"Power Platform : AI Builder"
|
|
152
|
+
],
|
|
153
|
+
"optionalCategory": "Sentiment Analysis"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"cardId": "identify-data-patterns",
|
|
157
|
+
"category": "Data and predictive analytics",
|
|
158
|
+
"title": "Identify Data Patterns",
|
|
159
|
+
"description": "Use AI to detect patterns, connections, and associations in your data.",
|
|
160
|
+
"typicalScenarios": [
|
|
161
|
+
"Transportation - Analyze traffic data with AI to identify congestion times and high-accident zones",
|
|
162
|
+
"Healthcare - Use AI to analyze large amounts of healthcare data to detect early signs of diseases like cancer or Alzheimer's"
|
|
163
|
+
],
|
|
164
|
+
"azureServices": [
|
|
165
|
+
"Azure Machine Learning",
|
|
166
|
+
"Copilot for Power BI",
|
|
167
|
+
"Microsoft Fabric",
|
|
168
|
+
"Azure AI Search"
|
|
169
|
+
],
|
|
170
|
+
"optionalCategory": "Data Analysis"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"cardId": "detect-anomalies",
|
|
174
|
+
"category": "Data and predictive analytics",
|
|
175
|
+
"title": "Detect Anomalies",
|
|
176
|
+
"description": "Use AI to identify unusual patterns in data streams or image data.",
|
|
177
|
+
"typicalScenarios": [
|
|
178
|
+
"Banking - Detect suspicious credit card activities that may indicate fraud",
|
|
179
|
+
"Cybersecurity - Spot unusual traffic patterns in login data to detect potential cyber attacks."
|
|
180
|
+
],
|
|
181
|
+
"azureServices": [
|
|
182
|
+
"Azure Machine Learning",
|
|
183
|
+
"Azure AI Custom Vision",
|
|
184
|
+
"Azure Sentinel"
|
|
185
|
+
],
|
|
186
|
+
"optionalCategory": "Anomaly Detection"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"cardId": "understand-customers",
|
|
190
|
+
"category": "Data and predictive analytics",
|
|
191
|
+
"title": "Understand customers",
|
|
192
|
+
"description": "Gain insights into customer behavior, predict their needs, and tailor solutions effectively.",
|
|
193
|
+
"typicalScenarios": [
|
|
194
|
+
"Retail - Suggest products based on a customer's past purchases.",
|
|
195
|
+
"Marketing - Personalize campaigns based on customers' interactions with the brand."
|
|
196
|
+
],
|
|
197
|
+
"azureServices": [
|
|
198
|
+
"Azure Machine Learning",
|
|
199
|
+
"Dynamics 365 Customer Insights",
|
|
200
|
+
"Azure AI Foundry",
|
|
201
|
+
"Microsoft Fabric"
|
|
202
|
+
],
|
|
203
|
+
"optionalCategory": "Customer Service"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"cardId": "predict-risk-or-fraud",
|
|
207
|
+
"category": "Data and predictive analytics",
|
|
208
|
+
"title": "Predict risk or fraud",
|
|
209
|
+
"description": "Use AI to detect suspicious activities and predict potential threats in real-time.",
|
|
210
|
+
"typicalScenarios": [
|
|
211
|
+
"Banking - Identify suspicious patterns in transactions to detect potential fraud.",
|
|
212
|
+
"Cybersecurity - Predict threats in real-time to prevent data breaches."
|
|
213
|
+
],
|
|
214
|
+
"azureServices": [
|
|
215
|
+
"Azure AI Foundry",
|
|
216
|
+
"Microsoft Fabric",
|
|
217
|
+
"Dynamics 365 Fraud Protection",
|
|
218
|
+
"Azure Sentinel",
|
|
219
|
+
"Azure Machine Learning"
|
|
220
|
+
],
|
|
221
|
+
"optionalCategory": "Risk Management"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"cardId": "forecast-events-outcomes",
|
|
225
|
+
"category": "Data and predictive analytics",
|
|
226
|
+
"title": "Forecast Events & Outcomes",
|
|
227
|
+
"description": "Use AI to predict future scenarios and outcomes based on historical data.",
|
|
228
|
+
"typicalScenarios": [
|
|
229
|
+
"Project Management - Estimate project completion time based on past performance data.",
|
|
230
|
+
"Finance - Predict market trends to shape investment strategies."
|
|
231
|
+
],
|
|
232
|
+
"azureServices": [
|
|
233
|
+
"Azure Machine Learning",
|
|
234
|
+
"Microsoft Fabric"
|
|
235
|
+
],
|
|
236
|
+
"optionalCategory": "Forecasting"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"cardId": "predict-customer-churn",
|
|
240
|
+
"category": "Data and predictive analytics",
|
|
241
|
+
"title": "Predict Customer Churn",
|
|
242
|
+
"description": "Use AI to anticipate customer churn and respond proactively to retain them.",
|
|
243
|
+
"typicalScenarios": [
|
|
244
|
+
"Subscription Services - Predict potential cancellations based on customer usage patterns.",
|
|
245
|
+
"Marketing - Offer personalized incentives to customers at risk of churning."
|
|
246
|
+
],
|
|
247
|
+
"azureServices": [
|
|
248
|
+
"Azure Machine Learning",
|
|
249
|
+
"Microsoft Fabric",
|
|
250
|
+
"Dynamics 365 Customer Insights"
|
|
251
|
+
],
|
|
252
|
+
"optionalCategory": "Customer Retention"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"cardId": "predict-plan-demand",
|
|
256
|
+
"category": "Data and predictive analytics",
|
|
257
|
+
"title": "Predict & Plan Demand",
|
|
258
|
+
"description": "Use AI to analyze sales data, identify patterns, and forecast demand accurately.",
|
|
259
|
+
"typicalScenarios": [
|
|
260
|
+
"Sales - Analyze historical sales data to identify patterns and seasonality.",
|
|
261
|
+
"Inventory Management - Plan inventory based on forecasted demand to avoid stockouts and overstock."
|
|
262
|
+
],
|
|
263
|
+
"azureServices": [
|
|
264
|
+
"Azure Machine Learning",
|
|
265
|
+
"Microsoft Fabric",
|
|
266
|
+
"Dynamics 365 Supply Chain Management",
|
|
267
|
+
"Azure AI Foundry"
|
|
268
|
+
],
|
|
269
|
+
"optionalCategory": "Demand Forecasting"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"cardId": "simplify-data-analysis",
|
|
273
|
+
"category": "Data and predictive analytics",
|
|
274
|
+
"title": "Simplify Data Analysis",
|
|
275
|
+
"description": "Use AI to create complex data queries and dashboards through natural language, making insights more accessible.",
|
|
276
|
+
"typicalScenarios": [
|
|
277
|
+
"Sales - Generate expressions for trend analysis by describing the analytical goal.",
|
|
278
|
+
"Customer Service - Build a dashboard summarizing customer feedback using natural language queries."
|
|
279
|
+
],
|
|
280
|
+
"azureServices": [
|
|
281
|
+
"Copilot for Power BI",
|
|
282
|
+
"Azure AI Language",
|
|
283
|
+
"Azure AI Foundry"
|
|
284
|
+
],
|
|
285
|
+
"optionalCategory": "Data Analysis"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"cardId": "help-with-admin-tasks",
|
|
289
|
+
"category": "Task automation",
|
|
290
|
+
"title": "Help with admin tasks",
|
|
291
|
+
"description": "Use AI to automate repetitive and time-consuming office tasks.",
|
|
292
|
+
"typicalScenarios": [
|
|
293
|
+
"Finance - Automate data entry and report generation for increased efficiency",
|
|
294
|
+
"HR - Intelligently schedule meetings based on everyone's availability"
|
|
295
|
+
],
|
|
296
|
+
"azureServices": [
|
|
297
|
+
"Microsoft Copilot Studio",
|
|
298
|
+
"Microsoft 365 Copilot",
|
|
299
|
+
"Microsoft 365 Agents SDK"
|
|
300
|
+
],
|
|
301
|
+
"optionalCategory": "Office Automation"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"cardId": "simplify-household-tasks",
|
|
305
|
+
"category": "Task automation",
|
|
306
|
+
"title": "Simplify Household Tasks",
|
|
307
|
+
"description": "Use AI to automate and simplify everyday household tasks.",
|
|
308
|
+
"typicalScenarios": [
|
|
309
|
+
"Smart Home - Control lights, thermostats, and locks through voice commands",
|
|
310
|
+
"Energy Management - Monitor and regulate appliance energy usage for optimized consumption"
|
|
311
|
+
],
|
|
312
|
+
"azureServices": [
|
|
313
|
+
"Azure AI Foundry",
|
|
314
|
+
"Microsoft 365 Agents SDK",
|
|
315
|
+
"Microsoft Copilot Studio",
|
|
316
|
+
"Power Platform : AI Builder"
|
|
317
|
+
],
|
|
318
|
+
"optionalCategory": "Home Automation"
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"cardId": "help-with-personal-tasks",
|
|
322
|
+
"category": "Task automation",
|
|
323
|
+
"title": "Help with personal tasks",
|
|
324
|
+
"description": "Utilize AI to assist with daily personal tasks and health management.",
|
|
325
|
+
"typicalScenarios": [
|
|
326
|
+
"Health & Fitness - Get personalized fitness and health recommendations based on lifestyle and goals",
|
|
327
|
+
"Personal Reminders - Set reminders for appointments, medication intake, or bill payments"
|
|
328
|
+
],
|
|
329
|
+
"azureServices": [
|
|
330
|
+
"Azure AI Foundry",
|
|
331
|
+
"Microsoft 365 Copilot"
|
|
332
|
+
],
|
|
333
|
+
"optionalCategory": "Personal Assistance"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"cardId": "workflow-creation",
|
|
337
|
+
"category": "Task automation",
|
|
338
|
+
"title": "Workflow creation",
|
|
339
|
+
"description": "Use AI to create the steps for a workflow, enhancing efficiency.",
|
|
340
|
+
"typicalScenarios": [
|
|
341
|
+
"Finance - Automate expense approval processes by letting AI interpret descriptive sentences",
|
|
342
|
+
"Customer Service - Streamline responses by generating automation flows from common inquiries"
|
|
343
|
+
],
|
|
344
|
+
"azureServices": [
|
|
345
|
+
"Microsoft Copilot Studio",
|
|
346
|
+
"Azure AI Language",
|
|
347
|
+
"Microsoft 365 Copilot",
|
|
348
|
+
"Microsoft 365 Agents SDK"
|
|
349
|
+
],
|
|
350
|
+
"optionalCategory": "Workflow Automation"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"cardId": "refine-processes",
|
|
354
|
+
"category": "Decision making",
|
|
355
|
+
"title": "Refine Processes",
|
|
356
|
+
"description": "Leverage AI's ability to learn from past experiences and enhance actions, leading to better performance and efficiency.",
|
|
357
|
+
"typicalScenarios": [
|
|
358
|
+
"Manufacturing - Use AI for predictive maintenance, minimize downtime and reduce costs.",
|
|
359
|
+
"Education - Employ AI to adapt to students' learning styles, improving educational outcomes."
|
|
360
|
+
],
|
|
361
|
+
"azureServices": [
|
|
362
|
+
"Azure Machine Learning",
|
|
363
|
+
"Azure AI Foundry"
|
|
364
|
+
],
|
|
365
|
+
"optionalCategory": "Process Improvement"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"cardId": "optimize-strategy",
|
|
369
|
+
"category": "Decision making",
|
|
370
|
+
"title": "Optimize Strategy",
|
|
371
|
+
"description": "Use AI to predict and execute proactive strategies, optimizing results and boosting efficiency.",
|
|
372
|
+
"typicalScenarios": [
|
|
373
|
+
"Sales & Marketing - Predict the optimal strategy or sales approach for each customer, increasing conversions.",
|
|
374
|
+
"Customer Service - Use AI to suggest the best response to customer inquiries, enhancing satisfaction and retention."
|
|
375
|
+
],
|
|
376
|
+
"azureServices": [
|
|
377
|
+
"Microsoft 365 Copilot for Sales",
|
|
378
|
+
"Microsoft 365 Copilot for Service",
|
|
379
|
+
"Azure Machine Learning"
|
|
380
|
+
],
|
|
381
|
+
"optionalCategory": "Strategic Planning"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"cardId": "resolve-complex-issues",
|
|
385
|
+
"category": "Decision making",
|
|
386
|
+
"title": "Resolve Complex Issues",
|
|
387
|
+
"description": "Use AI to analyze vast data, forecast outcomes, and provide optimized solutions to intricate problems.",
|
|
388
|
+
"typicalScenarios": [
|
|
389
|
+
"Supply Chain - Enhance logistics and inventory management by predicting demand and identifying bottlenecks.",
|
|
390
|
+
"Cybersecurity - Employ AI to detect potential security threats, enabling proactive defense strategies."
|
|
391
|
+
],
|
|
392
|
+
"azureServices": [
|
|
393
|
+
"Azure Machine Learning",
|
|
394
|
+
"Azure AI Foundry",
|
|
395
|
+
"Dynamics 365 Supply Chain Management"
|
|
396
|
+
],
|
|
397
|
+
"optionalCategory": "Problem Solving"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"cardId": "spot-anomalies",
|
|
401
|
+
"category": "Decision making",
|
|
402
|
+
"title": "Spot Anomalies",
|
|
403
|
+
"description": "Leverage AI to find unusual data patterns or outliers, allowing for early issue detection and proactive solutions.",
|
|
404
|
+
"typicalScenarios": [
|
|
405
|
+
"Manufacturing - Monitor equipment data to spot anomalies, enable proactive maintenance and avoid costly breakdowns.",
|
|
406
|
+
"Healthcare - Detect anomalies in patient health data for early detection of potential health issues."
|
|
407
|
+
],
|
|
408
|
+
"azureServices": [
|
|
409
|
+
"Azure Machine Learning",
|
|
410
|
+
"Azure AI Foundry"
|
|
411
|
+
],
|
|
412
|
+
"optionalCategory": "Anomaly Detection"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"cardId": "moderate-content",
|
|
416
|
+
"category": "Decision making",
|
|
417
|
+
"title": "Moderate content",
|
|
418
|
+
"description": "Use AI to automatically detect and filter inappropriate or harmful content, ensuring a safe digital environment.",
|
|
419
|
+
"typicalScenarios": [
|
|
420
|
+
"E-commerce - Review product listings and user reviews for potentially fraudulent or inappropriate content.",
|
|
421
|
+
"Social Media - Filter offensive language, images, and videos to maintain a safe online community."
|
|
422
|
+
],
|
|
423
|
+
"azureServices": [
|
|
424
|
+
"Azure AI Foundry",
|
|
425
|
+
"Azure AI Content Safety",
|
|
426
|
+
"Azure AI Custom Vision",
|
|
427
|
+
"Azure AI Vision"
|
|
428
|
+
],
|
|
429
|
+
"optionalCategory": "Content Moderation"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"cardId": "enhance-decisions",
|
|
433
|
+
"category": "Decision making",
|
|
434
|
+
"title": "Enhance Decisions",
|
|
435
|
+
"description": "Use AI to assist in complex decision making, optimize processes, and predict outcomes, boosting efficiency and effectiveness.",
|
|
436
|
+
"typicalScenarios": [
|
|
437
|
+
"Retail - Predict sales trends and optimize inventory management for business efficiency.",
|
|
438
|
+
"Healthcare - Aid clinical decisions by predicting patient outcomes based on historical data."
|
|
439
|
+
],
|
|
440
|
+
"azureServices": [
|
|
441
|
+
"Azure AI Foundry",
|
|
442
|
+
"Azure Machine Learning",
|
|
443
|
+
"Dynamics 365 Customer Insights",
|
|
444
|
+
"Azure AI Foundry"
|
|
445
|
+
],
|
|
446
|
+
"optionalCategory": "Decision Making"
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"cardId": "personalize-content",
|
|
450
|
+
"category": "Decision making",
|
|
451
|
+
"title": "Personalize Content",
|
|
452
|
+
"description": "Leverage AI to generate tailored content suggestions based on user behavior, boosting customer engagement and experience.",
|
|
453
|
+
"typicalScenarios": [
|
|
454
|
+
"E-commerce - Personalize product suggestions based on user browsing history, enhancing sales and satisfaction.",
|
|
455
|
+
"Streaming Services - Offer tailored movie or music recommendations based on user preferences, improving user experience."
|
|
456
|
+
],
|
|
457
|
+
"azureServices": [
|
|
458
|
+
"Azure Machine Learning",
|
|
459
|
+
"Dynamics 365 Customer Insights",
|
|
460
|
+
"Azure AI Foundry"
|
|
461
|
+
],
|
|
462
|
+
"optionalCategory": "Personalization"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"cardId": "boost-sales-with-insights",
|
|
466
|
+
"category": "Decision making",
|
|
467
|
+
"title": "Boost Sales with Insights",
|
|
468
|
+
"description": "Leverage CRM data with AI to enhance sales strategies and customer relationships.",
|
|
469
|
+
"typicalScenarios": [
|
|
470
|
+
"Marketing - Draft personalized sales emails using data insights for improved engagement",
|
|
471
|
+
"Sales - Summarize customer meetings and auto-update records, ensuring data accuracy"
|
|
472
|
+
],
|
|
473
|
+
"azureServices": [
|
|
474
|
+
"Dynamics 365 Sales",
|
|
475
|
+
"Microsoft 365 Copilot for Sales",
|
|
476
|
+
"Microsoft 365 Copilot for Service",
|
|
477
|
+
"Dynamics 365 Customer Insights"
|
|
478
|
+
],
|
|
479
|
+
"optionalCategory": "Sales Accelerattion"
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"cardId": "streamline-financial-processes",
|
|
483
|
+
"category": "Decision making",
|
|
484
|
+
"title": "Streamline Financial Processes",
|
|
485
|
+
"description": "Utilize AI to automate financial tasks, improving accuracy and efficiency.",
|
|
486
|
+
"typicalScenarios": [
|
|
487
|
+
"E-commerce - Auto-generate detailed product descriptions for online catalogs",
|
|
488
|
+
"Banking - Assess credit risks by analyzing customer financial data"
|
|
489
|
+
],
|
|
490
|
+
"azureServices": [
|
|
491
|
+
"Dynamics 365 Finance & Operations",
|
|
492
|
+
"Azure AI Language"
|
|
493
|
+
],
|
|
494
|
+
"optionalCategory": "Financial Automation"
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"cardId": "recognize-and-understand-forms",
|
|
498
|
+
"category": "Visual perception",
|
|
499
|
+
"title": "Recognize and understand forms",
|
|
500
|
+
"description": "Use AI to extract data from various forms like receipts, invoices, and standard government or business documents.",
|
|
501
|
+
"typicalScenarios": [
|
|
502
|
+
"Handwritten Text - AI can identify handwritten text along with printed text.",
|
|
503
|
+
"Custom Models - Train custom AI models to recognize specific types of forms and documents."
|
|
504
|
+
],
|
|
505
|
+
"azureServices": [
|
|
506
|
+
"Azure AI Foundry",
|
|
507
|
+
"Azure AI Document Intelligence",
|
|
508
|
+
"Power Platform : AI Builder",
|
|
509
|
+
"Azure AI Content Understanding"
|
|
510
|
+
],
|
|
511
|
+
"optionalCategory": "Form Recognition"
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"cardId": "identify-objects",
|
|
515
|
+
"category": "Visual perception",
|
|
516
|
+
"title": "Identify Objects",
|
|
517
|
+
"description": "Use AI to create custom image recognition models for specific needs and applications",
|
|
518
|
+
"typicalScenarios": [
|
|
519
|
+
"Accessibility - assist visually impaired users with descriptions of environments.",
|
|
520
|
+
"Retail - Automatically identify and catalog products in images for streamlined inventory management."
|
|
521
|
+
],
|
|
522
|
+
"azureServices": [
|
|
523
|
+
"Azure AI Foundry",
|
|
524
|
+
"Azure AI Vision",
|
|
525
|
+
"Azure Machine Learning",
|
|
526
|
+
"Azure AI Content Understanding"
|
|
527
|
+
],
|
|
528
|
+
"optionalCategory": "Image recognition"
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"cardId": "convert-images-to-text",
|
|
532
|
+
"category": "Visual perception",
|
|
533
|
+
"title": "Convert Images to Text",
|
|
534
|
+
"description": "Use AI to transform various types of documents into editable and searchable data.",
|
|
535
|
+
"typicalScenarios": [
|
|
536
|
+
"Administration - Convert printed documents into digital text for easy search and retrieval.",
|
|
537
|
+
"Education - Transform printed textbooks into digital format, facilitating remote learning."
|
|
538
|
+
],
|
|
539
|
+
"azureServices": [
|
|
540
|
+
"Azure AI Vision",
|
|
541
|
+
"Power Platform : AI Builder",
|
|
542
|
+
"Bing Search API"
|
|
543
|
+
],
|
|
544
|
+
"optionalCategory": "Image to Text"
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"cardId": "identify-faces",
|
|
548
|
+
"category": "Visual perception",
|
|
549
|
+
"title": "Identify Faces",
|
|
550
|
+
"description": "Use AI to identify or verify a person's identity by comparing and analyzing patterns based on facial contours.",
|
|
551
|
+
"typicalScenarios": [
|
|
552
|
+
"Security Systems - Enhance security by enabling systems to identify authorized individuals for access control.",
|
|
553
|
+
"Social Media - Enables automatic tagging of individuals in social media platforms."
|
|
554
|
+
],
|
|
555
|
+
"azureServices": [
|
|
556
|
+
"Azure AI Face service",
|
|
557
|
+
"Azure AI Foundry",
|
|
558
|
+
"Azure AI Vision"
|
|
559
|
+
],
|
|
560
|
+
"optionalCategory": "Facial Recognition"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"cardId": "understand-environments",
|
|
564
|
+
"category": "Visual perception",
|
|
565
|
+
"title": "Understand environments",
|
|
566
|
+
"description": "Use AI to interpret relationships, patterns, and trends between different locations or spaces.",
|
|
567
|
+
"typicalScenarios": [
|
|
568
|
+
"Retail - Analyze customer movements and interactions within the store to understand behavior.",
|
|
569
|
+
"Urban Planning - Optimize infrastructure and services by analyzing spatial data like population density or traffic patterns."
|
|
570
|
+
],
|
|
571
|
+
"azureServices": [
|
|
572
|
+
"Azure Maps",
|
|
573
|
+
"Azure Digital Twins",
|
|
574
|
+
"Azure AI Vision",
|
|
575
|
+
"Azure AI Foundry"
|
|
576
|
+
],
|
|
577
|
+
"optionalCategory": "Spatial Analysis"
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"cardId": "analyse-images",
|
|
581
|
+
"category": "Visual perception",
|
|
582
|
+
"title": "Analyse images",
|
|
583
|
+
"description": "Utilize AI to understand, interpret, and derive insights from visual data.",
|
|
584
|
+
"typicalScenarios": [
|
|
585
|
+
"Agriculture - Assist farmers in crop monitoring by analyzing drone-captured images of farmland for signs of disease or distress.",
|
|
586
|
+
"Traffic Control - Manage traffic by analyzing real-time road images to identify congestion, accidents, or violations."
|
|
587
|
+
],
|
|
588
|
+
"azureServices": [
|
|
589
|
+
"Azure AI Vision",
|
|
590
|
+
"Azure AI Foundry",
|
|
591
|
+
"Azure Machine Learning",
|
|
592
|
+
"Bing Search API",
|
|
593
|
+
"Azure AI Content Understanding"
|
|
594
|
+
],
|
|
595
|
+
"optionalCategory": "Image Analysis"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"cardId": "categorize-images",
|
|
599
|
+
"category": "Visual perception",
|
|
600
|
+
"title": "Categorize Images",
|
|
601
|
+
"description": "Use AI to tag images based on their content, simplifying management and retrieval of visual data.",
|
|
602
|
+
"typicalScenarios": [
|
|
603
|
+
"Digital Asset Management - Simplify management of large image libraries by tagging images for easy retrieval.",
|
|
604
|
+
"E-Commerce - Enhance customer experience by tagging product images, enabling customers to search for similar products."
|
|
605
|
+
],
|
|
606
|
+
"azureServices": [
|
|
607
|
+
"Azure AI Vision",
|
|
608
|
+
"Azure AI Foundry",
|
|
609
|
+
"Azure Machine Learning",
|
|
610
|
+
"Azure AI Content Understanding"
|
|
611
|
+
],
|
|
612
|
+
"optionalCategory": "Image Tagging"
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"cardId": "create-image-captions",
|
|
616
|
+
"category": "Visual perception",
|
|
617
|
+
"title": "Create Image Captions",
|
|
618
|
+
"description": "Use AI to generate textual descriptions of images, enhancing understanding without visual perception.",
|
|
619
|
+
"typicalScenarios": [
|
|
620
|
+
"Accessibility - Improve accessibility for visually impaired users with textual descriptions of images on websites or applications.",
|
|
621
|
+
"Education - Assist learning by providing detailed captions for educational images or diagrams."
|
|
622
|
+
],
|
|
623
|
+
"azureServices": [
|
|
624
|
+
"Azure AI Vision",
|
|
625
|
+
"Azure AI Foundry"
|
|
626
|
+
],
|
|
627
|
+
"optionalCategory": "Image Captioning"
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
"cardId": "generate-image-metadata",
|
|
631
|
+
"category": "Visual perception",
|
|
632
|
+
"title": "Generate Image Metadata",
|
|
633
|
+
"description": "Use AI to create structured data about images, enhancing searchability and management.",
|
|
634
|
+
"typicalScenarios": [
|
|
635
|
+
"Digital Archives - Facilitate search and retrieval in large image archives by generating detailed metadata for each image.",
|
|
636
|
+
"Photography - Assist photographers in managing their portfolios by creating metadata for each photograph, including details like location, subject, camera settings, etc."
|
|
637
|
+
],
|
|
638
|
+
"azureServices": [
|
|
639
|
+
"Azure AI Vision",
|
|
640
|
+
"Azure AI Foundry",
|
|
641
|
+
"Azure Machine Learning"
|
|
642
|
+
],
|
|
643
|
+
"optionalCategory": "Image Metadata"
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
"cardId": "analyze-emotion-and-sentiment",
|
|
647
|
+
"category": "Text processing",
|
|
648
|
+
"title": "Analyze Emotion and Sentiment",
|
|
649
|
+
"description": "Use AI to detect and analyze user sentiment from text, helping to improve services and customer interactions.",
|
|
650
|
+
"typicalScenarios": [
|
|
651
|
+
"Customer Support - Analyze customer feedback or complaints with AI, identifying negative sentiments to prioritize actions and improve satisfaction.",
|
|
652
|
+
"Market Research - Understand customer sentiments from social media posts or product reviews, providing insights into public opinion and brand perception."
|
|
653
|
+
],
|
|
654
|
+
"azureServices": [
|
|
655
|
+
"Azure AI Language",
|
|
656
|
+
"Azure AI Foundry",
|
|
657
|
+
"Microsoft Copilot Studio",
|
|
658
|
+
"Microsoft 365 Agents SDK",
|
|
659
|
+
"Azure Machine Learning"
|
|
660
|
+
],
|
|
661
|
+
"optionalCategory": "Emotion and Sentiment Analysis"
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
"cardId": "generate-contextual-text",
|
|
665
|
+
"category": "Text processing",
|
|
666
|
+
"title": "Generate Contextual Text ",
|
|
667
|
+
"description": "Use AI to generate contextually relevant and personalized text, enhancing user experience and productivity.",
|
|
668
|
+
"typicalScenarios": [
|
|
669
|
+
"Content Creation - Create drafts for articles, blogs or social media posts with AI, to aid creation and curation.",
|
|
670
|
+
"Email Composition - Suggest email responses or draft emails based on past interactions with AI, saving time and effort."
|
|
671
|
+
],
|
|
672
|
+
"azureServices": [
|
|
673
|
+
"Azure AI Language",
|
|
674
|
+
"Azure AI Foundry",
|
|
675
|
+
"Microsoft Copilot Studio",
|
|
676
|
+
"Microsoft 365 Agents SDK",
|
|
677
|
+
"Microsoft 365 Copilot"
|
|
678
|
+
],
|
|
679
|
+
"optionalCategory": "Text Generation"
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"cardId": "summarize-text",
|
|
683
|
+
"category": "Text processing",
|
|
684
|
+
"title": "Summarize Text",
|
|
685
|
+
"description": "Use AI to extract key points from large text data, aiding in quick understanding and efficient information retrieval.",
|
|
686
|
+
"typicalScenarios": [
|
|
687
|
+
"Business Reports - Summarize lengthy business reports into key insights with AI, enabling swift decision-making.",
|
|
688
|
+
"News Digest - Summarize news articles into key points with AI, enabling readers to quickly grasp the main information."
|
|
689
|
+
],
|
|
690
|
+
"azureServices": [
|
|
691
|
+
"Azure AI Language",
|
|
692
|
+
"Azure AI Foundry",
|
|
693
|
+
"Microsoft Copilot Studio",
|
|
694
|
+
"Microsoft 365 Agents SDK",
|
|
695
|
+
"Microsoft Teams Premium"
|
|
696
|
+
],
|
|
697
|
+
"optionalCategory": "Text Generation"
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"cardId": "translate-text",
|
|
701
|
+
"category": "Text processing",
|
|
702
|
+
"title": "Translate text",
|
|
703
|
+
"description": "Use AI for translation across multiple languages, facilitating global communication and breaking language barriers.",
|
|
704
|
+
"typicalScenarios": [
|
|
705
|
+
"International Business - Translate business documents or emails instantly with AI, enabling smooth communication in multinational companies.",
|
|
706
|
+
"Education - Translate educational materials with AI, providing access to diverse learning resources and aiding in multilingual education."
|
|
707
|
+
],
|
|
708
|
+
"azureServices": [
|
|
709
|
+
"Azure AI Translator",
|
|
710
|
+
"Azure AI Foundry",
|
|
711
|
+
"Microsoft Copilot Studio",
|
|
712
|
+
"Microsoft Teams Premium"
|
|
713
|
+
],
|
|
714
|
+
"optionalCategory": "Text Generation"
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"cardId": "engage-in-natural-conversations",
|
|
718
|
+
"category": "Communication",
|
|
719
|
+
"title": "Engage in Natural Conversations",
|
|
720
|
+
"description": "Use AI to facilitate natural and engaging conversations, enhancing user experience and interaction.",
|
|
721
|
+
"typicalScenarios": [
|
|
722
|
+
"Customer Support - Understand and respond to user queries in natural language through an AI-powered chatbot.",
|
|
723
|
+
"Voice Assistants - Engage in voice-based interactions with users for hands-free operations using AI."
|
|
724
|
+
],
|
|
725
|
+
"azureServices": [
|
|
726
|
+
"Azure AI Bot Service",
|
|
727
|
+
"Azure AI Foundry",
|
|
728
|
+
"Azure AI Translator",
|
|
729
|
+
"Microsoft Copilot Studio",
|
|
730
|
+
"Microsoft 365 Agents SDK"
|
|
731
|
+
],
|
|
732
|
+
"optionalCategory": "Conversational AI"
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
"cardId": "convert-text-into-speech",
|
|
736
|
+
"category": "Communication",
|
|
737
|
+
"title": "Convert Text into Speech",
|
|
738
|
+
"description": "Use AI to transform text into lifelike speech, enhancing accessibility and user experience.",
|
|
739
|
+
"typicalScenarios": [
|
|
740
|
+
"Accessibility - Read out articles, books, or documents with AI for users with visual impairments.",
|
|
741
|
+
"Voice Assistants - Provide voice-based responses or instructions in applications or devices using AI."
|
|
742
|
+
],
|
|
743
|
+
"azureServices": [
|
|
744
|
+
"Azure AI Language",
|
|
745
|
+
"Azure AI Foundry"
|
|
746
|
+
],
|
|
747
|
+
"optionalCategory": "Text to speech"
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
"cardId": "automate-answers",
|
|
751
|
+
"category": "Communication",
|
|
752
|
+
"title": "Automate Answers",
|
|
753
|
+
"description": "Quickly address inquiries with instant, precise responses.",
|
|
754
|
+
"typicalScenarios": [
|
|
755
|
+
"Retail - Handle customer queries about products via chatbot.",
|
|
756
|
+
"Travel - Answer queries from airport guests on services and navigation."
|
|
757
|
+
],
|
|
758
|
+
"azureServices": [
|
|
759
|
+
"Azure AI Search",
|
|
760
|
+
"Azure AI Foundry",
|
|
761
|
+
"Azure AI Bot Service",
|
|
762
|
+
"Microsoft Copilot Studio",
|
|
763
|
+
"Microsoft 365 Agents SDK"
|
|
764
|
+
],
|
|
765
|
+
"optionalCategory": "Customer Service"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"cardId": "translate-speech-instantly",
|
|
769
|
+
"category": "Communication",
|
|
770
|
+
"title": "Translate Speech Instantly",
|
|
771
|
+
"description": "Enable instant translation of spoken language for seamless communication.",
|
|
772
|
+
"typicalScenarios": [
|
|
773
|
+
"Customer Support - Provide real-time translation in multilingual customer interactions.",
|
|
774
|
+
"Travel & Tourism - Facilitate communication for travelers by translating local languages instantly."
|
|
775
|
+
],
|
|
776
|
+
"azureServices": [
|
|
777
|
+
"Azure AI Foundry",
|
|
778
|
+
"Azure AI Language",
|
|
779
|
+
"Microsoft 365 Copilot"
|
|
780
|
+
],
|
|
781
|
+
"optionalCategory": "Communication"
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"cardId": "communicate-via-avatar",
|
|
785
|
+
"category": "Communication",
|
|
786
|
+
"title": "Communicate via avatar",
|
|
787
|
+
"description": "Create engaging experiences with audio and visual avatars for immersive gaming and personal assistants.",
|
|
788
|
+
"typicalScenarios": [
|
|
789
|
+
"Gaming industry - Enhance user immersion with unique voiced characters.",
|
|
790
|
+
"Virtual assistants - Improve user engagement with lifelike, expressive voices."
|
|
791
|
+
],
|
|
792
|
+
"azureServices": [
|
|
793
|
+
"Azure AI Foundry"
|
|
794
|
+
],
|
|
795
|
+
"optionalCategory": "User engagement"
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"cardId": "understand-user-intent",
|
|
799
|
+
"category": "Communication",
|
|
800
|
+
"title": "Understand User Intent",
|
|
801
|
+
"description": "Interpret human language to identify user's specific intentions and context.",
|
|
802
|
+
"typicalScenarios": [
|
|
803
|
+
"Customer Service - Understand customer requests and provide accurate support.",
|
|
804
|
+
"Chatbots - Enable chatbots to understand queries and provide relevant responses."
|
|
805
|
+
],
|
|
806
|
+
"azureServices": [
|
|
807
|
+
"Azure AI Language",
|
|
808
|
+
"Azure AI Bot Service",
|
|
809
|
+
"Azure AI Foundry",
|
|
810
|
+
"Microsoft 365 Agents SDK",
|
|
811
|
+
"Microsoft Copilot Studio"
|
|
812
|
+
],
|
|
813
|
+
"optionalCategory": "Customer Interaction"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"cardId": "convert-speech-to-text",
|
|
817
|
+
"category": "Speech recognition",
|
|
818
|
+
"title": "Convert Speech to Text",
|
|
819
|
+
"description": "Transcribe spoken language into text with AI and enable further text-based use.",
|
|
820
|
+
"typicalScenarios": [
|
|
821
|
+
"Transcription Services - Automate transcription of interviews, meetings or lectures.",
|
|
822
|
+
"Voice Assistants - Convert spoken commands into text for processing."
|
|
823
|
+
],
|
|
824
|
+
"azureServices": [
|
|
825
|
+
"Azure AI Foundry"
|
|
826
|
+
],
|
|
827
|
+
"optionalCategory": "Accessibility"
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
"cardId": "identify-voices",
|
|
831
|
+
"category": "Speech recognition",
|
|
832
|
+
"title": "Identify Voices",
|
|
833
|
+
"description": "Use unique voice characteristics to enhance security and personalization.",
|
|
834
|
+
"typicalScenarios": [
|
|
835
|
+
"Customer Service - Identify callers for personalized interactions and swift verification.",
|
|
836
|
+
"Smart Home Devices - Customize user experience by recognizing different household members' voices."
|
|
837
|
+
],
|
|
838
|
+
"azureServices": [
|
|
839
|
+
"Azure AI Foundry"
|
|
840
|
+
],
|
|
841
|
+
"optionalCategory": "Security & Personalization"
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"cardId": "activate-with-keyword",
|
|
845
|
+
"category": "Speech recognition",
|
|
846
|
+
"title": "Activate with Keyword",
|
|
847
|
+
"description": "Personalize activation of AI assistants or IoT devices using specific keywords.",
|
|
848
|
+
"typicalScenarios": [
|
|
849
|
+
"AI Assistants - Allow users to activate assistants with preferred catchphrases.",
|
|
850
|
+
"Automotive Industry - Improve driving experience with custom voice command activation."
|
|
851
|
+
],
|
|
852
|
+
"azureServices": [
|
|
853
|
+
"Azure IoT Edge",
|
|
854
|
+
"Azure AI Foundry",
|
|
855
|
+
"Azure AI Language"
|
|
856
|
+
],
|
|
857
|
+
"optionalCategory": "User Experience"
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"cardId": "enable-voice-commands",
|
|
861
|
+
"category": "Speech recognition",
|
|
862
|
+
"title": "Enable Voice Commands",
|
|
863
|
+
"description": "Interact with devices or applications hands-free for convenience and accessibility.",
|
|
864
|
+
"typicalScenarios": [
|
|
865
|
+
"Healthcare Industry - Assist medical professionals in accessing information or controlling equipment hands-free.",
|
|
866
|
+
"Smart Home Appliances - Control home appliances like lights or thermostats through voice commands."
|
|
867
|
+
],
|
|
868
|
+
"azureServices": [
|
|
869
|
+
"Azure AI Language",
|
|
870
|
+
"Azure AI Foundry"
|
|
871
|
+
],
|
|
872
|
+
"optionalCategory": "Accessibility & Convenience"
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
"cardId": "understand-special-context",
|
|
876
|
+
"category": "Speech recognition",
|
|
877
|
+
"title": "Understand special context",
|
|
878
|
+
"description": "Tailor speech synthesis and recognition for specific contexts, accents, or industries.",
|
|
879
|
+
"typicalScenarios": [
|
|
880
|
+
"Telecommunications - Train voice assistants to understand industry-specific jargon and accents.",
|
|
881
|
+
"Healthcare Industry - Enable medical applications to understand and generate medical terminologies."
|
|
882
|
+
],
|
|
883
|
+
"azureServices": [
|
|
884
|
+
"Azure AI Foundry",
|
|
885
|
+
"Azure AI Language"
|
|
886
|
+
],
|
|
887
|
+
"optionalCategory": "Communication & Efficiency"
|
|
888
|
+
},
|
|
889
|
+
{
|
|
890
|
+
"cardId": "mimic-specific-voices",
|
|
891
|
+
"category": "Speech recognition",
|
|
892
|
+
"title": "Mimic Specific Voices",
|
|
893
|
+
"description": "Create lifelike, synthesized speech that mirrors individual vocal characteristics.",
|
|
894
|
+
"typicalScenarios": [
|
|
895
|
+
"Entertainment Industry - Create realistic voiceovers for animated characters or digital influencers.",
|
|
896
|
+
"Accessibility - Develop assistive technologies that speak in familiar voices for users with special needs."
|
|
897
|
+
],
|
|
898
|
+
"azureServices": [
|
|
899
|
+
"Azure AI Foundry",
|
|
900
|
+
"Azure AI Language"
|
|
901
|
+
],
|
|
902
|
+
"optionalCategory": "Personalization & Engagement"
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"cardId": "interpret-touch-for-control",
|
|
906
|
+
"category": "Environmental awareness",
|
|
907
|
+
"title": "Interpret Touch for Control",
|
|
908
|
+
"description": "Enable intuitive control through touch-based interactions.",
|
|
909
|
+
"typicalScenarios": [
|
|
910
|
+
"Tech sector - Navigating smartphone or tablet interfaces using touch gestures.",
|
|
911
|
+
"Design sector - Drawing or annotating on touch-enabled devices for creative work."
|
|
912
|
+
],
|
|
913
|
+
"azureServices": [
|
|
914
|
+
"Microsoft Surface",
|
|
915
|
+
"Azure AI Custom Vision"
|
|
916
|
+
],
|
|
917
|
+
"optionalCategory": "Touch recognition"
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"cardId": "understand-flavors-and-tastes",
|
|
921
|
+
"category": "Environmental awareness",
|
|
922
|
+
"title": "Understand Flavors and Tastes",
|
|
923
|
+
"description": "Create and predict flavor profiles based on user purchases and new recipes.",
|
|
924
|
+
"typicalScenarios": [
|
|
925
|
+
"Retail - Create personalized flavor profiles based on food and beverage purchases.",
|
|
926
|
+
"Food Industry - Predict the optimum flavor profiles for new recipes or food products."
|
|
927
|
+
],
|
|
928
|
+
"azureServices": [
|
|
929
|
+
"Azure Machine Learning",
|
|
930
|
+
"Azure AI Foundry",
|
|
931
|
+
"Microsoft Fabric"
|
|
932
|
+
],
|
|
933
|
+
"optionalCategory": "Food and Beverage"
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"cardId": "predict-chemical-properties",
|
|
937
|
+
"category": "Environmental awareness",
|
|
938
|
+
"title": "Predict chemical properties",
|
|
939
|
+
"description": "Forecast the smell or detect hazards based on chemical profiles.",
|
|
940
|
+
"typicalScenarios": [
|
|
941
|
+
"Chemical Industry - Enhance fabric softener smell with optimal chemical combinations.",
|
|
942
|
+
"Safety and Security - Identify hazards based on unique chemical profiles."
|
|
943
|
+
],
|
|
944
|
+
"azureServices": [
|
|
945
|
+
"Azure Machine Learning",
|
|
946
|
+
"Azure AI Foundry",
|
|
947
|
+
"Microsoft Fabric"
|
|
948
|
+
],
|
|
949
|
+
"optionalCategory": "Chemical and Safety"
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
"cardId": "navigate-smartly-with-sensing",
|
|
953
|
+
"category": "Environmental awareness",
|
|
954
|
+
"title": "Navigate Smartly with Sensing",
|
|
955
|
+
"description": "Detect objects and environments for advanced navigation.",
|
|
956
|
+
"typicalScenarios": [
|
|
957
|
+
"Robotics - Recognize objects and obstacles for safe, efficient robotic navigation.",
|
|
958
|
+
"Retail - Understand surroundings to provide context-aware product recommendations."
|
|
959
|
+
],
|
|
960
|
+
"azureServices": [
|
|
961
|
+
"Azure Machine Learning",
|
|
962
|
+
"Azure AI Vision",
|
|
963
|
+
"Azure Spatial Anchors"
|
|
964
|
+
],
|
|
965
|
+
"optionalCategory": "Object and Environment Sensing"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"cardId": "detect-motion",
|
|
969
|
+
"category": "Environmental awareness",
|
|
970
|
+
"title": "detect motion",
|
|
971
|
+
"description": "Use motion detection for improved interaction and monitoring.",
|
|
972
|
+
"typicalScenarios": [
|
|
973
|
+
"Sports - Monitor and analyze athlete movements for performance improvements.",
|
|
974
|
+
"Security - Detect unusual motions for enhanced security surveillance and alerts."
|
|
975
|
+
],
|
|
976
|
+
"azureServices": [
|
|
977
|
+
"Azure Machine Learning",
|
|
978
|
+
"Azure IoT Edge",
|
|
979
|
+
"Azure AI Foundry"
|
|
980
|
+
],
|
|
981
|
+
"optionalCategory": "Motion Detection"
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
"cardId": "generate-images-from-text",
|
|
985
|
+
"category": "Content creation",
|
|
986
|
+
"title": "Generate Images from Text",
|
|
987
|
+
"description": "Create unique images from textual descriptions utilizing AI.",
|
|
988
|
+
"typicalScenarios": [
|
|
989
|
+
"Entertainment & Media - Create unique characters and scenes for movies or games from text descriptions.",
|
|
990
|
+
"Advertising - Generate visuals for ad campaigns based on text-described themes or concepts."
|
|
991
|
+
],
|
|
992
|
+
"azureServices": [
|
|
993
|
+
"Azure AI Foundry",
|
|
994
|
+
"Microsoft Designer",
|
|
995
|
+
"Microsoft 365 Copilot",
|
|
996
|
+
"Azure AI Content Understanding"
|
|
997
|
+
],
|
|
998
|
+
"optionalCategory": "Text-to-Image Conversion"
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
"cardId": "generate-or-enhance-text",
|
|
1002
|
+
"category": "Content creation",
|
|
1003
|
+
"title": "Generate or Enhance Text",
|
|
1004
|
+
"description": "Implement advanced natural language understanding for more sophisticated, human-like interactions.",
|
|
1005
|
+
"typicalScenarios": [
|
|
1006
|
+
"Content Creation - Generate high-quality text for blogs, articles, or social media posts, enhancing productivity.",
|
|
1007
|
+
"Data Analysis - Extract insights from large volumes of text data, enabling informed business decisions."
|
|
1008
|
+
],
|
|
1009
|
+
"azureServices": [
|
|
1010
|
+
"Azure AI Foundry",
|
|
1011
|
+
"Azure AI Language",
|
|
1012
|
+
"Microsoft 365 Copilot"
|
|
1013
|
+
],
|
|
1014
|
+
"optionalCategory": "Text Generation & Enhancement"
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
"cardId": "generate-synthetic-data",
|
|
1018
|
+
"category": "Content creation",
|
|
1019
|
+
"title": "Generate Synthetic Data",
|
|
1020
|
+
"description": "Create synthetic data that mimics real data for robust model training without compromising privacy.",
|
|
1021
|
+
"typicalScenarios": [
|
|
1022
|
+
"Finance - Simulate financial scenarios to test models, enhancing risk management without revealing sensitive data.",
|
|
1023
|
+
"Retail - Generate synthetic customer behavior data to optimize sales strategies while preserving customer privacy."
|
|
1024
|
+
],
|
|
1025
|
+
"azureServices": [
|
|
1026
|
+
"Azure AI Foundry",
|
|
1027
|
+
"Azure Machine Learning",
|
|
1028
|
+
"Microsoft Fabric"
|
|
1029
|
+
],
|
|
1030
|
+
"optionalCategory": "Synthetic Data Generation"
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
"cardId": "personalize-marketing",
|
|
1034
|
+
"category": "Content creation",
|
|
1035
|
+
"title": "Personalize marketing",
|
|
1036
|
+
"description": "Use AI to tailor marketing campaigns by analyzing customer data and predicting optimal engagement strategies.",
|
|
1037
|
+
"typicalScenarios": [
|
|
1038
|
+
"Targeted Campaigns - Segment customers based on behavior and preferences for impactful marketing campaigns with AI.",
|
|
1039
|
+
"Content Improvement - Leverage AI to suggest enhancements to marketing content, aligning with target audience interests."
|
|
1040
|
+
],
|
|
1041
|
+
"azureServices": [
|
|
1042
|
+
"Azure AI Search",
|
|
1043
|
+
"Azure Machine Learning",
|
|
1044
|
+
"Dynamics 365 Customer Insights"
|
|
1045
|
+
],
|
|
1046
|
+
"optionalCategory": "Marketing"
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
"cardId": "create-dynamic-web-pages",
|
|
1050
|
+
"category": "Content creation",
|
|
1051
|
+
"title": "Create Dynamic Web Pages",
|
|
1052
|
+
"description": "Use AI to generate text, forms, and layouts for web pages, simplifying web development.",
|
|
1053
|
+
"typicalScenarios": [
|
|
1054
|
+
"Form Creation - Use AI to automatically generate detailed forms for event registrations.",
|
|
1055
|
+
"Dynamic Layouts - Create dynamic webpage layouts for a product catalog using AI."
|
|
1056
|
+
],
|
|
1057
|
+
"azureServices": [
|
|
1058
|
+
"Power Platform : Power Pages",
|
|
1059
|
+
"Azure AI Language",
|
|
1060
|
+
"GitHub Copilot"
|
|
1061
|
+
],
|
|
1062
|
+
"optionalCategory": "Web Development"
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
"cardId": "streamline-r-d",
|
|
1066
|
+
"category": "Process optimization",
|
|
1067
|
+
"title": "Streamline R&D",
|
|
1068
|
+
"description": "Optimize research and development processes through intelligent AI analysis.",
|
|
1069
|
+
"typicalScenarios": [
|
|
1070
|
+
"Lab Efficiency - Automate and optimize laboratory processes for increased efficiency with AI.",
|
|
1071
|
+
"Product Success Prediction - Predict the success of new product developments based on historical data using AI."
|
|
1072
|
+
],
|
|
1073
|
+
"azureServices": [
|
|
1074
|
+
"Azure Machine Learning",
|
|
1075
|
+
"Azure AI Foundry",
|
|
1076
|
+
"Microsoft Fabric",
|
|
1077
|
+
"Microsoft 365 Agents SDK"
|
|
1078
|
+
],
|
|
1079
|
+
"optionalCategory": "Research & Development"
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
"cardId": "adjust-pricing",
|
|
1083
|
+
"category": "Process optimization",
|
|
1084
|
+
"title": "Adjust Pricing",
|
|
1085
|
+
"description": "Use AI for pricing optimization to enhance profitability.",
|
|
1086
|
+
"typicalScenarios": [
|
|
1087
|
+
"Real-time Adjustments - Adjust product prices in real-time based on market demand and competition with AI.",
|
|
1088
|
+
"Price Prediction - Predict the optimal price for a new product or service using AI."
|
|
1089
|
+
],
|
|
1090
|
+
"azureServices": [
|
|
1091
|
+
"Azure Machine Learning",
|
|
1092
|
+
"Microsoft Fabric",
|
|
1093
|
+
"Dynamics 365 Finance & Operations",
|
|
1094
|
+
"Microsoft 365 Agents SDK"
|
|
1095
|
+
],
|
|
1096
|
+
"optionalCategory": "Pricing Optimization"
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"cardId": "improve-routing",
|
|
1100
|
+
"category": "Process optimization",
|
|
1101
|
+
"title": "Improve routing",
|
|
1102
|
+
"description": "Leverage AI to efficiently optimize routes, logistics and supply chains.",
|
|
1103
|
+
"typicalScenarios": [
|
|
1104
|
+
"Delivery Optimization - Determine the most efficient delivery routes to minimize time and fuel costs using AI.",
|
|
1105
|
+
"Inventory Management - Optimize inventory management based on demand forecasting with AI."
|
|
1106
|
+
],
|
|
1107
|
+
"azureServices": [
|
|
1108
|
+
"Azure Maps",
|
|
1109
|
+
"Microsoft 365 Copilot for Service",
|
|
1110
|
+
"Dynamics 365 Supply Chain Management",
|
|
1111
|
+
"Azure Machine Learning"
|
|
1112
|
+
],
|
|
1113
|
+
"optionalCategory": "Logistics & Supply Chain"
|
|
1114
|
+
},
|
|
1115
|
+
{
|
|
1116
|
+
"cardId": "enhance-production",
|
|
1117
|
+
"category": "Process optimization",
|
|
1118
|
+
"title": "Enhance production",
|
|
1119
|
+
"description": "Use AI to optimize production and warehousing for enhanced efficiency.",
|
|
1120
|
+
"typicalScenarios": [
|
|
1121
|
+
"Maintenance Prediction - Predict machinery maintenance needs with AI to avoid production downtime.",
|
|
1122
|
+
"Demand Forecast - Predict demand to optimize production, storage and delivery of goods."
|
|
1123
|
+
],
|
|
1124
|
+
"azureServices": [
|
|
1125
|
+
"Azure Machine Learning",
|
|
1126
|
+
"Azure AI Foundry",
|
|
1127
|
+
"Microsoft Fabric",
|
|
1128
|
+
"Azure IoT Operations",
|
|
1129
|
+
"Dynamics 365 Supply Chain Management"
|
|
1130
|
+
],
|
|
1131
|
+
"optionalCategory": "Production & Agriculture"
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
"cardId": "quality-control-maintenance",
|
|
1135
|
+
"category": "Process optimization",
|
|
1136
|
+
"title": "quality control & maintenance",
|
|
1137
|
+
"description": "Use AI for enhanced quality control and predictive maintenance.",
|
|
1138
|
+
"typicalScenarios": [
|
|
1139
|
+
"Real-Time Defect Detection - Identify product defects in real-time during production processes with AI.",
|
|
1140
|
+
"Quality Standards Improvement - Analyze historical data with AI to improve quality control standards."
|
|
1141
|
+
],
|
|
1142
|
+
"azureServices": [
|
|
1143
|
+
"Azure Machine Learning",
|
|
1144
|
+
"Azure IoT Edge",
|
|
1145
|
+
"Dynamics 365 Field Service",
|
|
1146
|
+
"Azure AI Vision",
|
|
1147
|
+
"Microsoft 365 Agents SDK"
|
|
1148
|
+
],
|
|
1149
|
+
"optionalCategory": "Quality Control & Maintenance"
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
"cardId": "manage-complex-systems",
|
|
1153
|
+
"category": "Process optimization",
|
|
1154
|
+
"title": "Manage complex systems",
|
|
1155
|
+
"description": "Use AI to efficiently manage cities, countries, and large factories.",
|
|
1156
|
+
"typicalScenarios": [
|
|
1157
|
+
"Traffic Optimization - Analyze city traffic data with AI to optimize road networks and reduce congestion.",
|
|
1158
|
+
"Resource Management - Use AI to manage national resources and public services efficiently."
|
|
1159
|
+
],
|
|
1160
|
+
"azureServices": [
|
|
1161
|
+
"Azure Machine Learning",
|
|
1162
|
+
"Azure Digital Twins",
|
|
1163
|
+
"Dynamics 365 Supply Chain Management",
|
|
1164
|
+
"Microsoft 365 Agents SDK"
|
|
1165
|
+
],
|
|
1166
|
+
"optionalCategory": "Infrastructure Management"
|
|
1167
|
+
},
|
|
1168
|
+
{
|
|
1169
|
+
"cardId": "spot-damage-predict-failure",
|
|
1170
|
+
"category": "Process optimization",
|
|
1171
|
+
"title": "Spot damage, predict failure",
|
|
1172
|
+
"description": "Leverage AI for damage detection and predictive maintenance.",
|
|
1173
|
+
"typicalScenarios": [
|
|
1174
|
+
"Damage Detection - Detect signs of damage in machinery for timely repairs using AI.",
|
|
1175
|
+
"Predictive Maintenance - Predict maintenance needs with AI to prevent unexpected equipment breakdowns."
|
|
1176
|
+
],
|
|
1177
|
+
"azureServices": [
|
|
1178
|
+
"Azure Machine Learning",
|
|
1179
|
+
"Dynamics 365 Field Service",
|
|
1180
|
+
"Azure IoT Operations"
|
|
1181
|
+
],
|
|
1182
|
+
"optionalCategory": "Damage Detection & Maintenance"
|
|
1183
|
+
},
|
|
1184
|
+
{
|
|
1185
|
+
"cardId": "optimize-sales-workflows",
|
|
1186
|
+
"category": "Process optimization",
|
|
1187
|
+
"title": "Optimize Sales workflows",
|
|
1188
|
+
"description": "Use AI for predictive insights and automation in sales workflows, streamlining tasks and CRM.",
|
|
1189
|
+
"typicalScenarios": [
|
|
1190
|
+
"Lead Scoring - Evaluate past data with AI to prioritize leads, targeting promising prospects.",
|
|
1191
|
+
"Tailored Follow-Ups - Assess customer interactions with AI to suggest custom actions, boosting sales closure rates."
|
|
1192
|
+
],
|
|
1193
|
+
"azureServices": [
|
|
1194
|
+
"Azure Machine Learning",
|
|
1195
|
+
"Microsoft Fabric",
|
|
1196
|
+
"Microsoft 365 Copilot for Sales"
|
|
1197
|
+
],
|
|
1198
|
+
"optionalCategory": "Sales optimization"
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
"cardId": "streamline-field-service",
|
|
1202
|
+
"category": "Process optimization",
|
|
1203
|
+
"title": "Streamline Field Service",
|
|
1204
|
+
"description": "Boost technician productivity and simplify work order management through AI.",
|
|
1205
|
+
"typicalScenarios": [
|
|
1206
|
+
"Field Service - Technicians receive summarized key points of work orders, enabling quicker job comprehension.",
|
|
1207
|
+
"Management - Efficiently schedule and manage work orders with AI assistance."
|
|
1208
|
+
],
|
|
1209
|
+
"azureServices": [
|
|
1210
|
+
"Dynamics 365 Field Service",
|
|
1211
|
+
"Azure AI Language",
|
|
1212
|
+
"Azure AI Foundry"
|
|
1213
|
+
],
|
|
1214
|
+
"optionalCategory": "Field Service"
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
"cardId": "simplify-app-development",
|
|
1218
|
+
"category": "Process optimization",
|
|
1219
|
+
"title": "Simplify App Development",
|
|
1220
|
+
"description": "Speed up development and enhance creativity by transforming natural language into functional app components.",
|
|
1221
|
+
"typicalScenarios": [
|
|
1222
|
+
"HR - Create employee onboarding apps quickly by describing the desired functionality.",
|
|
1223
|
+
"Retail - Develop inventory management apps by converting sketches or designs into working prototypes."
|
|
1224
|
+
],
|
|
1225
|
+
"azureServices": [
|
|
1226
|
+
"Power Platform : Power Apps",
|
|
1227
|
+
"GitHub Copilot"
|
|
1228
|
+
],
|
|
1229
|
+
"optionalCategory": "App Development"
|
|
1230
|
+
},
|
|
1231
|
+
{
|
|
1232
|
+
"cardId": "automate-fullfillment",
|
|
1233
|
+
"category": "Navigation and control",
|
|
1234
|
+
"title": "Automate fullfillment",
|
|
1235
|
+
"description": "Use AI to drive warehouse and supermarket systems, and control robots for efficient order fulfillment.",
|
|
1236
|
+
"typicalScenarios": [
|
|
1237
|
+
"Warehouse - Automate order picking with robots programmed to navigate the layout efficiently.",
|
|
1238
|
+
"Fulfillment Center - Operate robots to sort, pack, and dispatch goods based on order information."
|
|
1239
|
+
],
|
|
1240
|
+
"azureServices": [
|
|
1241
|
+
"Azure IoT Operations",
|
|
1242
|
+
"Azure Digital Twins",
|
|
1243
|
+
"Azure AI Foundry",
|
|
1244
|
+
"Dynamics 365 Supply Chain Management"
|
|
1245
|
+
],
|
|
1246
|
+
"optionalCategory": "Logistics"
|
|
1247
|
+
}
|
|
1248
|
+
]
|
|
1249
|
+
}
|