blockmine 1.21.0 → 1.23.0
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/.claude/agents/README.md +469 -0
- package/.claude/agents/auth-route-debugger.md +118 -0
- package/.claude/agents/auth-route-tester.md +93 -0
- package/.claude/agents/auto-error-resolver.md +97 -0
- package/.claude/agents/build-optimizer.md +236 -0
- package/.claude/agents/code-architecture-reviewer.md +83 -0
- package/.claude/agents/code-refactor-master.md +94 -0
- package/.claude/agents/cost-optimizer.md +134 -0
- package/.claude/agents/deployment-orchestrator.md +113 -0
- package/.claude/agents/documentation-architect.md +82 -0
- package/.claude/agents/frontend-error-fixer.md +77 -0
- package/.claude/agents/iac-code-generator.md +71 -0
- package/.claude/agents/incident-responder.md +346 -0
- package/.claude/agents/infrastructure-architect.md +31 -0
- package/.claude/agents/kubernetes-specialist.md +56 -0
- package/.claude/agents/migration-planner.md +181 -0
- package/.claude/agents/network-architect.md +196 -0
- package/.claude/agents/plan-reviewer.md +52 -0
- package/.claude/agents/refactor-planner.md +63 -0
- package/.claude/agents/security-scanner.md +102 -0
- package/.claude/agents/web-research-specialist.md +78 -0
- package/.claude/commands/cost-analysis.md +315 -0
- package/.claude/commands/dev-docs-update.md +55 -0
- package/.claude/commands/dev-docs.md +51 -0
- package/.claude/commands/incident-debug.md +247 -0
- package/.claude/commands/infra-plan.md +81 -0
- package/.claude/commands/migration-plan.md +478 -0
- package/.claude/commands/route-research-for-testing.md +37 -0
- package/.claude/commands/security-review.md +66 -0
- package/.claude/hooks/CONFIG.md +448 -0
- package/.claude/hooks/README.md +163 -0
- package/.claude/hooks/SKILL_ACTIVATION_COMPLETE.md +226 -0
- package/.claude/hooks/WINDOWS_HOOKS_README.md +151 -0
- package/.claude/hooks/add-skill-activation-banners.ts +132 -0
- package/.claude/hooks/comprehensive-skill-test.ts +1315 -0
- package/.claude/hooks/error-handling-reminder.sh +12 -0
- package/.claude/hooks/error-handling-reminder.ts +222 -0
- package/.claude/hooks/k8s-manifest-validator.sh +56 -0
- package/.claude/hooks/package-lock.json +556 -0
- package/.claude/hooks/package.json +16 -0
- package/.claude/hooks/post-tool-use-tracker.ps1 +174 -0
- package/.claude/hooks/post-tool-use-tracker.sh +183 -0
- package/.claude/hooks/security-policy-check.sh +247 -0
- package/.claude/hooks/skill-activation-prompt.ps1 +10 -0
- package/.claude/hooks/skill-activation-prompt.sh +10 -0
- package/.claude/hooks/skill-activation-prompt.ts +141 -0
- package/.claude/hooks/stop-build-check-enhanced.sh +130 -0
- package/.claude/hooks/terraform-validator.sh +53 -0
- package/.claude/hooks/test-input.json +7 -0
- package/.claude/hooks/test-skill-activation.ts +427 -0
- package/.claude/hooks/trigger-build-resolver.sh +79 -0
- package/.claude/hooks/tsc-check.sh +173 -0
- package/.claude/hooks/tsconfig.json +19 -0
- package/.claude/settings.json +59 -0
- package/.claude/settings.local.json +36 -14
- package/.claude/skills/README.md +507 -0
- package/.claude/skills/api-engineering/SKILL.md +63 -0
- package/.claude/skills/api-engineering/resources/api-versioning.md +88 -0
- package/.claude/skills/api-engineering/resources/graphql-patterns.md +106 -0
- package/.claude/skills/api-engineering/resources/rate-limiting.md +118 -0
- package/.claude/skills/api-engineering/resources/rest-api-design.md +105 -0
- package/.claude/skills/backend-dev-guidelines/SKILL.md +306 -0
- package/.claude/skills/backend-dev-guidelines/resources/architecture-overview.md +451 -0
- package/.claude/skills/backend-dev-guidelines/resources/async-and-errors.md +307 -0
- package/.claude/skills/backend-dev-guidelines/resources/complete-examples.md +638 -0
- package/.claude/skills/backend-dev-guidelines/resources/configuration.md +275 -0
- package/.claude/skills/backend-dev-guidelines/resources/database-patterns.md +224 -0
- package/.claude/skills/backend-dev-guidelines/resources/middleware-guide.md +213 -0
- package/.claude/skills/backend-dev-guidelines/resources/routing-and-controllers.md +756 -0
- package/.claude/skills/backend-dev-guidelines/resources/sentry-and-monitoring.md +336 -0
- package/.claude/skills/backend-dev-guidelines/resources/services-and-repositories.md +789 -0
- package/.claude/skills/backend-dev-guidelines/resources/testing-guide.md +235 -0
- package/.claude/skills/backend-dev-guidelines/resources/validation-patterns.md +754 -0
- package/.claude/skills/budget-and-cost-management/SKILL.md +850 -0
- package/.claude/skills/build-engineering/SKILL.md +431 -0
- package/.claude/skills/build-engineering/resources/artifact-repositories.md +72 -0
- package/.claude/skills/build-engineering/resources/build-caching.md +96 -0
- package/.claude/skills/build-engineering/resources/build-pipelines.md +105 -0
- package/.claude/skills/build-engineering/resources/build-security.md +95 -0
- package/.claude/skills/build-engineering/resources/build-systems.md +389 -0
- package/.claude/skills/build-engineering/resources/compilation-optimization.md +201 -0
- package/.claude/skills/build-engineering/resources/dependency-management.md +73 -0
- package/.claude/skills/build-engineering/resources/monorepo-builds.md +110 -0
- package/.claude/skills/build-engineering/resources/performance-optimization.md +113 -0
- package/.claude/skills/build-engineering/resources/reproducible-builds.md +82 -0
- package/.claude/skills/cloud-engineering/SKILL.md +675 -0
- package/.claude/skills/cloud-engineering/resources/aws-patterns.md +742 -0
- package/.claude/skills/cloud-engineering/resources/azure-patterns.md +714 -0
- package/.claude/skills/cloud-engineering/resources/cleared-cloud-environments.md +987 -0
- package/.claude/skills/cloud-engineering/resources/cloud-cost-optimization.md +757 -0
- package/.claude/skills/cloud-engineering/resources/cloud-networking.md +1058 -0
- package/.claude/skills/cloud-engineering/resources/cloud-security-tools.md +1530 -0
- package/.claude/skills/cloud-engineering/resources/cloud-security.md +990 -0
- package/.claude/skills/cloud-engineering/resources/gcp-patterns.md +758 -0
- package/.claude/skills/cloud-engineering/resources/migration-strategies.md +820 -0
- package/.claude/skills/cloud-engineering/resources/multi-cloud-strategies.md +670 -0
- package/.claude/skills/cloud-engineering/resources/oci-patterns.md +1198 -0
- package/.claude/skills/cloud-engineering/resources/serverless-patterns.md +795 -0
- package/.claude/skills/cloud-engineering/resources/well-architected-frameworks.md +966 -0
- package/.claude/skills/cybersecurity/SKILL.md +409 -0
- package/.claude/skills/cybersecurity/resources/security-architecture.md +266 -0
- package/.claude/skills/database-engineering/SKILL.md +61 -0
- package/.claude/skills/database-engineering/resources/backup-and-recovery.md +72 -0
- package/.claude/skills/database-engineering/resources/database-replication.md +63 -0
- package/.claude/skills/database-engineering/resources/postgresql-fundamentals.md +70 -0
- package/.claude/skills/database-engineering/resources/query-optimization.md +68 -0
- package/.claude/skills/devsecops/SKILL.md +374 -0
- package/.claude/skills/devsecops/resources/ci-cd-security.md +204 -0
- package/.claude/skills/devsecops/resources/compliance-automation.md +530 -0
- package/.claude/skills/devsecops/resources/compliance-frameworks.md +2322 -0
- package/.claude/skills/devsecops/resources/container-security.md +915 -0
- package/.claude/skills/devsecops/resources/cspm-integration.md +1440 -0
- package/.claude/skills/devsecops/resources/policy-enforcement.md +619 -0
- package/.claude/skills/devsecops/resources/secrets-management.md +755 -0
- package/.claude/skills/devsecops/resources/security-monitoring.md +146 -0
- package/.claude/skills/devsecops/resources/security-scanning.md +887 -0
- package/.claude/skills/devsecops/resources/security-testing.md +203 -0
- package/.claude/skills/devsecops/resources/supply-chain-security.md +518 -0
- package/.claude/skills/devsecops/resources/vulnerability-management.md +481 -0
- package/.claude/skills/devsecops/resources/zero-trust-architecture.md +177 -0
- package/.claude/skills/documentation-as-code/SKILL.md +323 -0
- package/.claude/skills/documentation-as-code/resources/api-documentation.md +90 -0
- package/.claude/skills/documentation-as-code/resources/changelog-management.md +79 -0
- package/.claude/skills/documentation-as-code/resources/diagram-generation.md +44 -0
- package/.claude/skills/documentation-as-code/resources/docs-as-code-workflow.md +99 -0
- package/.claude/skills/documentation-as-code/resources/documentation-automation.md +68 -0
- package/.claude/skills/documentation-as-code/resources/documentation-sites.md +79 -0
- package/.claude/skills/documentation-as-code/resources/markdown-best-practices.md +162 -0
- package/.claude/skills/documentation-as-code/resources/openapi-specification.md +77 -0
- package/.claude/skills/documentation-as-code/resources/readme-engineering.md +60 -0
- package/.claude/skills/documentation-as-code/resources/technical-writing-guide.md +202 -0
- package/.claude/skills/engineering-management/SKILL.md +356 -0
- package/.claude/skills/engineering-management/resources/career-ladders.md +609 -0
- package/.claude/skills/engineering-management/resources/hiring-and-assessment.md +555 -0
- package/.claude/skills/engineering-management/resources/one-on-one-guides.md +609 -0
- package/.claude/skills/engineering-management/resources/resource-planning.md +557 -0
- package/.claude/skills/engineering-management/resources/team-organization-patterns.md +491 -0
- package/.claude/skills/engineering-management/resources/technical-interviews.md +474 -0
- package/.claude/skills/engineering-operations-management/SKILL.md +817 -0
- package/.claude/skills/error-tracking/SKILL.md +379 -0
- package/.claude/skills/frontend-dev-guidelines/SKILL.md +403 -0
- package/.claude/skills/frontend-dev-guidelines/resources/common-patterns.md +331 -0
- package/.claude/skills/frontend-dev-guidelines/resources/complete-examples.md +872 -0
- package/.claude/skills/frontend-dev-guidelines/resources/component-patterns.md +502 -0
- package/.claude/skills/frontend-dev-guidelines/resources/data-fetching.md +767 -0
- package/.claude/skills/frontend-dev-guidelines/resources/file-organization.md +502 -0
- package/.claude/skills/frontend-dev-guidelines/resources/loading-and-error-states.md +501 -0
- package/.claude/skills/frontend-dev-guidelines/resources/performance.md +406 -0
- package/.claude/skills/frontend-dev-guidelines/resources/routing-guide.md +364 -0
- package/.claude/skills/frontend-dev-guidelines/resources/styling-guide.md +428 -0
- package/.claude/skills/frontend-dev-guidelines/resources/typescript-standards.md +418 -0
- package/.claude/skills/general-it-engineering/SKILL.md +393 -0
- package/.claude/skills/general-it-engineering/resources/asset-management.md +712 -0
- package/.claude/skills/general-it-engineering/resources/automation-orchestration.md +817 -0
- package/.claude/skills/general-it-engineering/resources/business-continuity.md +786 -0
- package/.claude/skills/general-it-engineering/resources/change-management.md +715 -0
- package/.claude/skills/general-it-engineering/resources/enterprise-monitoring.md +729 -0
- package/.claude/skills/general-it-engineering/resources/help-desk-operations.md +738 -0
- package/.claude/skills/general-it-engineering/resources/incident-service-management.md +834 -0
- package/.claude/skills/general-it-engineering/resources/it-governance.md +753 -0
- package/.claude/skills/general-it-engineering/resources/itil-framework.md +503 -0
- package/.claude/skills/general-it-engineering/resources/service-management.md +669 -0
- package/.claude/skills/infrastructure-architecture/SKILL.md +328 -0
- package/.claude/skills/infrastructure-architecture/resources/architecture-decision-records.md +505 -0
- package/.claude/skills/infrastructure-architecture/resources/architecture-patterns.md +528 -0
- package/.claude/skills/infrastructure-architecture/resources/capacity-planning.md +453 -0
- package/.claude/skills/infrastructure-architecture/resources/cleared-environment-architecture.md +773 -0
- package/.claude/skills/infrastructure-architecture/resources/cost-architecture.md +499 -0
- package/.claude/skills/infrastructure-architecture/resources/data-architecture.md +501 -0
- package/.claude/skills/infrastructure-architecture/resources/disaster-recovery.md +535 -0
- package/.claude/skills/infrastructure-architecture/resources/migration-architecture.md +512 -0
- package/.claude/skills/infrastructure-architecture/resources/multi-region-design.md +608 -0
- package/.claude/skills/infrastructure-architecture/resources/reference-architectures.md +562 -0
- package/.claude/skills/infrastructure-architecture/resources/security-architecture.md +538 -0
- package/.claude/skills/infrastructure-architecture/resources/system-design-principles.md +489 -0
- package/.claude/skills/infrastructure-architecture/resources/workload-classification.md +1000 -0
- package/.claude/skills/infrastructure-strategy/SKILL.md +924 -0
- package/.claude/skills/network-engineering/SKILL.md +385 -0
- package/.claude/skills/network-engineering/resources/dns-management.md +738 -0
- package/.claude/skills/network-engineering/resources/load-balancing.md +820 -0
- package/.claude/skills/network-engineering/resources/network-architecture.md +546 -0
- package/.claude/skills/network-engineering/resources/network-security.md +921 -0
- package/.claude/skills/network-engineering/resources/network-troubleshooting.md +749 -0
- package/.claude/skills/network-engineering/resources/routing-switching.md +373 -0
- package/.claude/skills/network-engineering/resources/sdn-networking.md +695 -0
- package/.claude/skills/network-engineering/resources/service-mesh-networking.md +777 -0
- package/.claude/skills/network-engineering/resources/tcp-ip-protocols.md +444 -0
- package/.claude/skills/network-engineering/resources/vpn-connectivity.md +672 -0
- package/.claude/skills/observability-engineering/SKILL.md +101 -0
- package/.claude/skills/observability-engineering/resources/apm-tools.md +97 -0
- package/.claude/skills/observability-engineering/resources/correlation-strategies.md +87 -0
- package/.claude/skills/observability-engineering/resources/distributed-tracing.md +98 -0
- package/.claude/skills/observability-engineering/resources/logs-aggregation.md +118 -0
- package/.claude/skills/observability-engineering/resources/observability-cost-optimization.md +141 -0
- package/.claude/skills/observability-engineering/resources/opentelemetry.md +110 -0
- package/.claude/skills/platform-engineering/SKILL.md +555 -0
- package/.claude/skills/platform-engineering/resources/architecture-overview.md +600 -0
- package/.claude/skills/platform-engineering/resources/container-orchestration.md +916 -0
- package/.claude/skills/platform-engineering/resources/cost-optimization.md +634 -0
- package/.claude/skills/platform-engineering/resources/developer-platforms.md +670 -0
- package/.claude/skills/platform-engineering/resources/gitops-automation.md +650 -0
- package/.claude/skills/platform-engineering/resources/infrastructure-as-code.md +778 -0
- package/.claude/skills/platform-engineering/resources/infrastructure-standards.md +708 -0
- package/.claude/skills/platform-engineering/resources/multi-tenancy.md +602 -0
- package/.claude/skills/platform-engineering/resources/platform-security.md +711 -0
- package/.claude/skills/platform-engineering/resources/resource-management.md +592 -0
- package/.claude/skills/platform-engineering/resources/service-mesh.md +628 -0
- package/.claude/skills/release-engineering/SKILL.md +393 -0
- package/.claude/skills/release-engineering/resources/artifact-management.md +108 -0
- package/.claude/skills/release-engineering/resources/build-optimization.md +84 -0
- package/.claude/skills/release-engineering/resources/ci-cd-pipelines.md +411 -0
- package/.claude/skills/release-engineering/resources/deployment-strategies.md +197 -0
- package/.claude/skills/release-engineering/resources/pipeline-security.md +62 -0
- package/.claude/skills/release-engineering/resources/progressive-delivery.md +83 -0
- package/.claude/skills/release-engineering/resources/release-automation.md +68 -0
- package/.claude/skills/release-engineering/resources/release-orchestration.md +77 -0
- package/.claude/skills/release-engineering/resources/rollback-strategies.md +66 -0
- package/.claude/skills/release-engineering/resources/versioning-strategies.md +59 -0
- package/.claude/skills/route-tester/SKILL.md +392 -0
- package/.claude/skills/skill-developer/ADVANCED.md +197 -0
- package/.claude/skills/skill-developer/HOOK_MECHANISMS.md +306 -0
- package/.claude/skills/skill-developer/PATTERNS_LIBRARY.md +152 -0
- package/.claude/skills/skill-developer/SKILL.md +430 -0
- package/.claude/skills/skill-developer/SKILL_RULES_REFERENCE.md +315 -0
- package/.claude/skills/skill-developer/TRIGGER_TYPES.md +305 -0
- package/.claude/skills/skill-developer/TROUBLESHOOTING.md +514 -0
- package/.claude/skills/skill-rules.json +2940 -0
- package/.claude/skills/sre/SKILL.md +464 -0
- package/.claude/skills/sre/resources/alerting-best-practices.md +282 -0
- package/.claude/skills/sre/resources/capacity-planning.md +226 -0
- package/.claude/skills/sre/resources/chaos-engineering.md +193 -0
- package/.claude/skills/sre/resources/disaster-recovery.md +232 -0
- package/.claude/skills/sre/resources/incident-management.md +436 -0
- package/.claude/skills/sre/resources/observability-stack.md +240 -0
- package/.claude/skills/sre/resources/on-call-runbooks.md +167 -0
- package/.claude/skills/sre/resources/performance-optimization.md +108 -0
- package/.claude/skills/sre/resources/reliability-patterns.md +183 -0
- package/.claude/skills/sre/resources/slo-sli-sla.md +464 -0
- package/.claude/skills/sre/resources/toil-reduction.md +145 -0
- package/.claude/skills/systems-engineering/SKILL.md +648 -0
- package/.claude/skills/systems-engineering/resources/automation-patterns.md +771 -0
- package/.claude/skills/systems-engineering/resources/configuration-management.md +998 -0
- package/.claude/skills/systems-engineering/resources/linux-administration.md +672 -0
- package/.claude/skills/systems-engineering/resources/networking-fundamentals.md +982 -0
- package/.claude/skills/systems-engineering/resources/performance-tuning.md +871 -0
- package/.claude/skills/systems-engineering/resources/powershell-scripting.md +482 -0
- package/.claude/skills/systems-engineering/resources/security-hardening.md +739 -0
- package/.claude/skills/systems-engineering/resources/shell-scripting.md +915 -0
- package/.claude/skills/systems-engineering/resources/storage-management.md +628 -0
- package/.claude/skills/systems-engineering/resources/system-monitoring.md +787 -0
- package/.claude/skills/systems-engineering/resources/troubleshooting-guide.md +753 -0
- package/.claude/skills/systems-engineering/resources/windows-administration.md +738 -0
- package/.claude/skills/technical-leadership/SKILL.md +728 -0
- package/CHANGELOG.md +102 -42
- package/CLAUDE.md +284 -0
- package/README.md +315 -71
- package/backend/docs/SECRETS_DOCUMENTATION.md +327 -0
- package/backend/jest.config.js +59 -0
- package/backend/package-lock.json +6801 -0
- package/backend/package.json +24 -4
- package/backend/prisma/migrations/20251026104609_add_websocket_api/migration.sql +33 -0
- package/backend/prisma/migrations/20251116111851_add_execution_trace/migration.sql +22 -0
- package/backend/prisma/migrations/20251120154914_add_panel_api_keys/migration.sql +21 -0
- package/backend/prisma/migrations/20251121110241_add_proxy_table/migration.sql +45 -0
- package/backend/prisma/migrations/migration_lock.toml +2 -2
- package/backend/prisma/schema.prisma +103 -1
- package/backend/src/__tests__/core/DependencyService.test.js +336 -0
- package/backend/src/__tests__/core/UserService.test.js +875 -0
- package/backend/src/__tests__/repositories/BaseRepository.test.js +146 -0
- package/backend/src/__tests__/repositories/BotRepository.test.js +118 -0
- package/backend/src/__tests__/repositories/CommandRepository.test.js +132 -0
- package/backend/src/__tests__/repositories/EventGraphRepository.test.js +93 -0
- package/backend/src/__tests__/repositories/GroupRepository.test.js +155 -0
- package/backend/src/__tests__/repositories/PermissionRepository.test.js +130 -0
- package/backend/src/__tests__/repositories/PluginRepository.test.js +107 -0
- package/backend/src/__tests__/repositories/ServerRepository.test.js +80 -0
- package/backend/src/__tests__/repositories/UserRepository.test.js +128 -0
- package/backend/src/__tests__/secretsFilter.test.js +425 -0
- package/backend/src/__tests__/services/BotLifecycleService.test.js +416 -0
- package/backend/src/__tests__/services/BotProcessManager.test.js +285 -0
- package/backend/src/__tests__/services/CacheManager.test.js +125 -0
- package/backend/src/__tests__/services/CommandExecutionService.test.js +460 -0
- package/backend/src/__tests__/services/ResourceMonitorService.test.js +207 -0
- package/backend/src/__tests__/services/TelemetryService.test.js +291 -0
- package/backend/src/__tests__/setup.js +25 -0
- package/backend/src/ai/plugin-assistant-system-prompt.md +788 -0
- package/backend/src/api/middleware/auth.js +27 -0
- package/backend/src/api/middleware/botAccess.js +7 -3
- package/backend/src/api/middleware/panelApiAuth.js +135 -0
- package/backend/src/api/routes/aiAssistant.js +995 -0
- package/backend/src/api/routes/apiKeys.js +181 -0
- package/backend/src/api/routes/auth.js +669 -633
- package/backend/src/api/routes/botCommands.js +107 -0
- package/backend/src/api/routes/botGroups.js +165 -0
- package/backend/src/api/routes/botHistory.js +108 -0
- package/backend/src/api/routes/botPermissions.js +99 -0
- package/backend/src/api/routes/botStatus.js +36 -0
- package/backend/src/api/routes/botUsers.js +162 -0
- package/backend/src/api/routes/bots.js +2451 -2360
- package/backend/src/api/routes/eventGraphs.js +4 -1
- package/backend/src/api/routes/logs.js +13 -3
- package/backend/src/api/routes/panel.js +66 -66
- package/backend/src/api/routes/panelApiKeys.js +179 -0
- package/backend/src/api/routes/pluginIde.js +1715 -135
- package/backend/src/api/routes/plugins.js +376 -218
- package/backend/src/api/routes/proxies.js +130 -0
- package/backend/src/api/routes/search.js +4 -0
- package/backend/src/api/routes/servers.js +20 -3
- package/backend/src/api/routes/settings.js +5 -0
- package/backend/src/api/routes/system.js +174 -0
- package/backend/src/api/routes/traces.js +131 -0
- package/backend/src/config/debug.config.js +36 -0
- package/backend/src/container.js +82 -0
- package/backend/src/core/BotHistoryStore.js +180 -0
- package/backend/src/core/BotManager.js +149 -868
- package/backend/src/core/BotManager.old.js +1093 -0
- package/backend/src/core/BotProcess.js +850 -191
- package/backend/src/core/EventGraphManager.js +194 -198
- package/backend/src/core/GraphExecutionEngine.js +709 -57
- package/backend/src/core/MessageQueue.js +39 -12
- package/backend/src/core/NodeRegistry.js +37 -1134
- package/backend/src/core/PluginLoader.js +99 -5
- package/backend/src/core/PluginManager.js +126 -15
- package/backend/src/core/PrismaService.js +32 -0
- package/backend/src/core/TaskScheduler.js +1 -1
- package/backend/src/core/UserService.js +3 -3
- package/backend/src/core/__tests__/PrismaService.test.js +24 -0
- package/backend/src/core/commands/README.md +305 -0
- package/backend/src/core/commands/dev.js +13 -7
- package/backend/src/core/commands/ping.js +10 -4
- package/backend/src/core/commands/whois.js +63 -0
- package/backend/src/core/config/validation.js +27 -0
- package/backend/src/core/constants/graphTypes.js +21 -0
- package/backend/src/core/node-registries/actions.js +202 -0
- package/backend/src/core/node-registries/arrays.js +155 -0
- package/backend/src/core/node-registries/bot.js +23 -0
- package/backend/src/core/node-registries/data.js +290 -0
- package/backend/src/core/node-registries/debug.js +26 -0
- package/backend/src/core/node-registries/events.js +201 -0
- package/backend/src/core/node-registries/flow.js +139 -0
- package/backend/src/core/node-registries/logic.js +62 -0
- package/backend/src/core/node-registries/math.js +42 -0
- package/backend/src/core/node-registries/objects.js +98 -0
- package/backend/src/core/node-registries/strings.js +187 -0
- package/backend/src/core/node-registries/time.js +113 -0
- package/backend/src/core/node-registries/type.js +25 -0
- package/backend/src/core/node-registries/users.js +79 -0
- package/backend/src/core/nodes/{action_bot_look_at.js → actions/bot_look_at.js} +36 -36
- package/backend/src/core/nodes/{action_bot_set_variable.js → actions/bot_set_variable.js} +32 -32
- package/backend/src/core/nodes/actions/create_command.js +189 -0
- package/backend/src/core/nodes/actions/delete_command.js +92 -0
- package/backend/src/core/nodes/{action_send_log.js → actions/send_log.js} +28 -23
- package/backend/src/core/nodes/{action_send_message.js → actions/send_message.js} +32 -32
- package/backend/src/core/nodes/actions/send_websocket_response.js +33 -0
- package/backend/src/core/nodes/actions/update_command.js +133 -0
- package/backend/src/core/nodes/arrays/get_next.js +35 -0
- package/backend/src/core/nodes/arrays/join.js +28 -0
- package/backend/src/core/nodes/{data_cast.js → data/cast.js} +10 -1
- package/backend/src/core/nodes/data/datetime_literal.js +27 -0
- package/backend/src/core/nodes/data/entity_info.js +69 -0
- package/backend/src/core/nodes/data/get_nearby_entities.js +32 -0
- package/backend/src/core/nodes/data/get_nearby_players.js +64 -0
- package/backend/src/core/nodes/{data_get_user_field.js → data/get_user_field.js} +1 -1
- package/backend/src/core/nodes/data/type_check.js +53 -0
- package/backend/src/core/nodes/{debug_log.js → debug/log.js} +16 -16
- package/backend/src/core/nodes/{flow_branch.js → flow/branch.js} +15 -15
- package/backend/src/core/nodes/{flow_break.js → flow/break.js} +14 -14
- package/backend/src/core/nodes/flow/delay.js +43 -0
- package/backend/src/core/nodes/{flow_for_each.js → flow/for_each.js} +39 -39
- package/backend/src/core/nodes/{flow_sequence.js → flow/sequence.js} +16 -16
- package/backend/src/core/nodes/{flow_switch.js → flow/switch.js} +47 -47
- package/backend/src/core/nodes/{flow_while.js → flow/while.js} +1 -1
- package/backend/src/core/nodes/logic/__tests__/compare.test.js +83 -0
- package/backend/src/core/nodes/logic/not.js +22 -0
- package/backend/src/core/nodes/math/__tests__/operation.test.js +65 -0
- package/backend/src/core/nodes/strings/__tests__/concat.test.js +89 -0
- package/backend/src/core/nodes/{string_starts_with.js → strings/starts_with.js} +1 -1
- package/backend/src/core/nodes/strings/to_lower.js +22 -0
- package/backend/src/core/nodes/strings/to_upper.js +22 -0
- package/backend/src/core/nodes/time/__tests__/now.test.js +24 -0
- package/backend/src/core/nodes/time/add.js +33 -0
- package/backend/src/core/nodes/time/compare.js +35 -0
- package/backend/src/core/nodes/time/diff.js +29 -0
- package/backend/src/core/nodes/time/format.js +32 -0
- package/backend/src/core/nodes/time/now.js +18 -0
- package/backend/src/core/nodes/type/to_string.js +32 -0
- package/backend/src/core/nodes/{user_check_blacklist.js → users/check_blacklist.js} +37 -37
- package/backend/src/core/nodes/{user_get_groups.js → users/get_groups.js} +36 -36
- package/backend/src/core/nodes/{user_get_permissions.js → users/get_permissions.js} +36 -36
- package/backend/src/core/nodes/{user_set_blacklist.js → users/set_blacklist.js} +37 -37
- package/backend/src/core/services/BotLifecycleService.js +835 -0
- package/backend/src/core/services/BotProcessManager.js +163 -0
- package/backend/src/core/services/CacheManager.js +111 -0
- package/backend/src/core/services/CommandExecutionService.js +430 -0
- package/backend/src/core/services/DebugSessionManager.js +347 -0
- package/backend/src/core/services/GraphCollaborationManager.js +501 -0
- package/backend/src/core/services/MinecraftBotManager.js +259 -0
- package/backend/src/core/services/MinecraftViewerService.js +216 -0
- package/backend/src/core/services/ResourceMonitorService.js +90 -0
- package/backend/src/core/services/TelemetryService.js +124 -0
- package/backend/src/core/services/TraceCollectorService.js +545 -0
- package/backend/src/core/services/ValidationService.js +132 -0
- package/backend/src/core/services/__tests__/ValidationService.test.js +148 -0
- package/backend/src/core/services.js +20 -5
- package/backend/src/core/system/CommandContext.js +84 -0
- package/backend/src/core/system/RuntimeCommandRegistry.js +116 -0
- package/backend/src/core/system/Transport.js +74 -0
- package/backend/src/core/utils/__tests__/jsonParser.test.js +44 -0
- package/backend/src/core/utils/jsonParser.js +18 -0
- package/backend/src/core/utils/secretsFilter.js +262 -0
- package/backend/src/core/utils/variableParser.js +89 -0
- package/backend/src/core/validation/__tests__/nodeSchemas.test.js +175 -0
- package/backend/src/core/validation/nodeSchemas.js +112 -0
- package/backend/src/lib/prisma.js +2 -4
- package/backend/src/real-time/botApi/handlers/commandHandlers.js +28 -0
- package/backend/src/real-time/botApi/handlers/graphHandlers.js +99 -0
- package/backend/src/real-time/botApi/handlers/graphWebSocketHandlers.js +147 -0
- package/backend/src/real-time/botApi/handlers/index.js +43 -0
- package/backend/src/real-time/botApi/handlers/messageHandlers.js +66 -0
- package/backend/src/real-time/botApi/handlers/statusHandlers.js +17 -0
- package/backend/src/real-time/botApi/handlers/userHandlers.js +141 -0
- package/backend/src/real-time/botApi/index.js +40 -0
- package/backend/src/real-time/botApi/middleware.js +79 -0
- package/backend/src/real-time/botApi/utils.js +65 -0
- package/backend/src/real-time/panelNamespace.js +387 -0
- package/backend/src/real-time/presence.js +7 -2
- package/backend/src/real-time/socketHandler.js +400 -5
- package/backend/src/repositories/BaseRepository.js +43 -0
- package/backend/src/repositories/BotRepository.js +42 -0
- package/backend/src/repositories/CommandRepository.js +53 -0
- package/backend/src/repositories/EventGraphRepository.js +40 -0
- package/backend/src/repositories/GroupRepository.js +69 -0
- package/backend/src/repositories/PermissionRepository.js +48 -0
- package/backend/src/repositories/PluginRepository.js +42 -0
- package/backend/src/repositories/ServerRepository.js +27 -0
- package/backend/src/repositories/UserRepository.js +48 -0
- package/backend/src/server.js +21 -0
- package/backend/src/test-refactor.js +85 -0
- package/frontend/dist/assets/index-B1serztM.js +11210 -0
- package/frontend/dist/assets/index-t6K1u4OV.css +32 -0
- package/frontend/dist/index.html +2 -2
- package/frontend/package-lock.json +9437 -0
- package/frontend/package.json +8 -5
- package/package.json +3 -2
- package/screen/console.png +0 -0
- package/screen/dashboard.png +0 -0
- package/screen/graph_collabe.png +0 -0
- package/screen/graph_live_debug.png +0 -0
- package/screen/management_command.png +0 -0
- package/screen/node_debug_trace.png +0 -0
- package/screen/plugin_/320/276/320/261/320/267/320/276/321/200.png +0 -0
- package/screen/websocket.png +0 -0
- package/screen//320/275/320/260/321/201/321/202/321/200/320/276/320/271/320/272/320/270_/320/276/321/202/320/264/320/265/320/273/321/214/320/275/321/213/321/205_/320/272/320/276/320/274/320/260/320/275/320/264_/320/272/320/260/320/266/320/264/321/203_/320/272/320/276/320/274/320/260/320/275/320/273/320/264/321/203_/320/274/320/276/320/266/320/275/320/276_/320/275/320/260/321/201/321/202/321/200/320/260/320/270/320/262/320/260/321/202/321/214.png +0 -0
- package/screen//320/277/320/273/320/260/320/275/320/270/321/200/320/276/320/262/321/211/320/270/320/272_/320/274/320/276/320/266/320/275/320/276_/320/267/320/260/320/264/320/260/320/262/320/260/321/202/321/214_/320/264/320/265/320/271/321/201/321/202/320/262/320/270/321/217_/320/277/320/276_/320/262/321/200/320/265/320/274/320/265/320/275/320/270.png +0 -0
- package/frontend/dist/assets/index-B9GedHEa.js +0 -8352
- package/frontend/dist/assets/index-zLiy9MDx.css +0 -1
- package/nul +0 -0
- /package/backend/src/core/nodes/{action_http_request.js → actions/http_request.js} +0 -0
- /package/backend/src/core/nodes/{array_add_element.js → arrays/add_element.js} +0 -0
- /package/backend/src/core/nodes/{array_contains.js → arrays/contains.js} +0 -0
- /package/backend/src/core/nodes/{array_find_index.js → arrays/find_index.js} +0 -0
- /package/backend/src/core/nodes/{array_get_by_index.js → arrays/get_by_index.js} +0 -0
- /package/backend/src/core/nodes/{array_get_random_element.js → arrays/get_random_element.js} +0 -0
- /package/backend/src/core/nodes/{array_remove_by_index.js → arrays/remove_by_index.js} +0 -0
- /package/backend/src/core/nodes/{bot_get_position.js → bot/get_position.js} +0 -0
- /package/backend/src/core/nodes/{data_array_literal.js → data/array_literal.js} +0 -0
- /package/backend/src/core/nodes/{data_boolean_literal.js → data/boolean_literal.js} +0 -0
- /package/backend/src/core/nodes/{data_get_argument.js → data/get_argument.js} +0 -0
- /package/backend/src/core/nodes/{data_get_bot_look.js → data/get_bot_look.js} +0 -0
- /package/backend/src/core/nodes/{data_get_entity_field.js → data/get_entity_field.js} +0 -0
- /package/backend/src/core/nodes/{data_get_server_players.js → data/get_server_players.js} +0 -0
- /package/backend/src/core/nodes/{data_get_variable.js → data/get_variable.js} +0 -0
- /package/backend/src/core/nodes/{data_length.js → data/length.js} +0 -0
- /package/backend/src/core/nodes/{data_make_object.js → data/make_object.js} +0 -0
- /package/backend/src/core/nodes/{data_number_literal.js → data/number_literal.js} +0 -0
- /package/backend/src/core/nodes/{data_string_literal.js → data/string_literal.js} +0 -0
- /package/backend/src/core/nodes/{logic_compare.js → logic/compare.js} +0 -0
- /package/backend/src/core/nodes/{logic_operation.js → logic/operation.js} +0 -0
- /package/backend/src/core/nodes/{math_operation.js → math/operation.js} +0 -0
- /package/backend/src/core/nodes/{math_random_number.js → math/random_number.js} +0 -0
- /package/backend/src/core/nodes/{object_create.js → objects/create.js} +0 -0
- /package/backend/src/core/nodes/{object_delete.js → objects/delete.js} +0 -0
- /package/backend/src/core/nodes/{object_get.js → objects/get.js} +0 -0
- /package/backend/src/core/nodes/{object_has_key.js → objects/has_key.js} +0 -0
- /package/backend/src/core/nodes/{object_set.js → objects/set.js} +0 -0
- /package/backend/src/core/nodes/{string_concat.js → strings/concat.js} +0 -0
- /package/backend/src/core/nodes/{string_contains.js → strings/contains.js} +0 -0
- /package/backend/src/core/nodes/{string_ends_with.js → strings/ends_with.js} +0 -0
- /package/backend/src/core/nodes/{string_equals.js → strings/equals.js} +0 -0
- /package/backend/src/core/nodes/{string_length.js → strings/length.js} +0 -0
- /package/backend/src/core/nodes/{string_matches.js → strings/matches.js} +0 -0
- /package/backend/src/core/nodes/{string_split.js → strings/split.js} +0 -0
|
@@ -0,0 +1,2940 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0",
|
|
3
|
+
"description": "Skill activation triggers for Claude Code. Controls when skills automatically suggest or block actions.",
|
|
4
|
+
"skills": {
|
|
5
|
+
"skill-developer": {
|
|
6
|
+
"type": "domain",
|
|
7
|
+
"enforcement": "suggest",
|
|
8
|
+
"priority": "high",
|
|
9
|
+
"description": "Meta-skill for creating and managing Claude Code skills",
|
|
10
|
+
"promptTriggers": {
|
|
11
|
+
"keywords": [
|
|
12
|
+
"skill system",
|
|
13
|
+
"create skill",
|
|
14
|
+
"add skill",
|
|
15
|
+
"skill triggers",
|
|
16
|
+
"skill rules",
|
|
17
|
+
"hook system",
|
|
18
|
+
"skill development",
|
|
19
|
+
"skill-rules.json"
|
|
20
|
+
],
|
|
21
|
+
"intentPatterns": [
|
|
22
|
+
"(how do|how does|explain).*?skill",
|
|
23
|
+
"(create|add|modify|build).*?skill",
|
|
24
|
+
"skill.*?(work|trigger|activate|system)"
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"backend-dev-guidelines": {
|
|
29
|
+
"type": "domain",
|
|
30
|
+
"enforcement": "suggest",
|
|
31
|
+
"priority": "high",
|
|
32
|
+
"description": "Backend development patterns for Node.js/Express/TypeScript",
|
|
33
|
+
"promptTriggers": {
|
|
34
|
+
"keywords": [
|
|
35
|
+
"backend",
|
|
36
|
+
"backend development",
|
|
37
|
+
"microservice",
|
|
38
|
+
"controller",
|
|
39
|
+
"service",
|
|
40
|
+
"repository",
|
|
41
|
+
"route",
|
|
42
|
+
"routing",
|
|
43
|
+
"express",
|
|
44
|
+
"API",
|
|
45
|
+
"endpoint",
|
|
46
|
+
"middleware",
|
|
47
|
+
"validation",
|
|
48
|
+
"Zod",
|
|
49
|
+
"Prisma",
|
|
50
|
+
"database access",
|
|
51
|
+
"BaseController",
|
|
52
|
+
"dependency injection",
|
|
53
|
+
"unifiedConfig",
|
|
54
|
+
"configuration"
|
|
55
|
+
],
|
|
56
|
+
"intentPatterns": [
|
|
57
|
+
"(create|add|implement|build).*?(route|endpoint|API|controller|service|repository)",
|
|
58
|
+
"(fix|handle|debug).*?(error|exception|backend)",
|
|
59
|
+
"(add|implement).*?(middleware|validation|error.*?handling)",
|
|
60
|
+
"(organize|structure|refactor).*?(backend|service|API)",
|
|
61
|
+
"(how to|best practice).*?(backend|route|controller|service)"
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
"fileTriggers": {
|
|
65
|
+
"pathPatterns": [
|
|
66
|
+
"blog-api/src/**/*.ts",
|
|
67
|
+
"auth-service/src/**/*.ts",
|
|
68
|
+
"notifications-service/src/**/*.ts",
|
|
69
|
+
"backend/**/*.ts",
|
|
70
|
+
"api/**/*.ts",
|
|
71
|
+
"server/**/*.ts",
|
|
72
|
+
"services/**/*.ts"
|
|
73
|
+
],
|
|
74
|
+
"pathExclusions": [
|
|
75
|
+
"**/*.test.ts",
|
|
76
|
+
"**/*.spec.ts"
|
|
77
|
+
],
|
|
78
|
+
"contentPatterns": [
|
|
79
|
+
"router\\.",
|
|
80
|
+
"app\\.(get|post|put|delete|patch)",
|
|
81
|
+
"export.*Controller",
|
|
82
|
+
"export.*Service",
|
|
83
|
+
"prisma\\."
|
|
84
|
+
]
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"frontend-dev-guidelines": {
|
|
88
|
+
"type": "guardrail",
|
|
89
|
+
"enforcement": "block",
|
|
90
|
+
"priority": "high",
|
|
91
|
+
"description": "React/TypeScript best practices including MUI v7 compatibility",
|
|
92
|
+
"promptTriggers": {
|
|
93
|
+
"keywords": [
|
|
94
|
+
"component",
|
|
95
|
+
"react component",
|
|
96
|
+
"UI",
|
|
97
|
+
"interface",
|
|
98
|
+
"page",
|
|
99
|
+
"modal",
|
|
100
|
+
"dialog",
|
|
101
|
+
"form",
|
|
102
|
+
"MUI",
|
|
103
|
+
"Material-UI",
|
|
104
|
+
"Grid",
|
|
105
|
+
"styling",
|
|
106
|
+
"frontend",
|
|
107
|
+
"React",
|
|
108
|
+
"TanStack",
|
|
109
|
+
"TanStack Router",
|
|
110
|
+
"useSuspenseQuery",
|
|
111
|
+
"Suspense"
|
|
112
|
+
],
|
|
113
|
+
"intentPatterns": [
|
|
114
|
+
"(create|add|make|build|update|modify|edit).*?(component|UI|page|modal|dialog|form)",
|
|
115
|
+
"(how to|best practice).*?(component|react|MUI)",
|
|
116
|
+
"(style|design|layout).*?(component|UI)"
|
|
117
|
+
]
|
|
118
|
+
},
|
|
119
|
+
"fileTriggers": {
|
|
120
|
+
"pathPatterns": [
|
|
121
|
+
"frontend/src/**/*.tsx",
|
|
122
|
+
"frontend/src/**/*.ts",
|
|
123
|
+
"client/src/**/*.tsx",
|
|
124
|
+
"client/src/**/*.ts",
|
|
125
|
+
"src/**/*.tsx"
|
|
126
|
+
],
|
|
127
|
+
"pathExclusions": [
|
|
128
|
+
"**/*.test.tsx",
|
|
129
|
+
"**/*.test.ts",
|
|
130
|
+
"**/*.spec.tsx",
|
|
131
|
+
"**/*.spec.ts",
|
|
132
|
+
"**/*.styles.ts",
|
|
133
|
+
"**/vite.config.ts",
|
|
134
|
+
"**/tsconfig.json"
|
|
135
|
+
],
|
|
136
|
+
"contentPatterns": [
|
|
137
|
+
"from '@mui/material';",
|
|
138
|
+
"import.*Grid.*from.*@mui",
|
|
139
|
+
"<Grid ",
|
|
140
|
+
"Grid2",
|
|
141
|
+
"Unstable_Grid",
|
|
142
|
+
"makeStyles",
|
|
143
|
+
"@material-ui/core"
|
|
144
|
+
]
|
|
145
|
+
},
|
|
146
|
+
"blockMessage": "⚠️ BLOCKED - Frontend Best Practices Required\n\n📋 REQUIRED ACTION:\n1. Use Skill tool: 'frontend-dev-guidelines'\n2. Review MUI v7 patterns (Grid uses size={{}} prop, NOT xs/sm props)\n3. Check React/TypeScript best practices\n4. Use proper styling patterns\n5. Then retry this edit\n\nReason: Enforce MUI v7 compatibility and React best practices\nFile: {file_path}\n\n💡 TIP: Add '// @skip-validation' comment to skip future checks",
|
|
147
|
+
"skipConditions": {
|
|
148
|
+
"sessionSkillUsed": true,
|
|
149
|
+
"fileMarkers": [
|
|
150
|
+
"@skip-validation"
|
|
151
|
+
],
|
|
152
|
+
"envOverride": "SKIP_FRONTEND_GUIDELINES"
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
"route-tester": {
|
|
156
|
+
"type": "domain",
|
|
157
|
+
"enforcement": "suggest",
|
|
158
|
+
"priority": "high",
|
|
159
|
+
"description": "Testing authenticated API routes with JWT cookie-based auth",
|
|
160
|
+
"promptTriggers": {
|
|
161
|
+
"keywords": [
|
|
162
|
+
"test route",
|
|
163
|
+
"test endpoint",
|
|
164
|
+
"test API",
|
|
165
|
+
"route testing",
|
|
166
|
+
"API testing",
|
|
167
|
+
"authenticated route",
|
|
168
|
+
"JWT testing",
|
|
169
|
+
"cookie auth",
|
|
170
|
+
"test with auth"
|
|
171
|
+
],
|
|
172
|
+
"intentPatterns": [
|
|
173
|
+
"(test|debug|verify).*?(route|endpoint|API)",
|
|
174
|
+
"(how to|how do I).*?test.*?(route|endpoint|API)",
|
|
175
|
+
"test.*?(authenticated|auth|JWT|cookie)"
|
|
176
|
+
]
|
|
177
|
+
},
|
|
178
|
+
"fileTriggers": {
|
|
179
|
+
"pathPatterns": [
|
|
180
|
+
"**/routes/**/*.ts",
|
|
181
|
+
"**/test-*.js",
|
|
182
|
+
"**/test-*.ts"
|
|
183
|
+
],
|
|
184
|
+
"contentPatterns": [
|
|
185
|
+
"router\\.(get|post|put|delete|patch)",
|
|
186
|
+
"app\\.(get|post|put|delete|patch)"
|
|
187
|
+
]
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"error-tracking": {
|
|
191
|
+
"type": "domain",
|
|
192
|
+
"enforcement": "suggest",
|
|
193
|
+
"priority": "high",
|
|
194
|
+
"description": "Sentry error tracking and performance monitoring patterns",
|
|
195
|
+
"promptTriggers": {
|
|
196
|
+
"keywords": [
|
|
197
|
+
"error handling",
|
|
198
|
+
"exception",
|
|
199
|
+
"sentry",
|
|
200
|
+
"error tracking",
|
|
201
|
+
"captureException",
|
|
202
|
+
"monitoring",
|
|
203
|
+
"performance tracking"
|
|
204
|
+
],
|
|
205
|
+
"intentPatterns": [
|
|
206
|
+
"(add|create|implement|setup).*?(error handling|sentry|error tracking)",
|
|
207
|
+
"(fix|handle|catch).*?(error|exception)",
|
|
208
|
+
"(how to|best practice).*?(error|sentry|monitoring)"
|
|
209
|
+
]
|
|
210
|
+
},
|
|
211
|
+
"fileTriggers": {
|
|
212
|
+
"pathPatterns": [
|
|
213
|
+
"**/instrument.ts",
|
|
214
|
+
"**/sentry*.ts",
|
|
215
|
+
"**/*Controller.ts",
|
|
216
|
+
"**/*Service.ts"
|
|
217
|
+
],
|
|
218
|
+
"contentPatterns": [
|
|
219
|
+
"@sentry",
|
|
220
|
+
"Sentry\\.",
|
|
221
|
+
"captureException",
|
|
222
|
+
"captureMessage"
|
|
223
|
+
]
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
"platform-engineering": {
|
|
227
|
+
"type": "domain",
|
|
228
|
+
"enforcement": "suggest",
|
|
229
|
+
"priority": "high",
|
|
230
|
+
"description": "Platform engineering and architecture for IaC, Kubernetes, GitOps, service mesh, and developer platforms",
|
|
231
|
+
"promptTriggers": {
|
|
232
|
+
"keywords": [
|
|
233
|
+
"infrastructure as code",
|
|
234
|
+
"IaC",
|
|
235
|
+
"terraform",
|
|
236
|
+
"pulumi",
|
|
237
|
+
"cloudformation",
|
|
238
|
+
"kubernetes",
|
|
239
|
+
"k8s",
|
|
240
|
+
"vcluster",
|
|
241
|
+
"virtual cluster",
|
|
242
|
+
"container orchestration",
|
|
243
|
+
"helm",
|
|
244
|
+
"kustomize",
|
|
245
|
+
"gitops",
|
|
246
|
+
"argocd",
|
|
247
|
+
"flux",
|
|
248
|
+
"service mesh",
|
|
249
|
+
"istio",
|
|
250
|
+
"linkerd",
|
|
251
|
+
"backstage",
|
|
252
|
+
"developer platform",
|
|
253
|
+
"platform architecture",
|
|
254
|
+
"multi-tenancy",
|
|
255
|
+
"resource quota",
|
|
256
|
+
"autoscaling",
|
|
257
|
+
"HPA",
|
|
258
|
+
"VPA",
|
|
259
|
+
"cost optimization",
|
|
260
|
+
"finops",
|
|
261
|
+
"transcoding",
|
|
262
|
+
"video",
|
|
263
|
+
"video processing",
|
|
264
|
+
"pipeline",
|
|
265
|
+
"WebAssembly",
|
|
266
|
+
"WASM",
|
|
267
|
+
"sandboxing",
|
|
268
|
+
"sandbox",
|
|
269
|
+
"developer productivity",
|
|
270
|
+
"developer experience",
|
|
271
|
+
"IoT",
|
|
272
|
+
"Internet of Things",
|
|
273
|
+
"fleet management",
|
|
274
|
+
"OTA",
|
|
275
|
+
"over-the-air",
|
|
276
|
+
"job scheduling",
|
|
277
|
+
"research computing",
|
|
278
|
+
"HPC",
|
|
279
|
+
"high-performance computing",
|
|
280
|
+
"cluster",
|
|
281
|
+
"automate",
|
|
282
|
+
"automation",
|
|
283
|
+
"automate things"
|
|
284
|
+
],
|
|
285
|
+
"intentPatterns": [
|
|
286
|
+
"(create|setup|implement|configure).*?(infrastructure|platform|kubernetes|terraform)",
|
|
287
|
+
"(deploy|orchestrate).*?(container|kubernetes|k8s)",
|
|
288
|
+
"(design|architect|build).*?(platform|infrastructure)",
|
|
289
|
+
"(gitops|argocd|flux).*?(deploy|sync|automation)",
|
|
290
|
+
"(service mesh|istio|linkerd).*?(traffic|security|routing)"
|
|
291
|
+
]
|
|
292
|
+
},
|
|
293
|
+
"fileTriggers": {
|
|
294
|
+
"pathPatterns": [
|
|
295
|
+
"**/*.tf",
|
|
296
|
+
"**/*.tfvars",
|
|
297
|
+
"**/terraform/**/*",
|
|
298
|
+
"**/k8s/**/*.yaml",
|
|
299
|
+
"**/kubernetes/**/*.yaml",
|
|
300
|
+
"**/helm/**/*",
|
|
301
|
+
"**/kustomize/**/*",
|
|
302
|
+
"**/manifests/**/*.yaml",
|
|
303
|
+
"**/argocd/**/*",
|
|
304
|
+
"**/flux/**/*"
|
|
305
|
+
],
|
|
306
|
+
"contentPatterns": [
|
|
307
|
+
"apiVersion:.*k8s\\.io",
|
|
308
|
+
"kind: (Deployment|Service|Ingress|StatefulSet|DaemonSet)",
|
|
309
|
+
"terraform \\{",
|
|
310
|
+
"resource \"aws_",
|
|
311
|
+
"resource \"azurerm_",
|
|
312
|
+
"resource \"google_"
|
|
313
|
+
]
|
|
314
|
+
}
|
|
315
|
+
},
|
|
316
|
+
"devsecops": {
|
|
317
|
+
"type": "domain",
|
|
318
|
+
"enforcement": "suggest",
|
|
319
|
+
"priority": "high",
|
|
320
|
+
"description": "DevSecOps practices including security scanning, container security, secrets management, policy enforcement, compliance frameworks, and CSPM integration",
|
|
321
|
+
"promptTriggers": {
|
|
322
|
+
"keywords": [
|
|
323
|
+
"security",
|
|
324
|
+
"security scan",
|
|
325
|
+
"vulnerability",
|
|
326
|
+
"SAST",
|
|
327
|
+
"DAST",
|
|
328
|
+
"SCA",
|
|
329
|
+
"trivy",
|
|
330
|
+
"snyk",
|
|
331
|
+
"semgrep",
|
|
332
|
+
"checkmarx",
|
|
333
|
+
"Checkmarx",
|
|
334
|
+
"fortify",
|
|
335
|
+
"Fortify",
|
|
336
|
+
"black duck",
|
|
337
|
+
"Black Duck",
|
|
338
|
+
"BlackDuck",
|
|
339
|
+
"security scanning",
|
|
340
|
+
"container security",
|
|
341
|
+
"image scanning",
|
|
342
|
+
"secrets management",
|
|
343
|
+
"vault",
|
|
344
|
+
"sealed secrets",
|
|
345
|
+
"external secrets",
|
|
346
|
+
"security policy",
|
|
347
|
+
"OPA",
|
|
348
|
+
"gatekeeper",
|
|
349
|
+
"kyverno",
|
|
350
|
+
"compliance",
|
|
351
|
+
"policy enforcement",
|
|
352
|
+
"pod security",
|
|
353
|
+
"FedRAMP",
|
|
354
|
+
"CMMC",
|
|
355
|
+
"NIST 800-53",
|
|
356
|
+
"NIST 800-171",
|
|
357
|
+
"ITAR",
|
|
358
|
+
"CJIS",
|
|
359
|
+
"PCI-DSS",
|
|
360
|
+
"HIPAA",
|
|
361
|
+
"SOC 2",
|
|
362
|
+
"compliance framework",
|
|
363
|
+
"CSPM",
|
|
364
|
+
"Prisma Cloud",
|
|
365
|
+
"Wiz",
|
|
366
|
+
"Aqua Security",
|
|
367
|
+
"Trend Micro",
|
|
368
|
+
"shift-left",
|
|
369
|
+
"policy as code",
|
|
370
|
+
"CI/CD security",
|
|
371
|
+
"audit preparation",
|
|
372
|
+
"CUI",
|
|
373
|
+
"audit",
|
|
374
|
+
"audit preparation",
|
|
375
|
+
"infrastructure",
|
|
376
|
+
"patient",
|
|
377
|
+
"health information",
|
|
378
|
+
"compliant",
|
|
379
|
+
"become compliant",
|
|
380
|
+
"sensitive",
|
|
381
|
+
"sensitive data",
|
|
382
|
+
"data protection",
|
|
383
|
+
"BAA",
|
|
384
|
+
"Business Associate Agreement",
|
|
385
|
+
"DRM",
|
|
386
|
+
"encryption",
|
|
387
|
+
"ATO",
|
|
388
|
+
"3PAO",
|
|
389
|
+
"C3PAO",
|
|
390
|
+
"SPRS",
|
|
391
|
+
"compartmented",
|
|
392
|
+
"RMF",
|
|
393
|
+
"dual-national",
|
|
394
|
+
"retention",
|
|
395
|
+
"access control",
|
|
396
|
+
"policies",
|
|
397
|
+
"data retention",
|
|
398
|
+
"FIPS 140-2",
|
|
399
|
+
"FIPS",
|
|
400
|
+
"HSM",
|
|
401
|
+
"hardware security module",
|
|
402
|
+
"post-quantum",
|
|
403
|
+
"quantum-resistant",
|
|
404
|
+
"cryptography",
|
|
405
|
+
"supply chain",
|
|
406
|
+
"provenance",
|
|
407
|
+
"transparency",
|
|
408
|
+
"PII",
|
|
409
|
+
"personally identifiable information",
|
|
410
|
+
"benefits processing",
|
|
411
|
+
"benefits",
|
|
412
|
+
"secure",
|
|
413
|
+
"be more secure",
|
|
414
|
+
"medical records",
|
|
415
|
+
"credit cards",
|
|
416
|
+
"government contractor",
|
|
417
|
+
"assessment",
|
|
418
|
+
"pass the assessment",
|
|
419
|
+
"FISMA",
|
|
420
|
+
"ICD 503",
|
|
421
|
+
"DCID",
|
|
422
|
+
"JAFAN",
|
|
423
|
+
"CNSS",
|
|
424
|
+
"DIACAP",
|
|
425
|
+
"DoDD 8500",
|
|
426
|
+
"DoDD 8510",
|
|
427
|
+
"StateRAMP",
|
|
428
|
+
"TX-RAMP",
|
|
429
|
+
"IL2",
|
|
430
|
+
"IL4",
|
|
431
|
+
"JSIG",
|
|
432
|
+
"STIG",
|
|
433
|
+
"Security Technical Implementation Guide",
|
|
434
|
+
"CIS Benchmark",
|
|
435
|
+
"CIS Controls",
|
|
436
|
+
"Zero Trust",
|
|
437
|
+
"NIST Cybersecurity Framework",
|
|
438
|
+
"NIST CSF",
|
|
439
|
+
"CVE",
|
|
440
|
+
"vulnerability management",
|
|
441
|
+
"patch management",
|
|
442
|
+
"configuration management",
|
|
443
|
+
"baseline",
|
|
444
|
+
"hardening",
|
|
445
|
+
"least privilege",
|
|
446
|
+
"defense in depth",
|
|
447
|
+
"network segmentation",
|
|
448
|
+
"micro-segmentation",
|
|
449
|
+
"lateral movement",
|
|
450
|
+
"threat hunting",
|
|
451
|
+
"threat detection",
|
|
452
|
+
"SIEM",
|
|
453
|
+
"SOC",
|
|
454
|
+
"Security Operations Center",
|
|
455
|
+
"incident response plan",
|
|
456
|
+
"playbook",
|
|
457
|
+
"cybersecurity",
|
|
458
|
+
"information security",
|
|
459
|
+
"InfoSec",
|
|
460
|
+
"AppSec",
|
|
461
|
+
"application security",
|
|
462
|
+
"penetration testing",
|
|
463
|
+
"pen test",
|
|
464
|
+
"red team",
|
|
465
|
+
"blue team",
|
|
466
|
+
"purple team",
|
|
467
|
+
"vulnerability assessment",
|
|
468
|
+
"risk assessment",
|
|
469
|
+
"security controls",
|
|
470
|
+
"compensating controls",
|
|
471
|
+
"continuous monitoring",
|
|
472
|
+
"authorization",
|
|
473
|
+
"accreditation",
|
|
474
|
+
"A&A",
|
|
475
|
+
"authorization boundary",
|
|
476
|
+
"security boundary",
|
|
477
|
+
"POAM",
|
|
478
|
+
"Plan of Action and Milestones",
|
|
479
|
+
"SSP",
|
|
480
|
+
"System Security Plan",
|
|
481
|
+
"security artifacts",
|
|
482
|
+
"evidence package",
|
|
483
|
+
"audit evidence",
|
|
484
|
+
"control implementation",
|
|
485
|
+
"control testing",
|
|
486
|
+
"ISSO",
|
|
487
|
+
"ISSM",
|
|
488
|
+
"CSO",
|
|
489
|
+
"CISO",
|
|
490
|
+
"security officer",
|
|
491
|
+
"privacy officer",
|
|
492
|
+
"DPO"
|
|
493
|
+
],
|
|
494
|
+
"intentPatterns": [
|
|
495
|
+
"(scan|check|find|detect).*?(vulnerability|security|secret|credential)",
|
|
496
|
+
"(implement|add|setup|configure).*?(security|scanning|secrets|vault)",
|
|
497
|
+
"(policy|compliance|enforce).*?(security|standard|baseline)",
|
|
498
|
+
"(harden|secure).*?(container|image|pod|cluster)",
|
|
499
|
+
"(FedRAMP|CMMC|NIST|compliance).*?(framework|requirement|control)",
|
|
500
|
+
"(CSPM|cloud security posture).*?(tool|integration|scan)",
|
|
501
|
+
"(compliance|audit).*?(checklist|preparation|evidence)"
|
|
502
|
+
]
|
|
503
|
+
},
|
|
504
|
+
"fileTriggers": {
|
|
505
|
+
"pathPatterns": [
|
|
506
|
+
"**/.trivyignore",
|
|
507
|
+
"**/security/**/*.yaml",
|
|
508
|
+
"**/policies/**/*.rego",
|
|
509
|
+
"**/policies/**/*.yaml",
|
|
510
|
+
"**/vault/**/*",
|
|
511
|
+
"**/*-policy.yaml",
|
|
512
|
+
"**/gatekeeper/**/*",
|
|
513
|
+
"**/kyverno/**/*"
|
|
514
|
+
],
|
|
515
|
+
"contentPatterns": [
|
|
516
|
+
"kind: (ConstraintTemplate|ClusterPolicy|Policy)",
|
|
517
|
+
"apiVersion:.*gatekeeper",
|
|
518
|
+
"apiVersion:.*kyverno",
|
|
519
|
+
"trivy",
|
|
520
|
+
"snyk",
|
|
521
|
+
"securityContext:",
|
|
522
|
+
"podSecurityPolicy"
|
|
523
|
+
]
|
|
524
|
+
}
|
|
525
|
+
},
|
|
526
|
+
"cybersecurity": {
|
|
527
|
+
"type": "domain",
|
|
528
|
+
"enforcement": "suggest",
|
|
529
|
+
"priority": "high",
|
|
530
|
+
"description": "Comprehensive cybersecurity covering threat modeling, security operations, incident response, application security, network security, cloud security, IAM, cryptography, and security testing",
|
|
531
|
+
"promptTriggers": {
|
|
532
|
+
"keywords": [
|
|
533
|
+
"cybersecurity",
|
|
534
|
+
"cyber security",
|
|
535
|
+
"information security",
|
|
536
|
+
"InfoSec",
|
|
537
|
+
"security",
|
|
538
|
+
"threat modeling",
|
|
539
|
+
"STRIDE",
|
|
540
|
+
"PASTA",
|
|
541
|
+
"DREAD",
|
|
542
|
+
"attack surface",
|
|
543
|
+
"threat actor",
|
|
544
|
+
"threat intelligence",
|
|
545
|
+
"threat hunting",
|
|
546
|
+
"threat detection",
|
|
547
|
+
"security operations",
|
|
548
|
+
"SecOps",
|
|
549
|
+
"SOC",
|
|
550
|
+
"Security Operations Center",
|
|
551
|
+
"SIEM",
|
|
552
|
+
"SOAR",
|
|
553
|
+
"IDS",
|
|
554
|
+
"IPS",
|
|
555
|
+
"Intrusion Detection",
|
|
556
|
+
"Intrusion Prevention",
|
|
557
|
+
"EDR",
|
|
558
|
+
"XDR",
|
|
559
|
+
"Endpoint Detection",
|
|
560
|
+
"incident response",
|
|
561
|
+
"IR",
|
|
562
|
+
"incident handling",
|
|
563
|
+
"incident management",
|
|
564
|
+
"containment",
|
|
565
|
+
"eradication",
|
|
566
|
+
"forensics",
|
|
567
|
+
"digital forensics",
|
|
568
|
+
"incident response plan",
|
|
569
|
+
"playbook",
|
|
570
|
+
"runbook",
|
|
571
|
+
"security incident",
|
|
572
|
+
"breach",
|
|
573
|
+
"data breach",
|
|
574
|
+
"cyber attack",
|
|
575
|
+
"attack",
|
|
576
|
+
"compromise",
|
|
577
|
+
"application security",
|
|
578
|
+
"AppSec",
|
|
579
|
+
"SAST",
|
|
580
|
+
"DAST",
|
|
581
|
+
"IAST",
|
|
582
|
+
"SCA",
|
|
583
|
+
"secure coding",
|
|
584
|
+
"code review",
|
|
585
|
+
"OWASP",
|
|
586
|
+
"OWASP Top 10",
|
|
587
|
+
"SQL injection",
|
|
588
|
+
"SQLi",
|
|
589
|
+
"XSS",
|
|
590
|
+
"Cross-Site Scripting",
|
|
591
|
+
"CSRF",
|
|
592
|
+
"injection attack",
|
|
593
|
+
"security testing",
|
|
594
|
+
"penetration testing",
|
|
595
|
+
"pen test",
|
|
596
|
+
"pentest",
|
|
597
|
+
"ethical hacking",
|
|
598
|
+
"red team",
|
|
599
|
+
"blue team",
|
|
600
|
+
"purple team",
|
|
601
|
+
"vulnerability assessment",
|
|
602
|
+
"vulnerability scan",
|
|
603
|
+
"vulnerability",
|
|
604
|
+
"CVE",
|
|
605
|
+
"exploit",
|
|
606
|
+
"zero-day",
|
|
607
|
+
"network security",
|
|
608
|
+
"firewall",
|
|
609
|
+
"next-gen firewall",
|
|
610
|
+
"NGFW",
|
|
611
|
+
"WAF",
|
|
612
|
+
"Web Application Firewall",
|
|
613
|
+
"network segmentation",
|
|
614
|
+
"micro-segmentation",
|
|
615
|
+
"DMZ",
|
|
616
|
+
"bastion host",
|
|
617
|
+
"jump box",
|
|
618
|
+
"VPN",
|
|
619
|
+
"IPSec",
|
|
620
|
+
"SSL VPN",
|
|
621
|
+
"NAC",
|
|
622
|
+
"Network Access Control",
|
|
623
|
+
"DDoS",
|
|
624
|
+
"DDoS protection",
|
|
625
|
+
"denial of service",
|
|
626
|
+
"identity and access",
|
|
627
|
+
"IAM",
|
|
628
|
+
"authentication",
|
|
629
|
+
"authorization",
|
|
630
|
+
"access control",
|
|
631
|
+
"RBAC",
|
|
632
|
+
"ABAC",
|
|
633
|
+
"MFA",
|
|
634
|
+
"Multi-Factor Authentication",
|
|
635
|
+
"2FA",
|
|
636
|
+
"SSO",
|
|
637
|
+
"Single Sign-On",
|
|
638
|
+
"SAML",
|
|
639
|
+
"OAuth",
|
|
640
|
+
"OpenID Connect",
|
|
641
|
+
"PAM",
|
|
642
|
+
"Privileged Access Management",
|
|
643
|
+
"password policy",
|
|
644
|
+
"password management",
|
|
645
|
+
"credential management",
|
|
646
|
+
"least privilege",
|
|
647
|
+
"privilege escalation",
|
|
648
|
+
"cryptography",
|
|
649
|
+
"encryption",
|
|
650
|
+
"decryption",
|
|
651
|
+
"cipher",
|
|
652
|
+
"TLS",
|
|
653
|
+
"SSL",
|
|
654
|
+
"PKI",
|
|
655
|
+
"Public Key Infrastructure",
|
|
656
|
+
"certificate",
|
|
657
|
+
"digital certificate",
|
|
658
|
+
"HSM",
|
|
659
|
+
"Hardware Security Module",
|
|
660
|
+
"key management",
|
|
661
|
+
"KMS",
|
|
662
|
+
"symmetric encryption",
|
|
663
|
+
"asymmetric encryption",
|
|
664
|
+
"hashing",
|
|
665
|
+
"hash function",
|
|
666
|
+
"digital signature",
|
|
667
|
+
"post-quantum cryptography",
|
|
668
|
+
"PQC",
|
|
669
|
+
"cloud security",
|
|
670
|
+
"CSPM",
|
|
671
|
+
"Cloud Security Posture Management",
|
|
672
|
+
"CWPP",
|
|
673
|
+
"Cloud Workload Protection",
|
|
674
|
+
"CASB",
|
|
675
|
+
"Cloud Access Security Broker",
|
|
676
|
+
"container security",
|
|
677
|
+
"image scanning",
|
|
678
|
+
"runtime security",
|
|
679
|
+
"secrets management",
|
|
680
|
+
"secrets",
|
|
681
|
+
"Vault",
|
|
682
|
+
"compliance",
|
|
683
|
+
"security compliance",
|
|
684
|
+
"regulatory compliance",
|
|
685
|
+
"audit",
|
|
686
|
+
"security audit",
|
|
687
|
+
"ISO 27001",
|
|
688
|
+
"NIST CSF",
|
|
689
|
+
"NIST Cybersecurity Framework",
|
|
690
|
+
"CIS Controls",
|
|
691
|
+
"CIS Benchmark",
|
|
692
|
+
"PCI DSS",
|
|
693
|
+
"HIPAA Security",
|
|
694
|
+
"SOX",
|
|
695
|
+
"Sarbanes-Oxley",
|
|
696
|
+
"GDPR security",
|
|
697
|
+
"data protection",
|
|
698
|
+
"privacy",
|
|
699
|
+
"data privacy",
|
|
700
|
+
"PII protection",
|
|
701
|
+
"risk assessment",
|
|
702
|
+
"risk management",
|
|
703
|
+
"security risk",
|
|
704
|
+
"risk mitigation",
|
|
705
|
+
"security controls",
|
|
706
|
+
"compensating controls",
|
|
707
|
+
"preventive controls",
|
|
708
|
+
"detective controls",
|
|
709
|
+
"corrective controls",
|
|
710
|
+
"defense in depth",
|
|
711
|
+
"defense-in-depth",
|
|
712
|
+
"Zero Trust",
|
|
713
|
+
"Zero Trust Architecture",
|
|
714
|
+
"ZTA",
|
|
715
|
+
"ZTNA",
|
|
716
|
+
"never trust always verify",
|
|
717
|
+
"assume breach",
|
|
718
|
+
"security posture",
|
|
719
|
+
"security baseline",
|
|
720
|
+
"hardening",
|
|
721
|
+
"system hardening",
|
|
722
|
+
"security hardening",
|
|
723
|
+
"malware",
|
|
724
|
+
"ransomware",
|
|
725
|
+
"phishing",
|
|
726
|
+
"social engineering",
|
|
727
|
+
"spear phishing",
|
|
728
|
+
"malicious code",
|
|
729
|
+
"virus",
|
|
730
|
+
"worm",
|
|
731
|
+
"trojan",
|
|
732
|
+
"rootkit",
|
|
733
|
+
"backdoor",
|
|
734
|
+
"botnet",
|
|
735
|
+
"APT",
|
|
736
|
+
"Advanced Persistent Threat",
|
|
737
|
+
"insider threat",
|
|
738
|
+
"security awareness",
|
|
739
|
+
"security training",
|
|
740
|
+
"security monitoring",
|
|
741
|
+
"continuous monitoring",
|
|
742
|
+
"security logging",
|
|
743
|
+
"log analysis",
|
|
744
|
+
"anomaly detection",
|
|
745
|
+
"behavioral analytics",
|
|
746
|
+
"UEBA",
|
|
747
|
+
"User and Entity Behavior Analytics",
|
|
748
|
+
"lateral movement",
|
|
749
|
+
"command and control",
|
|
750
|
+
"C2",
|
|
751
|
+
"C&C",
|
|
752
|
+
"exfiltration",
|
|
753
|
+
"data exfiltration",
|
|
754
|
+
"security architecture",
|
|
755
|
+
"security design",
|
|
756
|
+
"secure architecture",
|
|
757
|
+
"secure design",
|
|
758
|
+
"security requirements",
|
|
759
|
+
"security by design",
|
|
760
|
+
"shift left security",
|
|
761
|
+
"DevSecOps security"
|
|
762
|
+
],
|
|
763
|
+
"intentPatterns": [
|
|
764
|
+
"(threat|attack|breach|compromise).*?(detect|prevent|respond|investigate)",
|
|
765
|
+
"(security|cyber).*?(architecture|design|implementation|assessment)",
|
|
766
|
+
"(incident|breach).*?(response|handling|investigation|containment)",
|
|
767
|
+
"(penetration|security).*?(test|testing|assessment|audit)",
|
|
768
|
+
"(vulnerability|exploit|CVE).*?(scan|assess|patch|fix|remediate)",
|
|
769
|
+
"(encryption|cryptography|TLS|certificate).*?(implement|configure|manage)",
|
|
770
|
+
"(authentication|authorization|access|IAM).*?(configure|implement|manage)",
|
|
771
|
+
"(SIEM|SOC|monitoring).*?(setup|configure|implement|integrate)",
|
|
772
|
+
"(compliance|audit|control).*?(implement|assess|validate|evidence)",
|
|
773
|
+
"(Zero Trust|defense in depth).*?(implement|architecture|design)"
|
|
774
|
+
]
|
|
775
|
+
},
|
|
776
|
+
"fileTriggers": {
|
|
777
|
+
"pathPatterns": [
|
|
778
|
+
"**/security/**/*",
|
|
779
|
+
"**/security-*.md",
|
|
780
|
+
"**/threat-model*.md",
|
|
781
|
+
"**/incident-response*.md",
|
|
782
|
+
"**/security-architecture*.md"
|
|
783
|
+
],
|
|
784
|
+
"contentPatterns": [
|
|
785
|
+
"STRIDE",
|
|
786
|
+
"threat model",
|
|
787
|
+
"security control",
|
|
788
|
+
"CVE-",
|
|
789
|
+
"vulnerability"
|
|
790
|
+
]
|
|
791
|
+
}
|
|
792
|
+
},
|
|
793
|
+
"sre": {
|
|
794
|
+
"type": "domain",
|
|
795
|
+
"enforcement": "suggest",
|
|
796
|
+
"priority": "high",
|
|
797
|
+
"description": "Site Reliability Engineering practices including SLO/SLI, error budgets, incident management, and observability",
|
|
798
|
+
"promptTriggers": {
|
|
799
|
+
"keywords": [
|
|
800
|
+
"SLO",
|
|
801
|
+
"SLI",
|
|
802
|
+
"SLA",
|
|
803
|
+
"service level",
|
|
804
|
+
"error budget",
|
|
805
|
+
"incident",
|
|
806
|
+
"outage",
|
|
807
|
+
"postmortem",
|
|
808
|
+
"post-mortem",
|
|
809
|
+
"on-call",
|
|
810
|
+
"runbook",
|
|
811
|
+
"observability",
|
|
812
|
+
"monitoring",
|
|
813
|
+
"alerting",
|
|
814
|
+
"prometheus",
|
|
815
|
+
"grafana",
|
|
816
|
+
"chaos engineering",
|
|
817
|
+
"fault injection",
|
|
818
|
+
"reliability",
|
|
819
|
+
"availability",
|
|
820
|
+
"capacity planning",
|
|
821
|
+
"performance",
|
|
822
|
+
"logging",
|
|
823
|
+
"audit logging",
|
|
824
|
+
"log management",
|
|
825
|
+
"speed",
|
|
826
|
+
"complaining about speed",
|
|
827
|
+
"production down",
|
|
828
|
+
"down",
|
|
829
|
+
"logs",
|
|
830
|
+
"logs are all over",
|
|
831
|
+
"competitors",
|
|
832
|
+
"faster",
|
|
833
|
+
"faster than us"
|
|
834
|
+
],
|
|
835
|
+
"intentPatterns": [
|
|
836
|
+
"(define|create|implement|measure).*?(SLO|SLI|SLA|error budget)",
|
|
837
|
+
"(incident|outage|down|degraded).*?(response|debug|investigate)",
|
|
838
|
+
"(monitor|alert|observe|track).*?(service|system|metric)",
|
|
839
|
+
"(chaos|fault).*?(engineering|injection|test)",
|
|
840
|
+
"(runbook|playbook|procedure).*?(incident|debug)"
|
|
841
|
+
]
|
|
842
|
+
},
|
|
843
|
+
"fileTriggers": {
|
|
844
|
+
"pathPatterns": [
|
|
845
|
+
"**/monitoring/**/*.yaml",
|
|
846
|
+
"**/alerts/**/*.yaml",
|
|
847
|
+
"**/prometheus/**/*",
|
|
848
|
+
"**/grafana/**/*",
|
|
849
|
+
"**/runbooks/**/*.md",
|
|
850
|
+
"**/slo/**/*.yaml",
|
|
851
|
+
"**/chaos/**/*"
|
|
852
|
+
],
|
|
853
|
+
"contentPatterns": [
|
|
854
|
+
"kind: (PrometheusRule|ServiceMonitor|Alert)",
|
|
855
|
+
"expr:",
|
|
856
|
+
"for: [0-9]+(s|m|h)",
|
|
857
|
+
"severity: (critical|warning|info)"
|
|
858
|
+
]
|
|
859
|
+
}
|
|
860
|
+
},
|
|
861
|
+
"release-engineering": {
|
|
862
|
+
"type": "domain",
|
|
863
|
+
"enforcement": "suggest",
|
|
864
|
+
"priority": "high",
|
|
865
|
+
"description": "Release engineering including CI/CD, deployment strategies, versioning, artifact management, and progressive delivery",
|
|
866
|
+
"promptTriggers": {
|
|
867
|
+
"keywords": [
|
|
868
|
+
"CI/CD",
|
|
869
|
+
"pipeline",
|
|
870
|
+
"deployment",
|
|
871
|
+
"release",
|
|
872
|
+
"deploy",
|
|
873
|
+
"artifact",
|
|
874
|
+
"build",
|
|
875
|
+
"canary",
|
|
876
|
+
"blue-green",
|
|
877
|
+
"rolling update",
|
|
878
|
+
"rollback",
|
|
879
|
+
"versioning",
|
|
880
|
+
"semantic version",
|
|
881
|
+
"feature flag",
|
|
882
|
+
"progressive delivery",
|
|
883
|
+
"GitHub Actions",
|
|
884
|
+
"GitLab CI",
|
|
885
|
+
"Jenkins",
|
|
886
|
+
"Flagger",
|
|
887
|
+
"ArgoCD",
|
|
888
|
+
"Octopus",
|
|
889
|
+
"Octopus Deploy",
|
|
890
|
+
"octopus",
|
|
891
|
+
"octopus deploy",
|
|
892
|
+
"Spinnaker",
|
|
893
|
+
"spinnaker",
|
|
894
|
+
"Harness",
|
|
895
|
+
"harness",
|
|
896
|
+
"code changes",
|
|
897
|
+
"changes break",
|
|
898
|
+
"break production"
|
|
899
|
+
],
|
|
900
|
+
"intentPatterns": [
|
|
901
|
+
"(create|setup|configure|implement).*?(pipeline|CI/CD|deployment)",
|
|
902
|
+
"(deploy|release).*?(application|service|code)",
|
|
903
|
+
"(rollback|revert).*?(deployment|release)",
|
|
904
|
+
"(canary|blue-green|rolling).*?(deploy|deployment|release)",
|
|
905
|
+
"(automate|automation).*?(release|deployment)"
|
|
906
|
+
]
|
|
907
|
+
},
|
|
908
|
+
"fileTriggers": {
|
|
909
|
+
"pathPatterns": [
|
|
910
|
+
"**/.github/workflows/**/*.yml",
|
|
911
|
+
"**/.github/workflows/**/*.yaml",
|
|
912
|
+
"**/.gitlab-ci.yml",
|
|
913
|
+
"**/Jenkinsfile",
|
|
914
|
+
"**/azure-pipelines.yml",
|
|
915
|
+
"**/cloudbuild.yaml",
|
|
916
|
+
"**/flagger/**/*.yaml",
|
|
917
|
+
"**/argocd/**/*.yaml"
|
|
918
|
+
],
|
|
919
|
+
"contentPatterns": [
|
|
920
|
+
"kind: Canary",
|
|
921
|
+
"kind: Application",
|
|
922
|
+
"jobs:",
|
|
923
|
+
"stages:",
|
|
924
|
+
"pipeline"
|
|
925
|
+
]
|
|
926
|
+
}
|
|
927
|
+
},
|
|
928
|
+
"cloud-engineering": {
|
|
929
|
+
"type": "domain",
|
|
930
|
+
"enforcement": "suggest",
|
|
931
|
+
"priority": "high",
|
|
932
|
+
"description": "Cloud engineering covering AWS, Azure, GCP, Oracle Cloud (OCI) patterns, cloud-native services, multi-cloud strategies, government clouds, and compliance",
|
|
933
|
+
"promptTriggers": {
|
|
934
|
+
"keywords": [
|
|
935
|
+
"AWS",
|
|
936
|
+
"Azure",
|
|
937
|
+
"GCP",
|
|
938
|
+
"Google Cloud",
|
|
939
|
+
"cloud",
|
|
940
|
+
"EC2",
|
|
941
|
+
"S3",
|
|
942
|
+
"Lambda",
|
|
943
|
+
"EKS",
|
|
944
|
+
"ECS",
|
|
945
|
+
"RDS",
|
|
946
|
+
"DynamoDB",
|
|
947
|
+
"CloudFormation",
|
|
948
|
+
"ARM template",
|
|
949
|
+
"Cloud Functions",
|
|
950
|
+
"Cloud Run",
|
|
951
|
+
"serverless",
|
|
952
|
+
"multi-cloud",
|
|
953
|
+
"cloud migration",
|
|
954
|
+
"well-architected",
|
|
955
|
+
"OCI",
|
|
956
|
+
"Oracle Cloud",
|
|
957
|
+
"Oracle Cloud Infrastructure",
|
|
958
|
+
"Autonomous Database",
|
|
959
|
+
"OKE",
|
|
960
|
+
"VCN",
|
|
961
|
+
"Object Storage",
|
|
962
|
+
"Compute Instance",
|
|
963
|
+
"Resource Manager",
|
|
964
|
+
"FastConnect",
|
|
965
|
+
"GovCloud",
|
|
966
|
+
"Azure Government",
|
|
967
|
+
"government cloud",
|
|
968
|
+
"FedRAMP",
|
|
969
|
+
"cleared",
|
|
970
|
+
"classified",
|
|
971
|
+
"air-gapped",
|
|
972
|
+
"DoD",
|
|
973
|
+
"IL5",
|
|
974
|
+
"IL6",
|
|
975
|
+
"CSPM",
|
|
976
|
+
"Prisma Cloud",
|
|
977
|
+
"Wiz",
|
|
978
|
+
"Aqua",
|
|
979
|
+
"Trend Micro",
|
|
980
|
+
"Security Hub",
|
|
981
|
+
"Microsoft Defender",
|
|
982
|
+
"Kubernetes",
|
|
983
|
+
"K8s",
|
|
984
|
+
"secure environment",
|
|
985
|
+
"deployment",
|
|
986
|
+
"auto-scaling",
|
|
987
|
+
"scaling",
|
|
988
|
+
"scale",
|
|
989
|
+
"cost optimization",
|
|
990
|
+
"startup",
|
|
991
|
+
"confidential computing",
|
|
992
|
+
"enclaves",
|
|
993
|
+
"SGX",
|
|
994
|
+
"secure enclave",
|
|
995
|
+
"citizen portal",
|
|
996
|
+
"portal",
|
|
997
|
+
"SSO",
|
|
998
|
+
"single sign-on",
|
|
999
|
+
"state government",
|
|
1000
|
+
"government portal",
|
|
1001
|
+
"costs",
|
|
1002
|
+
"infrastructure costs",
|
|
1003
|
+
"spending",
|
|
1004
|
+
"spending too much",
|
|
1005
|
+
"costs are too high",
|
|
1006
|
+
"ECS",
|
|
1007
|
+
"Fargate",
|
|
1008
|
+
"EBS",
|
|
1009
|
+
"EFS",
|
|
1010
|
+
"Aurora",
|
|
1011
|
+
"Redshift",
|
|
1012
|
+
"Neptune",
|
|
1013
|
+
"ElastiCache",
|
|
1014
|
+
"VPC",
|
|
1015
|
+
"CloudFront",
|
|
1016
|
+
"Route53",
|
|
1017
|
+
"API Gateway",
|
|
1018
|
+
"Direct Connect",
|
|
1019
|
+
"Transit Gateway",
|
|
1020
|
+
"ALB",
|
|
1021
|
+
"NLB",
|
|
1022
|
+
"ELB",
|
|
1023
|
+
"IAM",
|
|
1024
|
+
"KMS",
|
|
1025
|
+
"Secrets Manager",
|
|
1026
|
+
"CloudWatch",
|
|
1027
|
+
"CloudTrail",
|
|
1028
|
+
"Athena",
|
|
1029
|
+
"Glue",
|
|
1030
|
+
"Kinesis",
|
|
1031
|
+
"SageMaker",
|
|
1032
|
+
"SQS",
|
|
1033
|
+
"SNS",
|
|
1034
|
+
"EventBridge",
|
|
1035
|
+
"Step Functions",
|
|
1036
|
+
"ECR",
|
|
1037
|
+
"Virtual Machines",
|
|
1038
|
+
"App Service",
|
|
1039
|
+
"AKS",
|
|
1040
|
+
"Container Instances",
|
|
1041
|
+
"Functions",
|
|
1042
|
+
"Blob Storage",
|
|
1043
|
+
"Cosmos DB",
|
|
1044
|
+
"Virtual Network",
|
|
1045
|
+
"Load Balancer",
|
|
1046
|
+
"Application Gateway",
|
|
1047
|
+
"Front Door",
|
|
1048
|
+
"Key Vault",
|
|
1049
|
+
"Monitor",
|
|
1050
|
+
"Service Bus",
|
|
1051
|
+
"Event Grid",
|
|
1052
|
+
"Event Hubs",
|
|
1053
|
+
"Synapse",
|
|
1054
|
+
"Compute Engine",
|
|
1055
|
+
"GKE",
|
|
1056
|
+
"Cloud Storage",
|
|
1057
|
+
"Cloud SQL",
|
|
1058
|
+
"Firestore",
|
|
1059
|
+
"Bigtable",
|
|
1060
|
+
"Spanner",
|
|
1061
|
+
"BigQuery",
|
|
1062
|
+
"Cloud Load Balancing",
|
|
1063
|
+
"Cloud CDN",
|
|
1064
|
+
"Pub/Sub",
|
|
1065
|
+
"Vertex AI",
|
|
1066
|
+
"Block Volume",
|
|
1067
|
+
"File Storage",
|
|
1068
|
+
"DB Systems",
|
|
1069
|
+
"Exadata",
|
|
1070
|
+
"Cloud Guard",
|
|
1071
|
+
"Streaming",
|
|
1072
|
+
"Artifact Registry",
|
|
1073
|
+
"Container Registry",
|
|
1074
|
+
"registry",
|
|
1075
|
+
"on-premises",
|
|
1076
|
+
"on-prem",
|
|
1077
|
+
"data center",
|
|
1078
|
+
"datacenter",
|
|
1079
|
+
"colocation",
|
|
1080
|
+
"colo",
|
|
1081
|
+
"private cloud",
|
|
1082
|
+
"VMware",
|
|
1083
|
+
"vSphere",
|
|
1084
|
+
"ESXi",
|
|
1085
|
+
"vCenter",
|
|
1086
|
+
"Hyper-V",
|
|
1087
|
+
"OpenStack",
|
|
1088
|
+
"bare metal",
|
|
1089
|
+
"physical server",
|
|
1090
|
+
"rack",
|
|
1091
|
+
"blade server",
|
|
1092
|
+
"SAN",
|
|
1093
|
+
"storage area network",
|
|
1094
|
+
"NAS",
|
|
1095
|
+
"network attached storage",
|
|
1096
|
+
"backup appliance",
|
|
1097
|
+
"tape backup",
|
|
1098
|
+
"disaster recovery site",
|
|
1099
|
+
"DR site",
|
|
1100
|
+
"hot site",
|
|
1101
|
+
"cold site",
|
|
1102
|
+
"warm site",
|
|
1103
|
+
"CRAC",
|
|
1104
|
+
"cooling",
|
|
1105
|
+
"power distribution",
|
|
1106
|
+
"UPS",
|
|
1107
|
+
"generator",
|
|
1108
|
+
"raised floor",
|
|
1109
|
+
"cage",
|
|
1110
|
+
"cabinet",
|
|
1111
|
+
"co-location",
|
|
1112
|
+
"carrier hotel",
|
|
1113
|
+
"meet-me room",
|
|
1114
|
+
"cross-connect",
|
|
1115
|
+
"dark fiber",
|
|
1116
|
+
"MPLS",
|
|
1117
|
+
"dedicated circuit",
|
|
1118
|
+
"leased line",
|
|
1119
|
+
"point-to-point",
|
|
1120
|
+
"hybrid cloud",
|
|
1121
|
+
"cloud interconnect",
|
|
1122
|
+
"ExpressRoute",
|
|
1123
|
+
"Cloud Interconnect",
|
|
1124
|
+
"TEMPEST",
|
|
1125
|
+
"SCIF",
|
|
1126
|
+
"server room",
|
|
1127
|
+
"rack elevation",
|
|
1128
|
+
"patch panel",
|
|
1129
|
+
"KVM",
|
|
1130
|
+
"console",
|
|
1131
|
+
"IPMI",
|
|
1132
|
+
"iLO",
|
|
1133
|
+
"iDRAC",
|
|
1134
|
+
"BMC",
|
|
1135
|
+
"Batch",
|
|
1136
|
+
"AWS Batch",
|
|
1137
|
+
"Outposts",
|
|
1138
|
+
"Wavelength",
|
|
1139
|
+
"Local Zones",
|
|
1140
|
+
"Snow",
|
|
1141
|
+
"Snowball",
|
|
1142
|
+
"Storage Gateway",
|
|
1143
|
+
"DataSync",
|
|
1144
|
+
"Transfer Family",
|
|
1145
|
+
"WorkSpaces",
|
|
1146
|
+
"AppStream",
|
|
1147
|
+
"Lightsail",
|
|
1148
|
+
"Elastic Beanstalk",
|
|
1149
|
+
"CodePipeline",
|
|
1150
|
+
"CodeBuild",
|
|
1151
|
+
"CodeDeploy",
|
|
1152
|
+
"X-Ray",
|
|
1153
|
+
"App Runner",
|
|
1154
|
+
"Amplify",
|
|
1155
|
+
"Elastic Load Balancing",
|
|
1156
|
+
"Azure Stack",
|
|
1157
|
+
"Azure Arc",
|
|
1158
|
+
"Azure DevOps",
|
|
1159
|
+
"Azure Databricks",
|
|
1160
|
+
"Logic Apps",
|
|
1161
|
+
"Azure SQL",
|
|
1162
|
+
"Azure Cache",
|
|
1163
|
+
"Azure Firewall",
|
|
1164
|
+
"Azure Bastion",
|
|
1165
|
+
"Azure DNS",
|
|
1166
|
+
"Traffic Manager",
|
|
1167
|
+
"Azure Backup",
|
|
1168
|
+
"Site Recovery",
|
|
1169
|
+
"Cloud Armor",
|
|
1170
|
+
"Cloud Dataflow",
|
|
1171
|
+
"Cloud Dataproc",
|
|
1172
|
+
"Cloud Composer",
|
|
1173
|
+
"Cloud Build",
|
|
1174
|
+
"Anthos",
|
|
1175
|
+
"Apigee",
|
|
1176
|
+
"Looker",
|
|
1177
|
+
"Memorystore",
|
|
1178
|
+
"MySQL",
|
|
1179
|
+
"NoSQL",
|
|
1180
|
+
"Data Catalog",
|
|
1181
|
+
"Data Integration",
|
|
1182
|
+
"Data Flow",
|
|
1183
|
+
"Data Science",
|
|
1184
|
+
"Data Labeling",
|
|
1185
|
+
"Notification",
|
|
1186
|
+
"Email Delivery",
|
|
1187
|
+
"Queue",
|
|
1188
|
+
"Logging",
|
|
1189
|
+
"OS Management",
|
|
1190
|
+
"Service Mesh",
|
|
1191
|
+
"Registry",
|
|
1192
|
+
"WAF",
|
|
1193
|
+
"DDoS",
|
|
1194
|
+
"Shield",
|
|
1195
|
+
"GuardDuty",
|
|
1196
|
+
"Macie",
|
|
1197
|
+
"Inspector",
|
|
1198
|
+
"Detective",
|
|
1199
|
+
"Firewall Manager",
|
|
1200
|
+
"Network Firewall",
|
|
1201
|
+
"Config",
|
|
1202
|
+
"Systems Manager",
|
|
1203
|
+
"OpsWorks",
|
|
1204
|
+
"Service Catalog",
|
|
1205
|
+
"Control Tower",
|
|
1206
|
+
"Organizations",
|
|
1207
|
+
"Resource Groups",
|
|
1208
|
+
"Trusted Advisor",
|
|
1209
|
+
"Personal Health Dashboard",
|
|
1210
|
+
"edge location",
|
|
1211
|
+
"edge computing",
|
|
1212
|
+
"5G",
|
|
1213
|
+
"MEC",
|
|
1214
|
+
"CDN",
|
|
1215
|
+
"content delivery network",
|
|
1216
|
+
"caching",
|
|
1217
|
+
"serverless",
|
|
1218
|
+
"FaaS",
|
|
1219
|
+
"container",
|
|
1220
|
+
"orchestration",
|
|
1221
|
+
"service discovery",
|
|
1222
|
+
"load balancing",
|
|
1223
|
+
"auto scaling",
|
|
1224
|
+
"elasticity",
|
|
1225
|
+
"high availability",
|
|
1226
|
+
"fault tolerance",
|
|
1227
|
+
"reliability",
|
|
1228
|
+
"observability",
|
|
1229
|
+
"tracing",
|
|
1230
|
+
"metrics",
|
|
1231
|
+
"logs",
|
|
1232
|
+
"dashboards",
|
|
1233
|
+
"alerts",
|
|
1234
|
+
"notifications"
|
|
1235
|
+
],
|
|
1236
|
+
"intentPatterns": [
|
|
1237
|
+
"(AWS|Azure|GCP).*?(setup|configure|deploy|create)",
|
|
1238
|
+
"(migrate|migration).*?(cloud|AWS|Azure|GCP)",
|
|
1239
|
+
"(serverless|lambda).*?(function|deployment)",
|
|
1240
|
+
"(cloud|multi-cloud).*?(architecture|strategy|pattern)",
|
|
1241
|
+
"(OCI|Oracle Cloud).*?(setup|configure|deploy|create)",
|
|
1242
|
+
"(migrate|migration).*?(OCI|Oracle Cloud)",
|
|
1243
|
+
"(GovCloud|government cloud|cleared).*?(deploy|setup|configure|migrate)",
|
|
1244
|
+
"(FedRAMP|CMMC|DoD).*?(compliance|cloud)",
|
|
1245
|
+
"(CSPM|cloud security).*?(tool|scan|posture)"
|
|
1246
|
+
]
|
|
1247
|
+
},
|
|
1248
|
+
"fileTriggers": {
|
|
1249
|
+
"pathPatterns": [
|
|
1250
|
+
"**/*cloudformation*.yaml",
|
|
1251
|
+
"**/*cloudformation*.yml",
|
|
1252
|
+
"**/*.bicep",
|
|
1253
|
+
"**/deployment-manager/**/*.yaml"
|
|
1254
|
+
],
|
|
1255
|
+
"contentPatterns": [
|
|
1256
|
+
"AWSTemplateFormatVersion",
|
|
1257
|
+
"resource \"aws_",
|
|
1258
|
+
"resource \"azurerm_",
|
|
1259
|
+
"resource \"google_",
|
|
1260
|
+
"resource \"oci_"
|
|
1261
|
+
]
|
|
1262
|
+
}
|
|
1263
|
+
},
|
|
1264
|
+
"systems-engineering": {
|
|
1265
|
+
"type": "domain",
|
|
1266
|
+
"enforcement": "suggest",
|
|
1267
|
+
"priority": "high",
|
|
1268
|
+
"description": "Systems engineering and administration covering Linux and Windows administration, networking, performance tuning, configuration management (Ansible/Chef/Puppet/DSC), shell scripting (bash/PowerShell), and troubleshooting",
|
|
1269
|
+
"promptTriggers": {
|
|
1270
|
+
"keywords": [
|
|
1271
|
+
"Linux",
|
|
1272
|
+
"Windows",
|
|
1273
|
+
"Windows Server",
|
|
1274
|
+
"system administration",
|
|
1275
|
+
"systemd",
|
|
1276
|
+
"Active Directory",
|
|
1277
|
+
"AD",
|
|
1278
|
+
"GPO",
|
|
1279
|
+
"Group Policy",
|
|
1280
|
+
"PowerShell",
|
|
1281
|
+
"IIS",
|
|
1282
|
+
"networking",
|
|
1283
|
+
"TCP/IP",
|
|
1284
|
+
"DNS",
|
|
1285
|
+
"firewall",
|
|
1286
|
+
"iptables",
|
|
1287
|
+
"performance tuning",
|
|
1288
|
+
"Ansible",
|
|
1289
|
+
"Chef",
|
|
1290
|
+
"Puppet",
|
|
1291
|
+
"SaltStack",
|
|
1292
|
+
"Salt",
|
|
1293
|
+
"salt-ssh",
|
|
1294
|
+
"DSC",
|
|
1295
|
+
"Desired State Configuration",
|
|
1296
|
+
"shell script",
|
|
1297
|
+
"bash",
|
|
1298
|
+
"configuration management",
|
|
1299
|
+
"troubleshooting",
|
|
1300
|
+
"security hardening"
|
|
1301
|
+
],
|
|
1302
|
+
"intentPatterns": [
|
|
1303
|
+
"(Linux|Windows|system).*?(admin|administration|configure|setup)",
|
|
1304
|
+
"(Active Directory|AD|GPO).*?(manage|configure|create)",
|
|
1305
|
+
"(PowerShell|bash).*?(script|automation)",
|
|
1306
|
+
"(network|networking).*?(configure|troubleshoot|debug)",
|
|
1307
|
+
"(performance|optimize|tuning).*?(system|server|Linux|Windows)",
|
|
1308
|
+
"(Ansible|Chef|Puppet|DSC).*?(playbook|recipe|manifest|configuration)",
|
|
1309
|
+
"(IIS|web server).*?(configure|setup|manage)"
|
|
1310
|
+
]
|
|
1311
|
+
},
|
|
1312
|
+
"fileTriggers": {
|
|
1313
|
+
"pathPatterns": [
|
|
1314
|
+
"**/ansible/**/*.yml",
|
|
1315
|
+
"**/ansible/**/*.yaml",
|
|
1316
|
+
"**/playbooks/**/*.yml",
|
|
1317
|
+
"**/*.sh",
|
|
1318
|
+
"**/*.ps1",
|
|
1319
|
+
"**/chef/**/*.rb",
|
|
1320
|
+
"**/puppet/**/*.pp",
|
|
1321
|
+
"**/scripts/**/*.ps1",
|
|
1322
|
+
"**/powershell/**/*.ps1"
|
|
1323
|
+
],
|
|
1324
|
+
"contentPatterns": [
|
|
1325
|
+
"- hosts:",
|
|
1326
|
+
"- name:.*tasks:",
|
|
1327
|
+
"#!/bin/bash",
|
|
1328
|
+
"#!/bin/sh",
|
|
1329
|
+
"#Requires -Version",
|
|
1330
|
+
"Get-",
|
|
1331
|
+
"Set-",
|
|
1332
|
+
"New-",
|
|
1333
|
+
"Remove-",
|
|
1334
|
+
"Import-Module"
|
|
1335
|
+
]
|
|
1336
|
+
}
|
|
1337
|
+
},
|
|
1338
|
+
"network-engineering": {
|
|
1339
|
+
"type": "domain",
|
|
1340
|
+
"enforcement": "suggest",
|
|
1341
|
+
"priority": "high",
|
|
1342
|
+
"description": "Network engineering covering network design, TCP/IP, load balancing, firewalls, DNS",
|
|
1343
|
+
"promptTriggers": {
|
|
1344
|
+
"keywords": [
|
|
1345
|
+
"network",
|
|
1346
|
+
"networking",
|
|
1347
|
+
"load balancing",
|
|
1348
|
+
"firewall",
|
|
1349
|
+
"DNS",
|
|
1350
|
+
"routing",
|
|
1351
|
+
"switching",
|
|
1352
|
+
"VPN",
|
|
1353
|
+
"HAProxy",
|
|
1354
|
+
"nginx",
|
|
1355
|
+
"iptables",
|
|
1356
|
+
"TCP/IP",
|
|
1357
|
+
"CDN",
|
|
1358
|
+
"content delivery",
|
|
1359
|
+
"live streaming",
|
|
1360
|
+
"low latency",
|
|
1361
|
+
"data diode",
|
|
1362
|
+
"streaming",
|
|
1363
|
+
"satellite",
|
|
1364
|
+
"satellite communication",
|
|
1365
|
+
"cross-domain",
|
|
1366
|
+
"synchronization",
|
|
1367
|
+
"data synchronization",
|
|
1368
|
+
"traffic isn't reaching",
|
|
1369
|
+
"reaching the backend",
|
|
1370
|
+
"isn't reaching"
|
|
1371
|
+
],
|
|
1372
|
+
"intentPatterns": [
|
|
1373
|
+
"(configure|setup|design).*?(network|load balanc|firewall|DNS)",
|
|
1374
|
+
"(debug|troubleshoot).*?(network|connectivity|latency)",
|
|
1375
|
+
"(routing|switching|VPN).*?(configure|setup)"
|
|
1376
|
+
]
|
|
1377
|
+
},
|
|
1378
|
+
"fileTriggers": {
|
|
1379
|
+
"pathPatterns": [
|
|
1380
|
+
"**/haproxy.cfg",
|
|
1381
|
+
"**/nginx.conf",
|
|
1382
|
+
"**/network/**/*",
|
|
1383
|
+
"**/firewall/**/*"
|
|
1384
|
+
],
|
|
1385
|
+
"contentPatterns": [
|
|
1386
|
+
"frontend",
|
|
1387
|
+
"backend",
|
|
1388
|
+
"listen",
|
|
1389
|
+
"bind"
|
|
1390
|
+
]
|
|
1391
|
+
}
|
|
1392
|
+
},
|
|
1393
|
+
"build-engineering": {
|
|
1394
|
+
"type": "domain",
|
|
1395
|
+
"enforcement": "suggest",
|
|
1396
|
+
"priority": "high",
|
|
1397
|
+
"description": "Build engineering covering build systems, compilation, dependency management, artifact repositories",
|
|
1398
|
+
"promptTriggers": {
|
|
1399
|
+
"keywords": [
|
|
1400
|
+
"build",
|
|
1401
|
+
"gradle",
|
|
1402
|
+
"maven",
|
|
1403
|
+
"bazel",
|
|
1404
|
+
"make",
|
|
1405
|
+
"compilation",
|
|
1406
|
+
"artifact",
|
|
1407
|
+
"dependency",
|
|
1408
|
+
"monorepo",
|
|
1409
|
+
"build system"
|
|
1410
|
+
],
|
|
1411
|
+
"intentPatterns": [
|
|
1412
|
+
"(optimize|speed up|improve).*?build",
|
|
1413
|
+
"(gradle|maven|bazel|make).*?(build|compile)",
|
|
1414
|
+
"(monorepo|dependency).*?(manage|setup)"
|
|
1415
|
+
]
|
|
1416
|
+
},
|
|
1417
|
+
"fileTriggers": {
|
|
1418
|
+
"pathPatterns": [
|
|
1419
|
+
"**/Makefile",
|
|
1420
|
+
"**/build.gradle",
|
|
1421
|
+
"**/pom.xml",
|
|
1422
|
+
"**/BUILD",
|
|
1423
|
+
"**/WORKSPACE"
|
|
1424
|
+
],
|
|
1425
|
+
"contentPatterns": [
|
|
1426
|
+
"dependencies \\{",
|
|
1427
|
+
"plugins \\{",
|
|
1428
|
+
"<dependencies>"
|
|
1429
|
+
]
|
|
1430
|
+
}
|
|
1431
|
+
},
|
|
1432
|
+
"general-it-engineering": {
|
|
1433
|
+
"type": "domain",
|
|
1434
|
+
"enforcement": "suggest",
|
|
1435
|
+
"priority": "medium",
|
|
1436
|
+
"description": "General IT engineering covering ITIL, service management, change management, IT governance",
|
|
1437
|
+
"promptTriggers": {
|
|
1438
|
+
"keywords": [
|
|
1439
|
+
"ITIL",
|
|
1440
|
+
"ITSM",
|
|
1441
|
+
"service management",
|
|
1442
|
+
"change management",
|
|
1443
|
+
"incident management",
|
|
1444
|
+
"help desk",
|
|
1445
|
+
"IT governance",
|
|
1446
|
+
"CMDB",
|
|
1447
|
+
"service catalog"
|
|
1448
|
+
],
|
|
1449
|
+
"intentPatterns": [
|
|
1450
|
+
"(ITIL|ITSM|service).*?(management|process|framework)",
|
|
1451
|
+
"(incident|change|problem).*?(management|process)",
|
|
1452
|
+
"(help desk|service desk).*?(setup|process)"
|
|
1453
|
+
]
|
|
1454
|
+
}
|
|
1455
|
+
},
|
|
1456
|
+
"infrastructure-architecture": {
|
|
1457
|
+
"type": "domain",
|
|
1458
|
+
"enforcement": "suggest",
|
|
1459
|
+
"priority": "high",
|
|
1460
|
+
"description": "Infrastructure architecture covering system design patterns, ADRs, multi-region design, disaster recovery, capacity planning, reference architectures, workload classification, and cleared environments",
|
|
1461
|
+
"promptTriggers": {
|
|
1462
|
+
"keywords": [
|
|
1463
|
+
"architecture",
|
|
1464
|
+
"ADR",
|
|
1465
|
+
"architecture decision",
|
|
1466
|
+
"system design",
|
|
1467
|
+
"multi-region",
|
|
1468
|
+
"disaster recovery",
|
|
1469
|
+
"DR",
|
|
1470
|
+
"RTO",
|
|
1471
|
+
"RPO",
|
|
1472
|
+
"capacity planning",
|
|
1473
|
+
"reference architecture",
|
|
1474
|
+
"architectural pattern",
|
|
1475
|
+
"microservices architecture",
|
|
1476
|
+
"event-driven architecture",
|
|
1477
|
+
"CQRS",
|
|
1478
|
+
"migration architecture",
|
|
1479
|
+
"workload classification",
|
|
1480
|
+
"data classification",
|
|
1481
|
+
"CUI",
|
|
1482
|
+
"Controlled Unclassified Information",
|
|
1483
|
+
"Secret",
|
|
1484
|
+
"Top Secret",
|
|
1485
|
+
"TS/SCI",
|
|
1486
|
+
"ITAR",
|
|
1487
|
+
"classification level",
|
|
1488
|
+
"cleared environment",
|
|
1489
|
+
"classified environment",
|
|
1490
|
+
"air-gapped",
|
|
1491
|
+
"SCIF",
|
|
1492
|
+
"cross-domain solution",
|
|
1493
|
+
"security zone",
|
|
1494
|
+
"compartmented",
|
|
1495
|
+
"architect",
|
|
1496
|
+
"sensitive data",
|
|
1497
|
+
"data handling",
|
|
1498
|
+
"handling data",
|
|
1499
|
+
"classification",
|
|
1500
|
+
"scale",
|
|
1501
|
+
"scaling",
|
|
1502
|
+
"fraud detection",
|
|
1503
|
+
"PHI",
|
|
1504
|
+
"monitoring system",
|
|
1505
|
+
"recommendation engine",
|
|
1506
|
+
"US persons",
|
|
1507
|
+
"defense article",
|
|
1508
|
+
"multi-tenant",
|
|
1509
|
+
"data isolation",
|
|
1510
|
+
"backup",
|
|
1511
|
+
"recovery",
|
|
1512
|
+
"data backup",
|
|
1513
|
+
"classify",
|
|
1514
|
+
"classification question",
|
|
1515
|
+
"data classification question",
|
|
1516
|
+
"multi-party computation",
|
|
1517
|
+
"MPC",
|
|
1518
|
+
"hardware security module",
|
|
1519
|
+
"HSM clustering",
|
|
1520
|
+
"edge computing",
|
|
1521
|
+
"edge",
|
|
1522
|
+
"100M users",
|
|
1523
|
+
"millions of users",
|
|
1524
|
+
"real-time streaming",
|
|
1525
|
+
"concurrent viewers",
|
|
1526
|
+
"concurrent users",
|
|
1527
|
+
"machine learning",
|
|
1528
|
+
"ML",
|
|
1529
|
+
"AI",
|
|
1530
|
+
"inference",
|
|
1531
|
+
"ML inference",
|
|
1532
|
+
"blockchain",
|
|
1533
|
+
"distributed ledger",
|
|
1534
|
+
"immutable",
|
|
1535
|
+
"merger",
|
|
1536
|
+
"healthcare merger",
|
|
1537
|
+
"EHR systems",
|
|
1538
|
+
"international expansion",
|
|
1539
|
+
"GDPR",
|
|
1540
|
+
"data residency",
|
|
1541
|
+
"residency requirements",
|
|
1542
|
+
"developer productivity",
|
|
1543
|
+
"developer experience",
|
|
1544
|
+
"telemetry",
|
|
1545
|
+
"vehicle",
|
|
1546
|
+
"connected vehicle",
|
|
1547
|
+
"automotive",
|
|
1548
|
+
"geofencing",
|
|
1549
|
+
"trading platform",
|
|
1550
|
+
"trading",
|
|
1551
|
+
"learning management",
|
|
1552
|
+
"LMS",
|
|
1553
|
+
"e-learning",
|
|
1554
|
+
"multiplayer",
|
|
1555
|
+
"game backend",
|
|
1556
|
+
"gaming",
|
|
1557
|
+
"matchmaking",
|
|
1558
|
+
"esports",
|
|
1559
|
+
"tournament",
|
|
1560
|
+
"tax filing",
|
|
1561
|
+
"tax",
|
|
1562
|
+
"public records",
|
|
1563
|
+
"records management",
|
|
1564
|
+
"traffic",
|
|
1565
|
+
"handle traffic",
|
|
1566
|
+
"more traffic",
|
|
1567
|
+
"launching",
|
|
1568
|
+
"new regions",
|
|
1569
|
+
"Black Friday",
|
|
1570
|
+
"redundancy",
|
|
1571
|
+
"grow",
|
|
1572
|
+
"grow 10x",
|
|
1573
|
+
"customers",
|
|
1574
|
+
"instant",
|
|
1575
|
+
"instant results",
|
|
1576
|
+
"Europe",
|
|
1577
|
+
"stay in Europe",
|
|
1578
|
+
"data residency",
|
|
1579
|
+
"latency",
|
|
1580
|
+
"latency is unacceptable",
|
|
1581
|
+
"we need",
|
|
1582
|
+
"help us",
|
|
1583
|
+
"how do I",
|
|
1584
|
+
"how do we",
|
|
1585
|
+
"what's the best way",
|
|
1586
|
+
"best practices",
|
|
1587
|
+
"looking for",
|
|
1588
|
+
"trying to",
|
|
1589
|
+
"want to",
|
|
1590
|
+
"planning to",
|
|
1591
|
+
"thinking about",
|
|
1592
|
+
"considering",
|
|
1593
|
+
"evaluate",
|
|
1594
|
+
"evaluation",
|
|
1595
|
+
"decision",
|
|
1596
|
+
"choose",
|
|
1597
|
+
"selecting",
|
|
1598
|
+
"recommendation",
|
|
1599
|
+
"advise",
|
|
1600
|
+
"guidance",
|
|
1601
|
+
"stuck",
|
|
1602
|
+
"struggling",
|
|
1603
|
+
"challenge",
|
|
1604
|
+
"problem",
|
|
1605
|
+
"issue",
|
|
1606
|
+
"concern",
|
|
1607
|
+
"worried",
|
|
1608
|
+
"not sure",
|
|
1609
|
+
"unsure",
|
|
1610
|
+
"confused",
|
|
1611
|
+
"questions about",
|
|
1612
|
+
"understand",
|
|
1613
|
+
"explain",
|
|
1614
|
+
"clarify",
|
|
1615
|
+
"performance",
|
|
1616
|
+
"slow",
|
|
1617
|
+
"slowness",
|
|
1618
|
+
"bottleneck",
|
|
1619
|
+
"degraded",
|
|
1620
|
+
"degradation",
|
|
1621
|
+
"outage",
|
|
1622
|
+
"unavailable",
|
|
1623
|
+
"downtime",
|
|
1624
|
+
"intermittent",
|
|
1625
|
+
"inconsistent",
|
|
1626
|
+
"unreliable",
|
|
1627
|
+
"unstable",
|
|
1628
|
+
"error rate",
|
|
1629
|
+
"errors",
|
|
1630
|
+
"failing",
|
|
1631
|
+
"breaking",
|
|
1632
|
+
"broken",
|
|
1633
|
+
"not working",
|
|
1634
|
+
"doesn't work",
|
|
1635
|
+
"can't",
|
|
1636
|
+
"unable",
|
|
1637
|
+
"timeout",
|
|
1638
|
+
"timeouts",
|
|
1639
|
+
"connectivity",
|
|
1640
|
+
"connection",
|
|
1641
|
+
"access",
|
|
1642
|
+
"permissions",
|
|
1643
|
+
"denied",
|
|
1644
|
+
"forbidden",
|
|
1645
|
+
"unauthorized",
|
|
1646
|
+
"authentication",
|
|
1647
|
+
"login",
|
|
1648
|
+
"credentials",
|
|
1649
|
+
"users",
|
|
1650
|
+
"requests",
|
|
1651
|
+
"load",
|
|
1652
|
+
"capacity",
|
|
1653
|
+
"limits",
|
|
1654
|
+
"quota",
|
|
1655
|
+
"throttling",
|
|
1656
|
+
"overwhelming",
|
|
1657
|
+
"swamped",
|
|
1658
|
+
"peak",
|
|
1659
|
+
"spikes",
|
|
1660
|
+
"surge",
|
|
1661
|
+
"sudden",
|
|
1662
|
+
"unexpected",
|
|
1663
|
+
"anticipated",
|
|
1664
|
+
"seasonal",
|
|
1665
|
+
"holiday",
|
|
1666
|
+
"campaign",
|
|
1667
|
+
"marketing",
|
|
1668
|
+
"promotion",
|
|
1669
|
+
"launch",
|
|
1670
|
+
"go-live",
|
|
1671
|
+
"migration",
|
|
1672
|
+
"upgrade",
|
|
1673
|
+
"modernize",
|
|
1674
|
+
"legacy",
|
|
1675
|
+
"old system",
|
|
1676
|
+
"outdated",
|
|
1677
|
+
"replace",
|
|
1678
|
+
"replacement",
|
|
1679
|
+
"alternative",
|
|
1680
|
+
"instead",
|
|
1681
|
+
"vs",
|
|
1682
|
+
"versus",
|
|
1683
|
+
"compare",
|
|
1684
|
+
"comparison",
|
|
1685
|
+
"difference",
|
|
1686
|
+
"which one",
|
|
1687
|
+
"better",
|
|
1688
|
+
"worse",
|
|
1689
|
+
"pros and cons",
|
|
1690
|
+
"advantages",
|
|
1691
|
+
"disadvantages",
|
|
1692
|
+
"trade-offs",
|
|
1693
|
+
"ROI",
|
|
1694
|
+
"cost-effective",
|
|
1695
|
+
"budget",
|
|
1696
|
+
"expensive",
|
|
1697
|
+
"cheap",
|
|
1698
|
+
"affordable",
|
|
1699
|
+
"optimize",
|
|
1700
|
+
"improvement",
|
|
1701
|
+
"enhance",
|
|
1702
|
+
"increase",
|
|
1703
|
+
"reduce",
|
|
1704
|
+
"minimize",
|
|
1705
|
+
"maximize",
|
|
1706
|
+
"efficient",
|
|
1707
|
+
"efficiency",
|
|
1708
|
+
"productivity",
|
|
1709
|
+
"faster",
|
|
1710
|
+
"pattern",
|
|
1711
|
+
"patterns",
|
|
1712
|
+
"strategy",
|
|
1713
|
+
"strategies",
|
|
1714
|
+
"approach",
|
|
1715
|
+
"approaches",
|
|
1716
|
+
"solution",
|
|
1717
|
+
"solutions"
|
|
1718
|
+
],
|
|
1719
|
+
"intentPatterns": [
|
|
1720
|
+
"(design|architect|plan).*?(architecture|system|infrastructure)",
|
|
1721
|
+
"(ADR|architecture decision).*?(create|write|document)",
|
|
1722
|
+
"(multi-region|disaster recovery|DR).*?(design|plan|setup)",
|
|
1723
|
+
"(capacity|scaling).*?(plan|estimate|calculate)",
|
|
1724
|
+
"(reference architecture|architectural pattern).*?(example|template)",
|
|
1725
|
+
"(classify|classification).*?(workload|data|system)",
|
|
1726
|
+
"(cleared|classified|air-gapped).*?(environment|architecture|design)",
|
|
1727
|
+
"(CUI|Secret|TS/SCI|ITAR).*?(workload|system|architecture)"
|
|
1728
|
+
]
|
|
1729
|
+
},
|
|
1730
|
+
"fileTriggers": {
|
|
1731
|
+
"pathPatterns": [
|
|
1732
|
+
"**/docs/architecture/**/*.md",
|
|
1733
|
+
"**/ADR/**/*.md",
|
|
1734
|
+
"**/adr/**/*.md",
|
|
1735
|
+
"**/architecture/**/*.md"
|
|
1736
|
+
],
|
|
1737
|
+
"contentPatterns": [
|
|
1738
|
+
"# ADR-",
|
|
1739
|
+
"Architecture Decision Record",
|
|
1740
|
+
"## Context",
|
|
1741
|
+
"## Decision",
|
|
1742
|
+
"## Consequences"
|
|
1743
|
+
]
|
|
1744
|
+
}
|
|
1745
|
+
},
|
|
1746
|
+
"documentation-as-code": {
|
|
1747
|
+
"type": "domain",
|
|
1748
|
+
"enforcement": "suggest",
|
|
1749
|
+
"priority": "high",
|
|
1750
|
+
"description": "Documentation as code covering technical writing, API documentation, diagrams, documentation sites, and automation",
|
|
1751
|
+
"promptTriggers": {
|
|
1752
|
+
"keywords": [
|
|
1753
|
+
"documentation",
|
|
1754
|
+
"docs",
|
|
1755
|
+
"README",
|
|
1756
|
+
"technical writing",
|
|
1757
|
+
"API documentation",
|
|
1758
|
+
"OpenAPI",
|
|
1759
|
+
"Swagger",
|
|
1760
|
+
"diagram",
|
|
1761
|
+
"PlantUML",
|
|
1762
|
+
"Mermaid",
|
|
1763
|
+
"Docusaurus",
|
|
1764
|
+
"MkDocs",
|
|
1765
|
+
"changelog",
|
|
1766
|
+
"docs site",
|
|
1767
|
+
"documentation automation",
|
|
1768
|
+
"document",
|
|
1769
|
+
"document our system",
|
|
1770
|
+
"need to document"
|
|
1771
|
+
],
|
|
1772
|
+
"intentPatterns": [
|
|
1773
|
+
"(create|write|update).*?(documentation|docs|README)",
|
|
1774
|
+
"(API|endpoint).*?(documentation|document)",
|
|
1775
|
+
"(diagram|architecture diagram).*?(create|generate)",
|
|
1776
|
+
"(docs site|documentation site).*?(setup|build|deploy)",
|
|
1777
|
+
"(technical writing|writing guide).*?(style|best practice)"
|
|
1778
|
+
]
|
|
1779
|
+
},
|
|
1780
|
+
"fileTriggers": {
|
|
1781
|
+
"pathPatterns": [
|
|
1782
|
+
"**/README.md",
|
|
1783
|
+
"**/docs/**/*.md",
|
|
1784
|
+
"**/openapi.yaml",
|
|
1785
|
+
"**/swagger.json",
|
|
1786
|
+
"**/*.puml",
|
|
1787
|
+
"**/docusaurus.config.js",
|
|
1788
|
+
"**/mkdocs.yml"
|
|
1789
|
+
],
|
|
1790
|
+
"contentPatterns": [
|
|
1791
|
+
"```mermaid",
|
|
1792
|
+
"@startuml",
|
|
1793
|
+
"openapi: 3",
|
|
1794
|
+
"# API Documentation"
|
|
1795
|
+
]
|
|
1796
|
+
}
|
|
1797
|
+
},
|
|
1798
|
+
"observability-engineering": {
|
|
1799
|
+
"type": "domain",
|
|
1800
|
+
"enforcement": "suggest",
|
|
1801
|
+
"priority": "high",
|
|
1802
|
+
"description": "Observability engineering covering distributed tracing, OpenTelemetry, APM tools, logs aggregation, and correlation strategies",
|
|
1803
|
+
"promptTriggers": {
|
|
1804
|
+
"keywords": [
|
|
1805
|
+
"observability",
|
|
1806
|
+
"distributed tracing",
|
|
1807
|
+
"tracing",
|
|
1808
|
+
"OpenTelemetry",
|
|
1809
|
+
"OTEL",
|
|
1810
|
+
"Jaeger",
|
|
1811
|
+
"Tempo",
|
|
1812
|
+
"Zipkin",
|
|
1813
|
+
"APM",
|
|
1814
|
+
"DataDog",
|
|
1815
|
+
"New Relic",
|
|
1816
|
+
"Dynatrace",
|
|
1817
|
+
"logs aggregation",
|
|
1818
|
+
"ELK",
|
|
1819
|
+
"Loki",
|
|
1820
|
+
"correlation",
|
|
1821
|
+
"trace ID",
|
|
1822
|
+
"span",
|
|
1823
|
+
"structured logging",
|
|
1824
|
+
"Sentry",
|
|
1825
|
+
"error tracking",
|
|
1826
|
+
"analytics",
|
|
1827
|
+
"engagement",
|
|
1828
|
+
"viewer",
|
|
1829
|
+
"predictive maintenance",
|
|
1830
|
+
"smart factory",
|
|
1831
|
+
"factory",
|
|
1832
|
+
"track",
|
|
1833
|
+
"track what's happening",
|
|
1834
|
+
"visibility",
|
|
1835
|
+
"better visibility",
|
|
1836
|
+
"root cause",
|
|
1837
|
+
"find the root cause",
|
|
1838
|
+
"failures",
|
|
1839
|
+
"dashboards",
|
|
1840
|
+
"dashboard",
|
|
1841
|
+
"metrics",
|
|
1842
|
+
"metric"
|
|
1843
|
+
],
|
|
1844
|
+
"intentPatterns": [
|
|
1845
|
+
"(distributed tracing|tracing).*?(implement|setup|configure)",
|
|
1846
|
+
"(OpenTelemetry|OTEL).*?(instrumentation|setup|collector)",
|
|
1847
|
+
"(APM|DataDog|New Relic).*?(setup|integrate|configure)",
|
|
1848
|
+
"(logs|logging).*?(aggregation|centralize|correlation)",
|
|
1849
|
+
"(observability|correlation).*?(strategy|implement|setup)"
|
|
1850
|
+
]
|
|
1851
|
+
},
|
|
1852
|
+
"fileTriggers": {
|
|
1853
|
+
"pathPatterns": [
|
|
1854
|
+
"**/otel-*.yaml",
|
|
1855
|
+
"**/otel-*.yml",
|
|
1856
|
+
"**/jaeger/**/*",
|
|
1857
|
+
"**/tempo/**/*",
|
|
1858
|
+
"**/loki/**/*",
|
|
1859
|
+
"**/instrumentation.ts",
|
|
1860
|
+
"**/tracing.ts"
|
|
1861
|
+
],
|
|
1862
|
+
"contentPatterns": [
|
|
1863
|
+
"OpenTelemetry",
|
|
1864
|
+
"tracer.startSpan",
|
|
1865
|
+
"@opentelemetry",
|
|
1866
|
+
"span.setAttribute",
|
|
1867
|
+
"trace.getTracer"
|
|
1868
|
+
]
|
|
1869
|
+
}
|
|
1870
|
+
},
|
|
1871
|
+
"database-engineering": {
|
|
1872
|
+
"type": "domain",
|
|
1873
|
+
"enforcement": "suggest",
|
|
1874
|
+
"priority": "high",
|
|
1875
|
+
"description": "Database engineering covering PostgreSQL/MySQL administration, query optimization, indexing, replication, and backup/recovery",
|
|
1876
|
+
"promptTriggers": {
|
|
1877
|
+
"keywords": [
|
|
1878
|
+
"database",
|
|
1879
|
+
"PostgreSQL",
|
|
1880
|
+
"MySQL",
|
|
1881
|
+
"query optimization",
|
|
1882
|
+
"EXPLAIN",
|
|
1883
|
+
"index",
|
|
1884
|
+
"indexing",
|
|
1885
|
+
"database replication",
|
|
1886
|
+
"pg_dump",
|
|
1887
|
+
"backup",
|
|
1888
|
+
"database administration",
|
|
1889
|
+
"database tuning",
|
|
1890
|
+
"slow query",
|
|
1891
|
+
"Redis",
|
|
1892
|
+
"caching",
|
|
1893
|
+
"cache",
|
|
1894
|
+
"medical imaging",
|
|
1895
|
+
"storage optimization",
|
|
1896
|
+
"imaging",
|
|
1897
|
+
"petabyte",
|
|
1898
|
+
"petabyte-scale",
|
|
1899
|
+
"analytics",
|
|
1900
|
+
"big data",
|
|
1901
|
+
"queries",
|
|
1902
|
+
"timing out",
|
|
1903
|
+
"timeout",
|
|
1904
|
+
"queries timing out"
|
|
1905
|
+
],
|
|
1906
|
+
"intentPatterns": [
|
|
1907
|
+
"(database|PostgreSQL|MySQL).*?(administration|admin|configure|optimize)",
|
|
1908
|
+
"(query|SQL).*?(optimization|optimize|slow|performance)",
|
|
1909
|
+
"(index|indexing).*?(create|strategy|design)",
|
|
1910
|
+
"(replication|replica).*?(setup|configure|streaming)",
|
|
1911
|
+
"(backup|restore|recovery).*?(database|pg_dump)"
|
|
1912
|
+
]
|
|
1913
|
+
},
|
|
1914
|
+
"fileTriggers": {
|
|
1915
|
+
"pathPatterns": [
|
|
1916
|
+
"**/postgresql.conf",
|
|
1917
|
+
"**/my.cnf",
|
|
1918
|
+
"**/*.sql",
|
|
1919
|
+
"**/migrations/**/*.sql",
|
|
1920
|
+
"**/backup*.sh"
|
|
1921
|
+
],
|
|
1922
|
+
"contentPatterns": [
|
|
1923
|
+
"CREATE INDEX",
|
|
1924
|
+
"EXPLAIN ANALYZE",
|
|
1925
|
+
"pg_dump",
|
|
1926
|
+
"max_connections",
|
|
1927
|
+
"shared_buffers"
|
|
1928
|
+
]
|
|
1929
|
+
}
|
|
1930
|
+
},
|
|
1931
|
+
"api-engineering": {
|
|
1932
|
+
"type": "domain",
|
|
1933
|
+
"enforcement": "suggest",
|
|
1934
|
+
"priority": "high",
|
|
1935
|
+
"description": "API engineering covering REST API design, GraphQL, API gateways, rate limiting, and versioning strategies",
|
|
1936
|
+
"promptTriggers": {
|
|
1937
|
+
"keywords": [
|
|
1938
|
+
"API design",
|
|
1939
|
+
"REST API",
|
|
1940
|
+
"RESTful",
|
|
1941
|
+
"GraphQL",
|
|
1942
|
+
"gRPC",
|
|
1943
|
+
"API gateway",
|
|
1944
|
+
"rate limiting",
|
|
1945
|
+
"API versioning",
|
|
1946
|
+
"API security",
|
|
1947
|
+
"OAuth2",
|
|
1948
|
+
"JWT",
|
|
1949
|
+
"Kong",
|
|
1950
|
+
"Ambassador",
|
|
1951
|
+
"Stripe",
|
|
1952
|
+
"payment",
|
|
1953
|
+
"payment gateway",
|
|
1954
|
+
"EHR",
|
|
1955
|
+
"HL7",
|
|
1956
|
+
"FHIR",
|
|
1957
|
+
"upload",
|
|
1958
|
+
"integration",
|
|
1959
|
+
"API needs work",
|
|
1960
|
+
"integrate",
|
|
1961
|
+
"can't integrate",
|
|
1962
|
+
"partners",
|
|
1963
|
+
"connect to partners"
|
|
1964
|
+
],
|
|
1965
|
+
"intentPatterns": [
|
|
1966
|
+
"(API|REST|GraphQL).*?(design|pattern|best practice)",
|
|
1967
|
+
"(rate limit|throttling).*?(implement|setup|configure)",
|
|
1968
|
+
"(API version|versioning).*?(strategy|implement)",
|
|
1969
|
+
"(API gateway|Kong|Ambassador).*?(setup|configure)",
|
|
1970
|
+
"(GraphQL|schema).*?(design|resolver|N\\+1)"
|
|
1971
|
+
]
|
|
1972
|
+
},
|
|
1973
|
+
"fileTriggers": {
|
|
1974
|
+
"pathPatterns": [
|
|
1975
|
+
"**/graphql/**/*.ts",
|
|
1976
|
+
"**/*.graphql",
|
|
1977
|
+
"**/schema.graphql",
|
|
1978
|
+
"**/resolvers/**/*.ts",
|
|
1979
|
+
"**/api/**/*gateway*"
|
|
1980
|
+
],
|
|
1981
|
+
"contentPatterns": [
|
|
1982
|
+
"type Query \\{",
|
|
1983
|
+
"type Mutation \\{",
|
|
1984
|
+
"graphql",
|
|
1985
|
+
"DataLoader",
|
|
1986
|
+
"rate-limit"
|
|
1987
|
+
]
|
|
1988
|
+
}
|
|
1989
|
+
},
|
|
1990
|
+
"engineering-management": {
|
|
1991
|
+
"type": "domain",
|
|
1992
|
+
"enforcement": "suggest",
|
|
1993
|
+
"priority": "high",
|
|
1994
|
+
"description": "Engineering management for people managers leading teams - team organization, hiring, career development, resource planning, interviews, and 1-on-1s",
|
|
1995
|
+
"promptTriggers": {
|
|
1996
|
+
"keywords": [
|
|
1997
|
+
"manager",
|
|
1998
|
+
"management",
|
|
1999
|
+
"engineering manager",
|
|
2000
|
+
"people manager",
|
|
2001
|
+
"team organization",
|
|
2002
|
+
"team structure",
|
|
2003
|
+
"hiring",
|
|
2004
|
+
"recruit",
|
|
2005
|
+
"recruiting",
|
|
2006
|
+
"interview",
|
|
2007
|
+
"interviewing",
|
|
2008
|
+
"candidate",
|
|
2009
|
+
"job description",
|
|
2010
|
+
"JD",
|
|
2011
|
+
"career ladder",
|
|
2012
|
+
"promotion",
|
|
2013
|
+
"performance review",
|
|
2014
|
+
"1-on-1",
|
|
2015
|
+
"one-on-one",
|
|
2016
|
+
"1:1",
|
|
2017
|
+
"direct report",
|
|
2018
|
+
"direct reports",
|
|
2019
|
+
"team lead",
|
|
2020
|
+
"tech lead",
|
|
2021
|
+
"span of control",
|
|
2022
|
+
"headcount",
|
|
2023
|
+
"resource planning",
|
|
2024
|
+
"capacity planning",
|
|
2025
|
+
"team capacity",
|
|
2026
|
+
"team velocity",
|
|
2027
|
+
"utilization",
|
|
2028
|
+
"burnout",
|
|
2029
|
+
"attrition",
|
|
2030
|
+
"retention",
|
|
2031
|
+
"org chart",
|
|
2032
|
+
"org structure",
|
|
2033
|
+
"reporting structure",
|
|
2034
|
+
"dotted line",
|
|
2035
|
+
"matrix organization",
|
|
2036
|
+
"cross-functional team",
|
|
2037
|
+
"platform team",
|
|
2038
|
+
"SRE team",
|
|
2039
|
+
"security team",
|
|
2040
|
+
"onboarding",
|
|
2041
|
+
"new hire",
|
|
2042
|
+
"ramp up",
|
|
2043
|
+
"mentorship",
|
|
2044
|
+
"mentor",
|
|
2045
|
+
"coaching",
|
|
2046
|
+
"feedback",
|
|
2047
|
+
"career development",
|
|
2048
|
+
"growth plan",
|
|
2049
|
+
"development plan",
|
|
2050
|
+
"skip level",
|
|
2051
|
+
"all hands",
|
|
2052
|
+
"team meeting",
|
|
2053
|
+
"retrospective",
|
|
2054
|
+
"sprint planning",
|
|
2055
|
+
"performance improvement",
|
|
2056
|
+
"PIP",
|
|
2057
|
+
"underperformer",
|
|
2058
|
+
"struggling engineer",
|
|
2059
|
+
"compensation",
|
|
2060
|
+
"salary",
|
|
2061
|
+
"equity",
|
|
2062
|
+
"offer",
|
|
2063
|
+
"counteroffer",
|
|
2064
|
+
"resignation",
|
|
2065
|
+
"exit interview",
|
|
2066
|
+
"team dynamics",
|
|
2067
|
+
"conflict",
|
|
2068
|
+
"morale",
|
|
2069
|
+
"engagement",
|
|
2070
|
+
"culture",
|
|
2071
|
+
"psychological safety",
|
|
2072
|
+
"how many engineers",
|
|
2073
|
+
"should I hire",
|
|
2074
|
+
"when to hire",
|
|
2075
|
+
"team size",
|
|
2076
|
+
"too many meetings",
|
|
2077
|
+
"manager schedule",
|
|
2078
|
+
"assess",
|
|
2079
|
+
"assessment",
|
|
2080
|
+
"skill assessment",
|
|
2081
|
+
"technical assessment",
|
|
2082
|
+
"conversation",
|
|
2083
|
+
"conversations",
|
|
2084
|
+
"career conversations",
|
|
2085
|
+
"overloaded",
|
|
2086
|
+
"overload",
|
|
2087
|
+
"allocate",
|
|
2088
|
+
"allocation",
|
|
2089
|
+
"resource allocation",
|
|
2090
|
+
"embed",
|
|
2091
|
+
"embedded"
|
|
2092
|
+
],
|
|
2093
|
+
"intentPatterns": [
|
|
2094
|
+
"(hire|hiring|recruit).*?(engineer|developer|IC)",
|
|
2095
|
+
"(team|org).*?(structure|organization|size|composition)",
|
|
2096
|
+
"(1-on-1|one-on-one|1:1).*?(guide|template|questions)",
|
|
2097
|
+
"(career|promotion|growth).*?(ladder|path|development)",
|
|
2098
|
+
"(capacity|resource).*?(planning|allocation)",
|
|
2099
|
+
"(interview|candidate).*?(question|assess|evaluate)",
|
|
2100
|
+
"(performance|feedback).*?(review|conversation|issue)",
|
|
2101
|
+
"(onboarding|new hire).*?(process|plan|ramp)",
|
|
2102
|
+
"(burnout|attrition|retention).*?(problem|concern|risk)",
|
|
2103
|
+
"(conflict|morale|culture).*?(team|engineer)"
|
|
2104
|
+
]
|
|
2105
|
+
},
|
|
2106
|
+
"fileTriggers": {
|
|
2107
|
+
"pathPatterns": [
|
|
2108
|
+
"**/team-*.md",
|
|
2109
|
+
"**/org-*.md",
|
|
2110
|
+
"**/hiring-*.md",
|
|
2111
|
+
"**/career-*.md",
|
|
2112
|
+
"**/1-on-1-*.md",
|
|
2113
|
+
"**/onboarding-*.md"
|
|
2114
|
+
],
|
|
2115
|
+
"contentPatterns": [
|
|
2116
|
+
"career ladder",
|
|
2117
|
+
"promotion criteria",
|
|
2118
|
+
"interview questions",
|
|
2119
|
+
"1-on-1 agenda",
|
|
2120
|
+
"team structure"
|
|
2121
|
+
]
|
|
2122
|
+
}
|
|
2123
|
+
},
|
|
2124
|
+
"technical-leadership": {
|
|
2125
|
+
"type": "domain",
|
|
2126
|
+
"enforcement": "suggest",
|
|
2127
|
+
"priority": "high",
|
|
2128
|
+
"description": "Technical leadership for managers - architecture review, evaluating proposals, risk assessment, tech debt prioritization, and making technical decisions",
|
|
2129
|
+
"promptTriggers": {
|
|
2130
|
+
"keywords": [
|
|
2131
|
+
"technical leadership",
|
|
2132
|
+
"tech leadership",
|
|
2133
|
+
"architecture review",
|
|
2134
|
+
"architecture decision",
|
|
2135
|
+
"ADR",
|
|
2136
|
+
"technical proposal",
|
|
2137
|
+
"proposal",
|
|
2138
|
+
"design review",
|
|
2139
|
+
"design doc",
|
|
2140
|
+
"RFC",
|
|
2141
|
+
"Request for Comments",
|
|
2142
|
+
"technical decision",
|
|
2143
|
+
"trade-off",
|
|
2144
|
+
"tradeoffs",
|
|
2145
|
+
"risk assessment",
|
|
2146
|
+
"technical risk",
|
|
2147
|
+
"tech debt",
|
|
2148
|
+
"technical debt",
|
|
2149
|
+
"tech debt prioritization",
|
|
2150
|
+
"over-engineering",
|
|
2151
|
+
"under-engineering",
|
|
2152
|
+
"resume-driven development",
|
|
2153
|
+
"gold plating",
|
|
2154
|
+
"scope creep",
|
|
2155
|
+
"analysis paralysis",
|
|
2156
|
+
"not invented here",
|
|
2157
|
+
"NIH syndrome",
|
|
2158
|
+
"push back",
|
|
2159
|
+
"pushback",
|
|
2160
|
+
"say no",
|
|
2161
|
+
"question the team",
|
|
2162
|
+
"challenge the team",
|
|
2163
|
+
"evaluate proposal",
|
|
2164
|
+
"review proposal",
|
|
2165
|
+
"technical strategy",
|
|
2166
|
+
"architecture strategy",
|
|
2167
|
+
"system design review",
|
|
2168
|
+
"complexity risk",
|
|
2169
|
+
"operational risk",
|
|
2170
|
+
"scale risk",
|
|
2171
|
+
"people risk",
|
|
2172
|
+
"technology risk",
|
|
2173
|
+
"should we build",
|
|
2174
|
+
"should we use",
|
|
2175
|
+
"which technology",
|
|
2176
|
+
"technology choice",
|
|
2177
|
+
"technology selection",
|
|
2178
|
+
"framework",
|
|
2179
|
+
"framework choice",
|
|
2180
|
+
"library",
|
|
2181
|
+
"library choice",
|
|
2182
|
+
"vendor",
|
|
2183
|
+
"vendor choice",
|
|
2184
|
+
"technical direction",
|
|
2185
|
+
"architecture pattern",
|
|
2186
|
+
"design pattern",
|
|
2187
|
+
"when to refactor",
|
|
2188
|
+
"refactoring priority",
|
|
2189
|
+
"technical excellence",
|
|
2190
|
+
"code quality",
|
|
2191
|
+
"quality vs speed",
|
|
2192
|
+
"balance quality",
|
|
2193
|
+
"technical standards",
|
|
2194
|
+
"coding standards",
|
|
2195
|
+
"best practices",
|
|
2196
|
+
"technical review",
|
|
2197
|
+
"code review",
|
|
2198
|
+
"design principles",
|
|
2199
|
+
"SOLID",
|
|
2200
|
+
"DRY",
|
|
2201
|
+
"YAGNI",
|
|
2202
|
+
"non-technical manager",
|
|
2203
|
+
"technical background",
|
|
2204
|
+
"understanding technical",
|
|
2205
|
+
"technical enough",
|
|
2206
|
+
"not technical",
|
|
2207
|
+
"technical discussions",
|
|
2208
|
+
"ask engineers",
|
|
2209
|
+
"questions for engineers",
|
|
2210
|
+
"what to ask",
|
|
2211
|
+
"how to evaluate",
|
|
2212
|
+
"decision framework",
|
|
2213
|
+
"criteria",
|
|
2214
|
+
"evaluation criteria",
|
|
2215
|
+
"microservices",
|
|
2216
|
+
"microservices architecture",
|
|
2217
|
+
"event-driven",
|
|
2218
|
+
"event-driven architecture",
|
|
2219
|
+
"adopt",
|
|
2220
|
+
"over-engineered",
|
|
2221
|
+
"rewrite",
|
|
2222
|
+
"Rust",
|
|
2223
|
+
"solving",
|
|
2224
|
+
"right problem",
|
|
2225
|
+
"problem validation",
|
|
2226
|
+
"GraphQL",
|
|
2227
|
+
"REST",
|
|
2228
|
+
"instead",
|
|
2229
|
+
"simplest",
|
|
2230
|
+
"solution",
|
|
2231
|
+
"simplest solution",
|
|
2232
|
+
"one-pager",
|
|
2233
|
+
"submitted",
|
|
2234
|
+
"approval",
|
|
2235
|
+
"good proposal",
|
|
2236
|
+
"good",
|
|
2237
|
+
"know",
|
|
2238
|
+
"questions",
|
|
2239
|
+
"ask",
|
|
2240
|
+
"design",
|
|
2241
|
+
"alternatives",
|
|
2242
|
+
"considered",
|
|
2243
|
+
"alternatives considered",
|
|
2244
|
+
"scope",
|
|
2245
|
+
"creeping",
|
|
2246
|
+
"scope creep",
|
|
2247
|
+
"blockchain",
|
|
2248
|
+
"need",
|
|
2249
|
+
"seems",
|
|
2250
|
+
"complex",
|
|
2251
|
+
"complexity",
|
|
2252
|
+
"scale",
|
|
2253
|
+
"1M users",
|
|
2254
|
+
"million users",
|
|
2255
|
+
"maintain",
|
|
2256
|
+
"maintenance",
|
|
2257
|
+
"expert",
|
|
2258
|
+
"leaves",
|
|
2259
|
+
"bus factor",
|
|
2260
|
+
"support",
|
|
2261
|
+
"production",
|
|
2262
|
+
"support production",
|
|
2263
|
+
"happens",
|
|
2264
|
+
"fails",
|
|
2265
|
+
"failure",
|
|
2266
|
+
"failure scenarios",
|
|
2267
|
+
"realistic",
|
|
2268
|
+
"timeline",
|
|
2269
|
+
"realistic timeline",
|
|
2270
|
+
"right skills",
|
|
2271
|
+
"capabilities",
|
|
2272
|
+
"team capabilities",
|
|
2273
|
+
"pay down debt",
|
|
2274
|
+
"build features",
|
|
2275
|
+
"debt vs features",
|
|
2276
|
+
"stop features",
|
|
2277
|
+
"freeze",
|
|
2278
|
+
"fix",
|
|
2279
|
+
"CQRS",
|
|
2280
|
+
"event sourcing",
|
|
2281
|
+
"monolith",
|
|
2282
|
+
"split",
|
|
2283
|
+
"splitting",
|
|
2284
|
+
"abstraction",
|
|
2285
|
+
"premature",
|
|
2286
|
+
"refactoring",
|
|
2287
|
+
"sprints",
|
|
2288
|
+
"code coverage",
|
|
2289
|
+
"enforce",
|
|
2290
|
+
"module",
|
|
2291
|
+
"worth",
|
|
2292
|
+
"bugs",
|
|
2293
|
+
"prioritize",
|
|
2294
|
+
"tests",
|
|
2295
|
+
"ship",
|
|
2296
|
+
"stubborn",
|
|
2297
|
+
"override",
|
|
2298
|
+
"insists",
|
|
2299
|
+
"new technology",
|
|
2300
|
+
"approve",
|
|
2301
|
+
"document",
|
|
2302
|
+
"Kafka",
|
|
2303
|
+
"for everything",
|
|
2304
|
+
"wants to add",
|
|
2305
|
+
"feels",
|
|
2306
|
+
"approach",
|
|
2307
|
+
"too many",
|
|
2308
|
+
"external",
|
|
2309
|
+
"dependencies",
|
|
2310
|
+
"what if",
|
|
2311
|
+
"spikes",
|
|
2312
|
+
"100x"
|
|
2313
|
+
],
|
|
2314
|
+
"intentPatterns": [
|
|
2315
|
+
"(architecture|design).*?(review|evaluate|assess)",
|
|
2316
|
+
"(technical|tech).*?(decision|proposal|RFC)",
|
|
2317
|
+
"(risk|complexity|operational).*?(assess|assessment|evaluate)",
|
|
2318
|
+
"(tech debt|technical debt).*?(prioritize|priority|when)",
|
|
2319
|
+
"(push back|pushback|say no|challenge).*?(technical|engineering|team)",
|
|
2320
|
+
"(trade-off|tradeoff).*?(evaluate|analyze|assess)",
|
|
2321
|
+
"(over-engineer|under-engineer|gold plating).*?(avoid|prevent|identify)",
|
|
2322
|
+
"(evaluate|assess|review).*?(proposal|design|architecture)",
|
|
2323
|
+
"(build vs buy|make vs buy).*?(decide|decision|evaluate)",
|
|
2324
|
+
"(technology|framework|library|vendor).*?(choice|select|decision)",
|
|
2325
|
+
"(question|questions).*?(ask|technical|team|engineer)",
|
|
2326
|
+
"(non-technical|not technical).*?(manager|leader|understand)"
|
|
2327
|
+
]
|
|
2328
|
+
},
|
|
2329
|
+
"fileTriggers": {
|
|
2330
|
+
"pathPatterns": [
|
|
2331
|
+
"**/proposals/**/*.md",
|
|
2332
|
+
"**/rfcs/**/*.md",
|
|
2333
|
+
"**/design-docs/**/*.md",
|
|
2334
|
+
"**/technical-*.md",
|
|
2335
|
+
"**/architecture-review-*.md"
|
|
2336
|
+
],
|
|
2337
|
+
"contentPatterns": [
|
|
2338
|
+
"# Proposal",
|
|
2339
|
+
"# RFC",
|
|
2340
|
+
"# Technical Decision",
|
|
2341
|
+
"## Trade-offs",
|
|
2342
|
+
"## Alternatives Considered"
|
|
2343
|
+
]
|
|
2344
|
+
}
|
|
2345
|
+
},
|
|
2346
|
+
"infrastructure-strategy": {
|
|
2347
|
+
"type": "domain",
|
|
2348
|
+
"enforcement": "suggest",
|
|
2349
|
+
"priority": "high",
|
|
2350
|
+
"description": "Infrastructure strategy for leaders - cloud strategy, build vs buy, platform ROI, multi-year roadmapping, technology radar, and migration planning",
|
|
2351
|
+
"promptTriggers": {
|
|
2352
|
+
"keywords": [
|
|
2353
|
+
"infrastructure strategy",
|
|
2354
|
+
"platform strategy",
|
|
2355
|
+
"cloud strategy",
|
|
2356
|
+
"technology strategy",
|
|
2357
|
+
"strategic planning",
|
|
2358
|
+
"multi-year plan",
|
|
2359
|
+
"roadmap",
|
|
2360
|
+
"infrastructure roadmap",
|
|
2361
|
+
"platform roadmap",
|
|
2362
|
+
"technology roadmap",
|
|
2363
|
+
"build vs buy",
|
|
2364
|
+
"make vs buy",
|
|
2365
|
+
"buy vs build",
|
|
2366
|
+
"build or buy",
|
|
2367
|
+
"vendor selection",
|
|
2368
|
+
"vendor evaluation",
|
|
2369
|
+
"tool selection",
|
|
2370
|
+
"platform investment",
|
|
2371
|
+
"platform ROI",
|
|
2372
|
+
"infrastructure ROI",
|
|
2373
|
+
"return on investment",
|
|
2374
|
+
"cost benefit",
|
|
2375
|
+
"business case",
|
|
2376
|
+
"justify investment",
|
|
2377
|
+
"justify cost",
|
|
2378
|
+
"technology radar",
|
|
2379
|
+
"tech radar",
|
|
2380
|
+
"technology adoption",
|
|
2381
|
+
"adopt technology",
|
|
2382
|
+
"trial technology",
|
|
2383
|
+
"assess technology",
|
|
2384
|
+
"hold technology",
|
|
2385
|
+
"migration planning",
|
|
2386
|
+
"migration strategy",
|
|
2387
|
+
"cloud migration",
|
|
2388
|
+
"cloud migration plan",
|
|
2389
|
+
"multi-cloud strategy",
|
|
2390
|
+
"single cloud",
|
|
2391
|
+
"cloud provider",
|
|
2392
|
+
"which cloud",
|
|
2393
|
+
"AWS vs Azure",
|
|
2394
|
+
"Azure vs GCP",
|
|
2395
|
+
"vendor lock-in",
|
|
2396
|
+
"lock-in",
|
|
2397
|
+
"avoid lock-in",
|
|
2398
|
+
"multi-cloud",
|
|
2399
|
+
"hybrid cloud",
|
|
2400
|
+
"modernization",
|
|
2401
|
+
"modernization plan",
|
|
2402
|
+
"legacy migration",
|
|
2403
|
+
"monolith to microservices",
|
|
2404
|
+
"re-architecture",
|
|
2405
|
+
"platform maturity",
|
|
2406
|
+
"maturity model",
|
|
2407
|
+
"strategic initiative",
|
|
2408
|
+
"strategic priorities",
|
|
2409
|
+
"long-term plan",
|
|
2410
|
+
"3-year plan",
|
|
2411
|
+
"5-year plan",
|
|
2412
|
+
"investment priorities",
|
|
2413
|
+
"70-20-10",
|
|
2414
|
+
"innovation time",
|
|
2415
|
+
"innovation budget",
|
|
2416
|
+
"platform team investment",
|
|
2417
|
+
"developer productivity",
|
|
2418
|
+
"productivity investment",
|
|
2419
|
+
"technical vision",
|
|
2420
|
+
"infrastructure vision",
|
|
2421
|
+
"platform vision",
|
|
2422
|
+
"north star",
|
|
2423
|
+
"strategic goals",
|
|
2424
|
+
"OKR",
|
|
2425
|
+
"objectives",
|
|
2426
|
+
"key results",
|
|
2427
|
+
"strategic objectives",
|
|
2428
|
+
"TCO",
|
|
2429
|
+
"total cost of ownership",
|
|
2430
|
+
"cost analysis",
|
|
2431
|
+
"payback period",
|
|
2432
|
+
"NPV",
|
|
2433
|
+
"net present value",
|
|
2434
|
+
"efficiency gains",
|
|
2435
|
+
"productivity gains",
|
|
2436
|
+
"time to market",
|
|
2437
|
+
"developer experience",
|
|
2438
|
+
"DX",
|
|
2439
|
+
"platform adoption",
|
|
2440
|
+
"self-service",
|
|
2441
|
+
"automation ROI",
|
|
2442
|
+
"tooling investment",
|
|
2443
|
+
"observability investment",
|
|
2444
|
+
"security investment",
|
|
2445
|
+
"should we invest",
|
|
2446
|
+
"worth investing",
|
|
2447
|
+
"prioritize investment",
|
|
2448
|
+
"executive decision",
|
|
2449
|
+
"CTO decision",
|
|
2450
|
+
"CTO",
|
|
2451
|
+
"VP decision",
|
|
2452
|
+
"VP",
|
|
2453
|
+
"CFO",
|
|
2454
|
+
"executive",
|
|
2455
|
+
"leadership decision",
|
|
2456
|
+
"strategic trade-off",
|
|
2457
|
+
"presenting to leadership",
|
|
2458
|
+
"presenting to executives",
|
|
2459
|
+
"GCP",
|
|
2460
|
+
"ML",
|
|
2461
|
+
"workloads",
|
|
2462
|
+
"ML workloads",
|
|
2463
|
+
"machine learning",
|
|
2464
|
+
"Oracle Cloud",
|
|
2465
|
+
"database",
|
|
2466
|
+
"multiple regions",
|
|
2467
|
+
"regions",
|
|
2468
|
+
"Auth0",
|
|
2469
|
+
"authentication",
|
|
2470
|
+
"building",
|
|
2471
|
+
"own",
|
|
2472
|
+
"own auth",
|
|
2473
|
+
"Heroku",
|
|
2474
|
+
"internal platform",
|
|
2475
|
+
"hidden costs",
|
|
2476
|
+
"in-house",
|
|
2477
|
+
"vendor licensing",
|
|
2478
|
+
"engineer time",
|
|
2479
|
+
"licensing",
|
|
2480
|
+
"managed Kubernetes",
|
|
2481
|
+
"managed",
|
|
2482
|
+
"Buy DataDog",
|
|
2483
|
+
"build own monitoring",
|
|
2484
|
+
"finance",
|
|
2485
|
+
"observability",
|
|
2486
|
+
"tooling",
|
|
2487
|
+
"observability tooling",
|
|
2488
|
+
"measure",
|
|
2489
|
+
"infrastructure value",
|
|
2490
|
+
"value",
|
|
2491
|
+
"priority",
|
|
2492
|
+
"security",
|
|
2493
|
+
"features",
|
|
2494
|
+
"security investment",
|
|
2495
|
+
"hold",
|
|
2496
|
+
"tech",
|
|
2497
|
+
"commitment",
|
|
2498
|
+
"all-in",
|
|
2499
|
+
"GovCloud",
|
|
2500
|
+
"government contract",
|
|
2501
|
+
"on-premises",
|
|
2502
|
+
"stay",
|
|
2503
|
+
"compute",
|
|
2504
|
+
"cloud-native",
|
|
2505
|
+
"payment",
|
|
2506
|
+
"Stripe",
|
|
2507
|
+
"APM",
|
|
2508
|
+
"open source",
|
|
2509
|
+
"OSS",
|
|
2510
|
+
"service mesh",
|
|
2511
|
+
"Istio",
|
|
2512
|
+
"Terraform Cloud",
|
|
2513
|
+
"Kubernetes migration",
|
|
2514
|
+
"break-even",
|
|
2515
|
+
"opportunity cost",
|
|
2516
|
+
"quarterly",
|
|
2517
|
+
"priorities",
|
|
2518
|
+
"innovation",
|
|
2519
|
+
"stability",
|
|
2520
|
+
"balance",
|
|
2521
|
+
"do we need",
|
|
2522
|
+
"disaster",
|
|
2523
|
+
"another",
|
|
2524
|
+
"another cloud",
|
|
2525
|
+
"serverless",
|
|
2526
|
+
"container",
|
|
2527
|
+
"vs",
|
|
2528
|
+
"moving",
|
|
2529
|
+
"from",
|
|
2530
|
+
"moving from",
|
|
2531
|
+
"difference",
|
|
2532
|
+
"between",
|
|
2533
|
+
"between clouds",
|
|
2534
|
+
"calculation",
|
|
2535
|
+
"cost per",
|
|
2536
|
+
"per",
|
|
2537
|
+
"per developer",
|
|
2538
|
+
"improvement",
|
|
2539
|
+
"improvement metrics"
|
|
2540
|
+
],
|
|
2541
|
+
"intentPatterns": [
|
|
2542
|
+
"(infrastructure|platform|cloud).*?(strategy|strategic|vision)",
|
|
2543
|
+
"(build vs buy|make vs buy).*?(decision|evaluate|analysis)",
|
|
2544
|
+
"(ROI|return on investment|cost benefit).*?(platform|infrastructure|tool)",
|
|
2545
|
+
"(roadmap|multi-year|long-term).*?(plan|planning|strategy)",
|
|
2546
|
+
"(technology radar|tech radar).*?(adopt|trial|assess|hold)",
|
|
2547
|
+
"(migration|modernization).*?(plan|planning|strategy)",
|
|
2548
|
+
"(cloud|multi-cloud|vendor).*?(strategy|selection|decision)",
|
|
2549
|
+
"(vendor lock-in|lock-in).*?(avoid|prevent|concern)",
|
|
2550
|
+
"(justify|business case).*?(investment|cost|platform)",
|
|
2551
|
+
"(executive|CTO|VP|leadership).*?(decision|strategy|planning)"
|
|
2552
|
+
]
|
|
2553
|
+
},
|
|
2554
|
+
"fileTriggers": {
|
|
2555
|
+
"pathPatterns": [
|
|
2556
|
+
"**/strategy/**/*.md",
|
|
2557
|
+
"**/roadmap/**/*.md",
|
|
2558
|
+
"**/platform-strategy-*.md",
|
|
2559
|
+
"**/cloud-strategy-*.md",
|
|
2560
|
+
"**/technology-radar.md"
|
|
2561
|
+
],
|
|
2562
|
+
"contentPatterns": [
|
|
2563
|
+
"# Strategy",
|
|
2564
|
+
"# Roadmap",
|
|
2565
|
+
"## Strategic Objectives",
|
|
2566
|
+
"## Technology Radar",
|
|
2567
|
+
"## Build vs Buy"
|
|
2568
|
+
]
|
|
2569
|
+
}
|
|
2570
|
+
},
|
|
2571
|
+
"engineering-operations-management": {
|
|
2572
|
+
"type": "domain",
|
|
2573
|
+
"enforcement": "suggest",
|
|
2574
|
+
"priority": "high",
|
|
2575
|
+
"description": "Engineering operations management for managers - on-call management, incident reviews, SLO negotiation, metrics, and sustainable operations culture",
|
|
2576
|
+
"promptTriggers": {
|
|
2577
|
+
"keywords": [
|
|
2578
|
+
"on-call",
|
|
2579
|
+
"oncall",
|
|
2580
|
+
"on call",
|
|
2581
|
+
"on-call rotation",
|
|
2582
|
+
"on-call schedule",
|
|
2583
|
+
"on-call compensation",
|
|
2584
|
+
"on-call pay",
|
|
2585
|
+
"on-call stipend",
|
|
2586
|
+
"pager duty",
|
|
2587
|
+
"PagerDuty",
|
|
2588
|
+
"paged",
|
|
2589
|
+
"pages",
|
|
2590
|
+
"page volume",
|
|
2591
|
+
"after hours",
|
|
2592
|
+
"weekend coverage",
|
|
2593
|
+
"follow the sun",
|
|
2594
|
+
"tiered escalation",
|
|
2595
|
+
"primary on-call",
|
|
2596
|
+
"secondary on-call",
|
|
2597
|
+
"on-call burnout",
|
|
2598
|
+
"burnout prevention",
|
|
2599
|
+
"sustainable on-call",
|
|
2600
|
+
"comp time",
|
|
2601
|
+
"compensatory time",
|
|
2602
|
+
"incident management",
|
|
2603
|
+
"incident response",
|
|
2604
|
+
"incident review",
|
|
2605
|
+
"postmortem",
|
|
2606
|
+
"post-mortem",
|
|
2607
|
+
"blameless",
|
|
2608
|
+
"blameless postmortem",
|
|
2609
|
+
"blameless culture",
|
|
2610
|
+
"incident severity",
|
|
2611
|
+
"Sev 1",
|
|
2612
|
+
"Sev 2",
|
|
2613
|
+
"Sev 3",
|
|
2614
|
+
"severity levels",
|
|
2615
|
+
"action items",
|
|
2616
|
+
"postmortem action items",
|
|
2617
|
+
"lessons learned",
|
|
2618
|
+
"root cause",
|
|
2619
|
+
"root cause analysis",
|
|
2620
|
+
"5 whys",
|
|
2621
|
+
"what went well",
|
|
2622
|
+
"what went poorly",
|
|
2623
|
+
"SLO negotiation",
|
|
2624
|
+
"SLO",
|
|
2625
|
+
"SLI",
|
|
2626
|
+
"SLA",
|
|
2627
|
+
"service level objective",
|
|
2628
|
+
"error budget",
|
|
2629
|
+
"error budget policy",
|
|
2630
|
+
"SLO compliance",
|
|
2631
|
+
"availability target",
|
|
2632
|
+
"reliability target",
|
|
2633
|
+
"SLO setting",
|
|
2634
|
+
"negotiate SLO",
|
|
2635
|
+
"product vs SRE",
|
|
2636
|
+
"features vs reliability",
|
|
2637
|
+
"feature freeze",
|
|
2638
|
+
"reliability work",
|
|
2639
|
+
"operational excellence",
|
|
2640
|
+
"toil",
|
|
2641
|
+
"toil reduction",
|
|
2642
|
+
"toil percentage",
|
|
2643
|
+
"manual work",
|
|
2644
|
+
"operational load",
|
|
2645
|
+
"operational burden",
|
|
2646
|
+
"engineering metrics",
|
|
2647
|
+
"DORA metrics",
|
|
2648
|
+
"deployment frequency",
|
|
2649
|
+
"lead time",
|
|
2650
|
+
"MTTR",
|
|
2651
|
+
"mean time to recovery",
|
|
2652
|
+
"change failure rate",
|
|
2653
|
+
"metrics that matter",
|
|
2654
|
+
"vanity metrics",
|
|
2655
|
+
"lines of code",
|
|
2656
|
+
"commits",
|
|
2657
|
+
"velocity",
|
|
2658
|
+
"story points",
|
|
2659
|
+
"team health",
|
|
2660
|
+
"engineer satisfaction",
|
|
2661
|
+
"retention rate",
|
|
2662
|
+
"productivity metrics",
|
|
2663
|
+
"operational metrics",
|
|
2664
|
+
"balance features",
|
|
2665
|
+
"balance reliability",
|
|
2666
|
+
"70-20-10",
|
|
2667
|
+
"capacity allocation",
|
|
2668
|
+
"feature work vs ops",
|
|
2669
|
+
"tech debt allocation",
|
|
2670
|
+
"innovation time",
|
|
2671
|
+
"operations culture",
|
|
2672
|
+
"SRE culture",
|
|
2673
|
+
"sustainable operations",
|
|
2674
|
+
"automate toil",
|
|
2675
|
+
"blameless postmortems",
|
|
2676
|
+
"continuous improvement",
|
|
2677
|
+
"operational wins",
|
|
2678
|
+
"celebrate ops",
|
|
2679
|
+
"during incidents",
|
|
2680
|
+
"incident commander",
|
|
2681
|
+
"escalation policy",
|
|
2682
|
+
"runbook",
|
|
2683
|
+
"playbook",
|
|
2684
|
+
"follow-the-sun",
|
|
2685
|
+
"primary",
|
|
2686
|
+
"secondary",
|
|
2687
|
+
"take over",
|
|
2688
|
+
"takeover",
|
|
2689
|
+
"take over incident",
|
|
2690
|
+
"99.9%",
|
|
2691
|
+
"99.99%",
|
|
2692
|
+
"availability",
|
|
2693
|
+
"freeze features",
|
|
2694
|
+
"productivity",
|
|
2695
|
+
"after-hours",
|
|
2696
|
+
"compensation model",
|
|
2697
|
+
"blamed",
|
|
2698
|
+
"communication plan",
|
|
2699
|
+
"learning",
|
|
2700
|
+
"trends",
|
|
2701
|
+
"tracking",
|
|
2702
|
+
"retrospective",
|
|
2703
|
+
"format",
|
|
2704
|
+
"executive",
|
|
2705
|
+
"updates",
|
|
2706
|
+
"automation",
|
|
2707
|
+
"hero",
|
|
2708
|
+
"prevent",
|
|
2709
|
+
"what to do",
|
|
2710
|
+
"to do",
|
|
2711
|
+
"building",
|
|
2712
|
+
"ops",
|
|
2713
|
+
"ops culture"
|
|
2714
|
+
],
|
|
2715
|
+
"intentPatterns": [
|
|
2716
|
+
"(on-call|oncall).*?(rotation|schedule|compensation|management)",
|
|
2717
|
+
"(burnout|sustainable).*?(on-call|operations|team)",
|
|
2718
|
+
"(incident|postmortem|post-mortem).*?(review|management|blameless)",
|
|
2719
|
+
"(SLO|SLI|error budget).*?(negotiat|set|define|compliance)",
|
|
2720
|
+
"(features vs reliability|product vs SRE).*?(balance|negotiate)",
|
|
2721
|
+
"(DORA|metrics|measurement).*?(track|measure|improve)",
|
|
2722
|
+
"(toil|operational|manual).*?(reduce|automat|percentage)",
|
|
2723
|
+
"(operations culture|SRE culture|blameless).*?(build|create|improve)",
|
|
2724
|
+
"(capacity|allocation).*?(features|reliability|ops|tech debt)"
|
|
2725
|
+
]
|
|
2726
|
+
},
|
|
2727
|
+
"fileTriggers": {
|
|
2728
|
+
"pathPatterns": [
|
|
2729
|
+
"**/on-call-*.md",
|
|
2730
|
+
"**/incident-*.md",
|
|
2731
|
+
"**/postmortem-*.md",
|
|
2732
|
+
"**/slo-*.md",
|
|
2733
|
+
"**/runbook-*.md",
|
|
2734
|
+
"**/playbook-*.md"
|
|
2735
|
+
],
|
|
2736
|
+
"contentPatterns": [
|
|
2737
|
+
"# Postmortem",
|
|
2738
|
+
"# Incident",
|
|
2739
|
+
"## Root Cause",
|
|
2740
|
+
"## Action Items",
|
|
2741
|
+
"on-call rotation",
|
|
2742
|
+
"SLO:"
|
|
2743
|
+
]
|
|
2744
|
+
}
|
|
2745
|
+
},
|
|
2746
|
+
"budget-and-cost-management": {
|
|
2747
|
+
"type": "domain",
|
|
2748
|
+
"enforcement": "suggest",
|
|
2749
|
+
"priority": "high",
|
|
2750
|
+
"description": "Budget and cost management for managers - infrastructure budgeting, cloud cost governance, cost allocation, FinOps, and ROI frameworks",
|
|
2751
|
+
"promptTriggers": {
|
|
2752
|
+
"keywords": [
|
|
2753
|
+
"budget",
|
|
2754
|
+
"budgeting",
|
|
2755
|
+
"infrastructure budget",
|
|
2756
|
+
"cloud budget",
|
|
2757
|
+
"annual budget",
|
|
2758
|
+
"quarterly budget",
|
|
2759
|
+
"budget planning",
|
|
2760
|
+
"budget request",
|
|
2761
|
+
"budget approval",
|
|
2762
|
+
"budget cut",
|
|
2763
|
+
"reduce budget",
|
|
2764
|
+
"cost",
|
|
2765
|
+
"costs",
|
|
2766
|
+
"cloud cost",
|
|
2767
|
+
"infrastructure cost",
|
|
2768
|
+
"AWS cost",
|
|
2769
|
+
"Azure cost",
|
|
2770
|
+
"GCP cost",
|
|
2771
|
+
"cloud bill",
|
|
2772
|
+
"cloud spend",
|
|
2773
|
+
"cloud spending",
|
|
2774
|
+
"cost optimization",
|
|
2775
|
+
"cost reduction",
|
|
2776
|
+
"cost savings",
|
|
2777
|
+
"cost allocation",
|
|
2778
|
+
"cost tagging",
|
|
2779
|
+
"showback",
|
|
2780
|
+
"chargeback",
|
|
2781
|
+
"cost transparency",
|
|
2782
|
+
"cost visibility",
|
|
2783
|
+
"cost by team",
|
|
2784
|
+
"cost center",
|
|
2785
|
+
"FinOps",
|
|
2786
|
+
"financial operations",
|
|
2787
|
+
"cloud financial management",
|
|
2788
|
+
"cost governance",
|
|
2789
|
+
"cost policy",
|
|
2790
|
+
"cost anomaly",
|
|
2791
|
+
"cost spike",
|
|
2792
|
+
"cost alert",
|
|
2793
|
+
"cost monitoring",
|
|
2794
|
+
"cost review",
|
|
2795
|
+
"monthly cost review",
|
|
2796
|
+
"cost report",
|
|
2797
|
+
"reserved instance",
|
|
2798
|
+
"RI",
|
|
2799
|
+
"savings plan",
|
|
2800
|
+
"commitment",
|
|
2801
|
+
"cost commitment",
|
|
2802
|
+
"spot instances",
|
|
2803
|
+
"right-sizing",
|
|
2804
|
+
"rightsizing",
|
|
2805
|
+
"idle resources",
|
|
2806
|
+
"unused resources",
|
|
2807
|
+
"cost efficiency",
|
|
2808
|
+
"cost per user",
|
|
2809
|
+
"cost per transaction",
|
|
2810
|
+
"unit economics",
|
|
2811
|
+
"cost as percent of revenue",
|
|
2812
|
+
"infrastructure ROI",
|
|
2813
|
+
"platform ROI",
|
|
2814
|
+
"return on investment",
|
|
2815
|
+
"payback period",
|
|
2816
|
+
"NPV",
|
|
2817
|
+
"net present value",
|
|
2818
|
+
"TCO",
|
|
2819
|
+
"total cost of ownership",
|
|
2820
|
+
"build vs buy cost",
|
|
2821
|
+
"cost benefit analysis",
|
|
2822
|
+
"cost comparison",
|
|
2823
|
+
"business case",
|
|
2824
|
+
"justify cost",
|
|
2825
|
+
"justify budget",
|
|
2826
|
+
"budget negotiation",
|
|
2827
|
+
"negotiate budget",
|
|
2828
|
+
"defend budget",
|
|
2829
|
+
"finance",
|
|
2830
|
+
"CFO",
|
|
2831
|
+
"finance team",
|
|
2832
|
+
"budget approval",
|
|
2833
|
+
"budget presentation",
|
|
2834
|
+
"cost benchmark",
|
|
2835
|
+
"industry benchmark",
|
|
2836
|
+
"cost target",
|
|
2837
|
+
"cost forecast",
|
|
2838
|
+
"cost projection",
|
|
2839
|
+
"cost growth",
|
|
2840
|
+
"cost trend",
|
|
2841
|
+
"cost driver",
|
|
2842
|
+
"cost breakdown",
|
|
2843
|
+
"data transfer cost",
|
|
2844
|
+
"egress cost",
|
|
2845
|
+
"NAT gateway cost",
|
|
2846
|
+
"load balancer cost",
|
|
2847
|
+
"compute cost",
|
|
2848
|
+
"storage cost",
|
|
2849
|
+
"database cost",
|
|
2850
|
+
"shared cost",
|
|
2851
|
+
"shared infrastructure cost",
|
|
2852
|
+
"allocate cost",
|
|
2853
|
+
"split cost",
|
|
2854
|
+
"cost per team",
|
|
2855
|
+
"team budget",
|
|
2856
|
+
"project budget",
|
|
2857
|
+
"infrastructure as a service cost",
|
|
2858
|
+
"why so expensive",
|
|
2859
|
+
"cost too high",
|
|
2860
|
+
"spending too much",
|
|
2861
|
+
"reduce spending",
|
|
2862
|
+
"cheaper cloud",
|
|
2863
|
+
"cheaper alternative",
|
|
2864
|
+
"cost effective",
|
|
2865
|
+
"cost-effective",
|
|
2866
|
+
"forecast",
|
|
2867
|
+
"next year",
|
|
2868
|
+
"spend",
|
|
2869
|
+
"pays",
|
|
2870
|
+
"platform team",
|
|
2871
|
+
"AWS bill",
|
|
2872
|
+
"high",
|
|
2873
|
+
"contingency",
|
|
2874
|
+
"buffer",
|
|
2875
|
+
"revenue",
|
|
2876
|
+
"percentage",
|
|
2877
|
+
"untagged",
|
|
2878
|
+
"cross-charging",
|
|
2879
|
+
"charging",
|
|
2880
|
+
"storage",
|
|
2881
|
+
"lifecycle",
|
|
2882
|
+
"policies",
|
|
2883
|
+
"benchmarking",
|
|
2884
|
+
"industry",
|
|
2885
|
+
"board",
|
|
2886
|
+
"explain",
|
|
2887
|
+
"cloud value",
|
|
2888
|
+
"quarterly business reviews",
|
|
2889
|
+
"QBR"
|
|
2890
|
+
],
|
|
2891
|
+
"intentPatterns": [
|
|
2892
|
+
"(budget|cost).*?(plan|planning|forecast|projection)",
|
|
2893
|
+
"(cost|cloud).*?(allocation|showback|chargeback|tagging)",
|
|
2894
|
+
"(FinOps|financial operations).*?(implement|practice|process)",
|
|
2895
|
+
"(ROI|return on investment|payback).*?(calculat|analyz|justif)",
|
|
2896
|
+
"(budget|cost).*?(negotiat|defend|present|justify)",
|
|
2897
|
+
"(cost|spend|spending).*?(reduce|optimize|save|cut)",
|
|
2898
|
+
"(reserved instance|RI|savings plan).*?(strategy|buy|commit)",
|
|
2899
|
+
"(cost|budget).*?(too high|expensive|reduce|cheaper)",
|
|
2900
|
+
"(benchmark|cost per user|unit economics).*?(calculat|compar|analyz)",
|
|
2901
|
+
"(finance|CFO).*?(budget|cost|present|approval)"
|
|
2902
|
+
]
|
|
2903
|
+
},
|
|
2904
|
+
"fileTriggers": {
|
|
2905
|
+
"pathPatterns": [
|
|
2906
|
+
"**/budget-*.md",
|
|
2907
|
+
"**/cost-*.md",
|
|
2908
|
+
"**/finops-*.md",
|
|
2909
|
+
"**/roi-*.md",
|
|
2910
|
+
"**/financial-*.md"
|
|
2911
|
+
],
|
|
2912
|
+
"contentPatterns": [
|
|
2913
|
+
"# Budget",
|
|
2914
|
+
"# Cost Analysis",
|
|
2915
|
+
"## ROI Calculation",
|
|
2916
|
+
"## Budget Request",
|
|
2917
|
+
"annual budget"
|
|
2918
|
+
]
|
|
2919
|
+
}
|
|
2920
|
+
}
|
|
2921
|
+
},
|
|
2922
|
+
"notes": {
|
|
2923
|
+
"enforcement_types": {
|
|
2924
|
+
"suggest": "Skill suggestion appears but doesn't block execution",
|
|
2925
|
+
"block": "Requires skill to be used before proceeding (guardrail)",
|
|
2926
|
+
"warn": "Shows warning but allows proceeding"
|
|
2927
|
+
},
|
|
2928
|
+
"priority_levels": {
|
|
2929
|
+
"critical": "Highest - Always trigger when matched",
|
|
2930
|
+
"high": "Important - Trigger for most matches",
|
|
2931
|
+
"medium": "Moderate - Trigger for clear matches",
|
|
2932
|
+
"low": "Optional - Trigger only for explicit matches"
|
|
2933
|
+
},
|
|
2934
|
+
"customization": {
|
|
2935
|
+
"pathPatterns": "Adjust to match your project structure (blog-api, auth-service, etc.)",
|
|
2936
|
+
"keywords": "Add domain-specific terms relevant to your project",
|
|
2937
|
+
"intentPatterns": "Use regex for flexible user intent matching"
|
|
2938
|
+
}
|
|
2939
|
+
}
|
|
2940
|
+
}
|