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,669 @@
|
|
|
1
|
+
# Service Management
|
|
2
|
+
|
|
3
|
+
Service catalog management, SLA management, service desk operations, and ticketing systems for delivering IT services effectively.
|
|
4
|
+
|
|
5
|
+
## Table of Contents
|
|
6
|
+
|
|
7
|
+
- [Service Catalog](#service-catalog)
|
|
8
|
+
- [Service Level Management](#service-level-management)
|
|
9
|
+
- [Service Desk Operations](#service-desk-operations)
|
|
10
|
+
- [Ticketing Systems](#ticketing-systems)
|
|
11
|
+
- [Service Request Management](#service-request-management)
|
|
12
|
+
- [Best Practices](#best-practices)
|
|
13
|
+
|
|
14
|
+
## Service Catalog
|
|
15
|
+
|
|
16
|
+
### Purpose
|
|
17
|
+
|
|
18
|
+
A service catalog provides:
|
|
19
|
+
- Single source of truth for available services
|
|
20
|
+
- Clear service descriptions and pricing
|
|
21
|
+
- Standardized request procedures
|
|
22
|
+
- Service dependencies and relationships
|
|
23
|
+
|
|
24
|
+
### Service Catalog Structure
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
Service Catalog
|
|
28
|
+
├── Business Service Catalog (Customer-facing)
|
|
29
|
+
│ ├── Email Service
|
|
30
|
+
│ ├── File Storage
|
|
31
|
+
│ ├── Video Conferencing
|
|
32
|
+
│ └── Application Hosting
|
|
33
|
+
│
|
|
34
|
+
└── Technical Service Catalog (Supporting services)
|
|
35
|
+
├── Active Directory
|
|
36
|
+
├── DNS
|
|
37
|
+
├── Database Hosting
|
|
38
|
+
└── Load Balancing
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### Service Catalog Entry Template
|
|
42
|
+
|
|
43
|
+
```yaml
|
|
44
|
+
Service: Email Service
|
|
45
|
+
|
|
46
|
+
Description: |
|
|
47
|
+
Enterprise email with calendar, contacts, and 50GB storage.
|
|
48
|
+
Includes mobile access and spam filtering.
|
|
49
|
+
|
|
50
|
+
Service Owner: Infrastructure Team
|
|
51
|
+
Support Team: Service Desk (L1), Email Team (L2/L3)
|
|
52
|
+
|
|
53
|
+
Service Level: 99.9% uptime
|
|
54
|
+
Support Hours: 24/7/365
|
|
55
|
+
Response Time:
|
|
56
|
+
- P1: 15 minutes
|
|
57
|
+
- P2: 1 hour
|
|
58
|
+
- P3: 4 hours
|
|
59
|
+
- P4: 8 hours
|
|
60
|
+
|
|
61
|
+
Cost: $10/user/month
|
|
62
|
+
|
|
63
|
+
Prerequisites:
|
|
64
|
+
- Active employee account
|
|
65
|
+
- Manager approval
|
|
66
|
+
- Department budget code
|
|
67
|
+
|
|
68
|
+
Request Process:
|
|
69
|
+
1. Submit request via self-service portal
|
|
70
|
+
2. Automatic manager approval workflow
|
|
71
|
+
3. Provisioning (automated, <1 hour)
|
|
72
|
+
4. Welcome email with setup instructions
|
|
73
|
+
|
|
74
|
+
Dependencies:
|
|
75
|
+
- Active Directory (authentication)
|
|
76
|
+
- DNS (mail routing)
|
|
77
|
+
- Spam filtering service
|
|
78
|
+
- Backup service
|
|
79
|
+
|
|
80
|
+
Related Services:
|
|
81
|
+
- Calendar Service
|
|
82
|
+
- Mobile Device Management
|
|
83
|
+
- File Sharing
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### Service Catalog Categories
|
|
87
|
+
|
|
88
|
+
**End User Services:**
|
|
89
|
+
- Desktop/laptop provisioning
|
|
90
|
+
- Software licensing
|
|
91
|
+
- Email and collaboration
|
|
92
|
+
- Mobile device management
|
|
93
|
+
|
|
94
|
+
**Application Services:**
|
|
95
|
+
- Application hosting
|
|
96
|
+
- Database services
|
|
97
|
+
- Web hosting
|
|
98
|
+
- API management
|
|
99
|
+
|
|
100
|
+
**Infrastructure Services:**
|
|
101
|
+
- Virtual machine provisioning
|
|
102
|
+
- Storage services
|
|
103
|
+
- Network services
|
|
104
|
+
- Backup and recovery
|
|
105
|
+
|
|
106
|
+
**Support Services:**
|
|
107
|
+
- Incident support
|
|
108
|
+
- Service requests
|
|
109
|
+
- Access management
|
|
110
|
+
- Training
|
|
111
|
+
|
|
112
|
+
## Service Level Management
|
|
113
|
+
|
|
114
|
+
### SLA Components
|
|
115
|
+
|
|
116
|
+
**Service Level Agreement (SLA):**
|
|
117
|
+
```
|
|
118
|
+
Agreement between IT and customer defining:
|
|
119
|
+
• Services provided
|
|
120
|
+
• Performance targets
|
|
121
|
+
• Responsibilities
|
|
122
|
+
• Remedies for non-compliance
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
**Operational Level Agreement (OLA):**
|
|
126
|
+
```
|
|
127
|
+
Agreement between internal teams supporting SLA delivery:
|
|
128
|
+
• Network team → Application team
|
|
129
|
+
• Database team → Development team
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
**Underpinning Contract (UC):**
|
|
133
|
+
```
|
|
134
|
+
Contract with external supplier supporting service delivery:
|
|
135
|
+
• Cloud provider
|
|
136
|
+
• Software vendor
|
|
137
|
+
• Hardware supplier
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
### SLA Metrics
|
|
141
|
+
|
|
142
|
+
**Availability:**
|
|
143
|
+
```yaml
|
|
144
|
+
Metric: Service Uptime
|
|
145
|
+
Target: 99.9%
|
|
146
|
+
Measurement: (Total time - Downtime) / Total time
|
|
147
|
+
Exclusions:
|
|
148
|
+
- Scheduled maintenance (with 7 days notice)
|
|
149
|
+
- Force majeure events
|
|
150
|
+
|
|
151
|
+
Calculation:
|
|
152
|
+
Monthly minutes: 43,800
|
|
153
|
+
Allowed downtime: 43.8 minutes
|
|
154
|
+
Actual downtime: 20 minutes
|
|
155
|
+
Availability: 99.95% ✅ (exceeds target)
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
**Performance:**
|
|
159
|
+
```yaml
|
|
160
|
+
Metric: Application Response Time
|
|
161
|
+
Target: 95% of requests < 2 seconds
|
|
162
|
+
Measurement: Application Performance Monitoring (APM)
|
|
163
|
+
Sample Period: Rolling 30 days
|
|
164
|
+
|
|
165
|
+
Example:
|
|
166
|
+
Total requests: 1,000,000
|
|
167
|
+
Requests < 2s: 970,000
|
|
168
|
+
Performance: 97% ✅ (exceeds target)
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
**Incident Response:**
|
|
172
|
+
```yaml
|
|
173
|
+
Metric: Time to Respond
|
|
174
|
+
Targets:
|
|
175
|
+
P1 (Critical): 15 minutes
|
|
176
|
+
P2 (High): 1 hour
|
|
177
|
+
P3 (Medium): 4 hours
|
|
178
|
+
P4 (Low): 8 hours
|
|
179
|
+
|
|
180
|
+
Measurement: Time from ticket creation to first response
|
|
181
|
+
|
|
182
|
+
Example P1 Incidents (Month):
|
|
183
|
+
Incident 1: Responded in 8 minutes ✅
|
|
184
|
+
Incident 2: Responded in 12 minutes ✅
|
|
185
|
+
Incident 3: Responded in 20 minutes ❌
|
|
186
|
+
SLA Compliance: 66.7% (2 of 3)
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
**Incident Resolution:**
|
|
190
|
+
```yaml
|
|
191
|
+
Metric: Time to Resolve
|
|
192
|
+
Targets:
|
|
193
|
+
P1 (Critical): 4 hours
|
|
194
|
+
P2 (High): 8 hours
|
|
195
|
+
P3 (Medium): 24 hours
|
|
196
|
+
P4 (Low): 48 hours
|
|
197
|
+
|
|
198
|
+
Measurement: Time from ticket creation to closure
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
### SLA Tiers
|
|
202
|
+
|
|
203
|
+
```
|
|
204
|
+
┌──────────────────────────────────────────────────┐
|
|
205
|
+
│ Platinum Tier - Mission Critical │
|
|
206
|
+
├──────────────────────────────────────────────────┤
|
|
207
|
+
│ Availability: 99.99% │
|
|
208
|
+
│ Support: 24/7/365 │
|
|
209
|
+
│ P1 Response: 15 minutes │
|
|
210
|
+
│ Dedicated support team │
|
|
211
|
+
│ Cost: Premium │
|
|
212
|
+
└──────────────────────────────────────────────────┘
|
|
213
|
+
|
|
214
|
+
┌──────────────────────────────────────────────────┐
|
|
215
|
+
│ Gold Tier - Business Critical │
|
|
216
|
+
├──────────────────────────────────────────────────┤
|
|
217
|
+
│ Availability: 99.9% │
|
|
218
|
+
│ Support: 24/7/365 │
|
|
219
|
+
│ P1 Response: 30 minutes │
|
|
220
|
+
│ Priority escalation │
|
|
221
|
+
│ Cost: Standard │
|
|
222
|
+
└──────────────────────────────────────────────────┘
|
|
223
|
+
|
|
224
|
+
┌──────────────────────────────────────────────────┐
|
|
225
|
+
│ Silver Tier - Standard │
|
|
226
|
+
├──────────────────────────────────────────────────┤
|
|
227
|
+
│ Availability: 99.5% │
|
|
228
|
+
│ Support: Business hours (8am-6pm) │
|
|
229
|
+
│ P1 Response: 1 hour │
|
|
230
|
+
│ Standard escalation │
|
|
231
|
+
│ Cost: Basic │
|
|
232
|
+
└──────────────────────────────────────────────────┘
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
### SLA Monitoring Dashboard
|
|
236
|
+
|
|
237
|
+
```yaml
|
|
238
|
+
SLA Dashboard Metrics:
|
|
239
|
+
|
|
240
|
+
Availability (Current Month):
|
|
241
|
+
Target: 99.9%
|
|
242
|
+
Actual: 99.95%
|
|
243
|
+
Status: ✅ On Track
|
|
244
|
+
Remaining Downtime Budget: 23.8 minutes
|
|
245
|
+
|
|
246
|
+
Incident Response (Last 30 Days):
|
|
247
|
+
P1 Compliance: 95% (19/20) ✅
|
|
248
|
+
P2 Compliance: 88% (44/50) ⚠️
|
|
249
|
+
P3 Compliance: 92% (184/200) ✅
|
|
250
|
+
P4 Compliance: 96% (96/100) ✅
|
|
251
|
+
|
|
252
|
+
Customer Satisfaction:
|
|
253
|
+
CSAT Score: 4.2/5.0 ✅
|
|
254
|
+
NPS: +45 ✅
|
|
255
|
+
Response Rate: 68%
|
|
256
|
+
|
|
257
|
+
Trend:
|
|
258
|
+
Incidents: ▼ 12% vs last month
|
|
259
|
+
Mean Time to Resolve: ▼ 8% vs last month
|
|
260
|
+
First Contact Resolution: ▲ 5% vs last month
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
## Service Desk Operations
|
|
264
|
+
|
|
265
|
+
### Service Desk Functions
|
|
266
|
+
|
|
267
|
+
**Primary Functions:**
|
|
268
|
+
1. Single point of contact for users
|
|
269
|
+
2. Incident logging and tracking
|
|
270
|
+
3. Service request fulfillment
|
|
271
|
+
4. User communication
|
|
272
|
+
5. First-line problem resolution
|
|
273
|
+
6. Escalation management
|
|
274
|
+
|
|
275
|
+
### Support Tiers
|
|
276
|
+
|
|
277
|
+
```
|
|
278
|
+
┌─────────────────────────────────────────┐
|
|
279
|
+
│ Tier 1 (Service Desk) │
|
|
280
|
+
├─────────────────────────────────────────┤
|
|
281
|
+
│ • First point of contact │
|
|
282
|
+
│ • Incident logging │
|
|
283
|
+
│ • Password resets │
|
|
284
|
+
│ • Basic troubleshooting │
|
|
285
|
+
│ • Known error workarounds │
|
|
286
|
+
│ • Target: 70% first contact resolution │
|
|
287
|
+
│ • Escalate if not resolved in 15 min │
|
|
288
|
+
└─────────────────────────────────────────┘
|
|
289
|
+
⬇ Escalate
|
|
290
|
+
┌─────────────────────────────────────────┐
|
|
291
|
+
│ Tier 2 (Technical Support) │
|
|
292
|
+
├─────────────────────────────────────────┤
|
|
293
|
+
│ • Application specialists │
|
|
294
|
+
│ • Network specialists │
|
|
295
|
+
│ • Advanced troubleshooting │
|
|
296
|
+
│ • Configuration changes │
|
|
297
|
+
│ • Target: 90% resolution at L2 │
|
|
298
|
+
│ • Escalate complex issues │
|
|
299
|
+
└─────────────────────────────────────────┘
|
|
300
|
+
⬇ Escalate
|
|
301
|
+
┌─────────────────────────────────────────┐
|
|
302
|
+
│ Tier 3 (Expert/Development) │
|
|
303
|
+
├─────────────────────────────────────────┤
|
|
304
|
+
│ • Vendor support │
|
|
305
|
+
│ • Development teams │
|
|
306
|
+
│ • Architecture teams │
|
|
307
|
+
│ • Code changes │
|
|
308
|
+
│ • Root cause analysis │
|
|
309
|
+
└─────────────────────────────────────────┘
|
|
310
|
+
```
|
|
311
|
+
|
|
312
|
+
### Service Desk Channels
|
|
313
|
+
|
|
314
|
+
**Phone:**
|
|
315
|
+
- Immediate assistance
|
|
316
|
+
- Complex issues requiring discussion
|
|
317
|
+
- High-priority incidents
|
|
318
|
+
|
|
319
|
+
**Email:**
|
|
320
|
+
- Non-urgent requests
|
|
321
|
+
- Documentation trail
|
|
322
|
+
- Bulk communications
|
|
323
|
+
|
|
324
|
+
**Self-Service Portal:**
|
|
325
|
+
- Password resets
|
|
326
|
+
- Standard requests
|
|
327
|
+
- Knowledge base access
|
|
328
|
+
- Ticket status tracking
|
|
329
|
+
|
|
330
|
+
**Live Chat:**
|
|
331
|
+
- Quick questions
|
|
332
|
+
- Real-time assistance
|
|
333
|
+
- Lower effort than phone
|
|
334
|
+
|
|
335
|
+
**Walk-Up (Physical):**
|
|
336
|
+
- Hardware drop-off/pickup
|
|
337
|
+
- Face-to-face for complex issues
|
|
338
|
+
- Building-specific support
|
|
339
|
+
|
|
340
|
+
### Shift Handover Process
|
|
341
|
+
|
|
342
|
+
```yaml
|
|
343
|
+
Handover Template:
|
|
344
|
+
|
|
345
|
+
Shift: Evening → Night (6pm - 10pm)
|
|
346
|
+
Date: 2024-11-01
|
|
347
|
+
Outgoing Analyst: John Smith
|
|
348
|
+
Incoming Analyst: Jane Doe
|
|
349
|
+
|
|
350
|
+
Active P1/P2 Incidents:
|
|
351
|
+
- INC-12345: Email outage affecting 500 users
|
|
352
|
+
Status: Vendor engaged, ETA 2 hours
|
|
353
|
+
Action: Monitor vendor ticket #ABC-789
|
|
354
|
+
|
|
355
|
+
- INC-12346: VPN connectivity issues
|
|
356
|
+
Status: Network team investigating
|
|
357
|
+
Action: Update users via status page every 30 min
|
|
358
|
+
|
|
359
|
+
Pending Actions:
|
|
360
|
+
- Follow up with finance team on SAP access request
|
|
361
|
+
- Schedule maintenance window for firewall upgrade
|
|
362
|
+
- Review and close resolved tickets from yesterday
|
|
363
|
+
|
|
364
|
+
Known Issues:
|
|
365
|
+
- Printer in Building A offline (parts ordered)
|
|
366
|
+
- Slow performance in CRM app (monitoring)
|
|
367
|
+
|
|
368
|
+
Metrics:
|
|
369
|
+
- Tickets handled: 45
|
|
370
|
+
- P1 incidents: 2
|
|
371
|
+
- First contact resolution: 72%
|
|
372
|
+
- Average handle time: 8 minutes
|
|
373
|
+
```
|
|
374
|
+
|
|
375
|
+
## Ticketing Systems
|
|
376
|
+
|
|
377
|
+
### Ticket Lifecycle
|
|
378
|
+
|
|
379
|
+
```
|
|
380
|
+
New → Assigned → In Progress → Pending → Resolved → Closed
|
|
381
|
+
│ │ │ │ │ │
|
|
382
|
+
│ │ │ │ │ │
|
|
383
|
+
▼ ▼ ▼ ▼ ▼ ▼
|
|
384
|
+
Created Analyst Working on Waiting Fix Verified
|
|
385
|
+
assigned solution for input applied by user
|
|
386
|
+
```
|
|
387
|
+
|
|
388
|
+
### Ticket Fields
|
|
389
|
+
|
|
390
|
+
```yaml
|
|
391
|
+
Ticket: INC-12345
|
|
392
|
+
|
|
393
|
+
Basic Information:
|
|
394
|
+
Type: Incident
|
|
395
|
+
Priority: P2 (High)
|
|
396
|
+
Status: In Progress
|
|
397
|
+
Category: Email
|
|
398
|
+
Subcategory: Cannot Send
|
|
399
|
+
Affected Service: Email Service
|
|
400
|
+
|
|
401
|
+
Reporter:
|
|
402
|
+
Name: John Doe
|
|
403
|
+
Email: john.doe@company.com
|
|
404
|
+
Phone: +1-555-1234
|
|
405
|
+
Department: Sales
|
|
406
|
+
Location: Building A, Floor 3
|
|
407
|
+
|
|
408
|
+
Assignment:
|
|
409
|
+
Assigned To: Jane Smith (L1 Service Desk)
|
|
410
|
+
Team: Service Desk
|
|
411
|
+
Opened: 2024-11-01 09:15
|
|
412
|
+
First Response: 2024-11-01 09:20 (5 min) ✅
|
|
413
|
+
Target Resolution: 2024-11-01 17:15 (8 hours)
|
|
414
|
+
|
|
415
|
+
Description: |
|
|
416
|
+
User reports unable to send emails since 9am.
|
|
417
|
+
Receiving emails works fine.
|
|
418
|
+
Error message: "Message sending failed - server timeout"
|
|
419
|
+
|
|
420
|
+
Work Log:
|
|
421
|
+
- 09:20: Verified user account active, no locks
|
|
422
|
+
- 09:25: Checked email server status - all systems operational
|
|
423
|
+
- 09:30: Tested from webmail - same issue
|
|
424
|
+
- 09:35: Found mailbox over quota (50GB limit reached)
|
|
425
|
+
- 09:40: Increased quota to 60GB
|
|
426
|
+
- 09:45: User confirmed sending now works
|
|
427
|
+
|
|
428
|
+
Resolution:
|
|
429
|
+
Root Cause: Mailbox quota exceeded
|
|
430
|
+
Solution: Increased mailbox quota, advised user to archive old emails
|
|
431
|
+
|
|
432
|
+
Resolution Code: Quota Adjustment
|
|
433
|
+
Closure Code: Resolved - Configuration Change
|
|
434
|
+
Actual Resolution Time: 30 minutes ✅
|
|
435
|
+
```
|
|
436
|
+
|
|
437
|
+
### Ticket Prioritization Matrix
|
|
438
|
+
|
|
439
|
+
```
|
|
440
|
+
┌────────────────────────────────────────────┐
|
|
441
|
+
│ Impact vs Urgency │
|
|
442
|
+
├────────────────────────────────────────────┤
|
|
443
|
+
│ │ Low │ Med │ High │ Crit │
|
|
444
|
+
│──────────────┼──────┼──────┼──────┼───────│
|
|
445
|
+
│ Urgent │ P3 │ P2 │ P1 │ P1 │
|
|
446
|
+
│ High │ P3 │ P2 │ P2 │ P1 │
|
|
447
|
+
│ Medium │ P4 │ P3 │ P2 │ P2 │
|
|
448
|
+
│ Low │ P4 │ P4 │ P3 │ P3 │
|
|
449
|
+
└────────────────────────────────────────────┘
|
|
450
|
+
|
|
451
|
+
Impact:
|
|
452
|
+
Critical: Business stopped, >1000 users
|
|
453
|
+
High: Major degradation, 100-1000 users
|
|
454
|
+
Medium: Moderate impact, 10-100 users
|
|
455
|
+
Low: Minor inconvenience, <10 users
|
|
456
|
+
|
|
457
|
+
Urgency:
|
|
458
|
+
Urgent: Immediate business need
|
|
459
|
+
High: Important but not immediate
|
|
460
|
+
Medium: Can wait hours
|
|
461
|
+
Low: Can wait days
|
|
462
|
+
```
|
|
463
|
+
|
|
464
|
+
### Ticket Categories
|
|
465
|
+
|
|
466
|
+
```yaml
|
|
467
|
+
Hardware:
|
|
468
|
+
- Desktop/Laptop
|
|
469
|
+
- Printer
|
|
470
|
+
- Phone
|
|
471
|
+
- Monitor
|
|
472
|
+
- Peripherals
|
|
473
|
+
|
|
474
|
+
Software:
|
|
475
|
+
- Application Access
|
|
476
|
+
- Application Error
|
|
477
|
+
- Installation
|
|
478
|
+
- License
|
|
479
|
+
|
|
480
|
+
Network:
|
|
481
|
+
- Connectivity
|
|
482
|
+
- VPN
|
|
483
|
+
- WiFi
|
|
484
|
+
- Slow Performance
|
|
485
|
+
|
|
486
|
+
Email:
|
|
487
|
+
- Cannot Send
|
|
488
|
+
- Cannot Receive
|
|
489
|
+
- Spam/Phishing
|
|
490
|
+
- Quota
|
|
491
|
+
|
|
492
|
+
Account:
|
|
493
|
+
- Password Reset
|
|
494
|
+
- Account Locked
|
|
495
|
+
- New User Setup
|
|
496
|
+
- Permissions
|
|
497
|
+
|
|
498
|
+
Service Request:
|
|
499
|
+
- New Hardware
|
|
500
|
+
- Software License
|
|
501
|
+
- Access Request
|
|
502
|
+
- Information Request
|
|
503
|
+
```
|
|
504
|
+
|
|
505
|
+
## Service Request Management
|
|
506
|
+
|
|
507
|
+
### Standard Request Catalog
|
|
508
|
+
|
|
509
|
+
```yaml
|
|
510
|
+
Request Catalog:
|
|
511
|
+
|
|
512
|
+
New User Onboarding:
|
|
513
|
+
Approval: Manager
|
|
514
|
+
SLA: 1 business day
|
|
515
|
+
Cost: $50 setup fee
|
|
516
|
+
Fulfillment: Automated workflow
|
|
517
|
+
Includes:
|
|
518
|
+
- Active Directory account
|
|
519
|
+
- Email mailbox
|
|
520
|
+
- Standard software
|
|
521
|
+
- VPN access
|
|
522
|
+
- Laptop (if hardware request included)
|
|
523
|
+
|
|
524
|
+
Software Installation:
|
|
525
|
+
Approval: Manager (if licensed), None (if free)
|
|
526
|
+
SLA: 2 business days
|
|
527
|
+
Cost: License cost (if applicable)
|
|
528
|
+
Fulfillment: Self-service (approved list) or manual
|
|
529
|
+
|
|
530
|
+
Access Request:
|
|
531
|
+
Approval: Data owner
|
|
532
|
+
SLA: 4 hours (expedited), 1 day (standard)
|
|
533
|
+
Cost: Free
|
|
534
|
+
Fulfillment: Automated for standard roles
|
|
535
|
+
|
|
536
|
+
Hardware Request:
|
|
537
|
+
Approval: Manager + Budget holder
|
|
538
|
+
SLA: 5 business days
|
|
539
|
+
Cost: Hardware + shipping + setup fee
|
|
540
|
+
Fulfillment: Procurement → IT setup → Delivery
|
|
541
|
+
```
|
|
542
|
+
|
|
543
|
+
### Request Fulfillment Workflow
|
|
544
|
+
|
|
545
|
+
```
|
|
546
|
+
User Request
|
|
547
|
+
↓
|
|
548
|
+
Self-Service Portal
|
|
549
|
+
↓
|
|
550
|
+
Automated Approval (if standard request)
|
|
551
|
+
↓
|
|
552
|
+
Fulfillment Team Assignment
|
|
553
|
+
↓
|
|
554
|
+
Provisioning (automated or manual)
|
|
555
|
+
↓
|
|
556
|
+
Quality Check
|
|
557
|
+
↓
|
|
558
|
+
User Notification
|
|
559
|
+
↓
|
|
560
|
+
Closure
|
|
561
|
+
```
|
|
562
|
+
|
|
563
|
+
## Best Practices
|
|
564
|
+
|
|
565
|
+
### 1. Knowledge Management
|
|
566
|
+
|
|
567
|
+
**Build searchable knowledge base:**
|
|
568
|
+
```yaml
|
|
569
|
+
Knowledge Article: KB-0123
|
|
570
|
+
Title: How to Reset Your Password
|
|
571
|
+
Category: Account Management
|
|
572
|
+
Tags: password, reset, login, account
|
|
573
|
+
Helpful: 245 users
|
|
574
|
+
Last Updated: 2024-10-15
|
|
575
|
+
|
|
576
|
+
Steps:
|
|
577
|
+
1. Go to password.company.com
|
|
578
|
+
2. Enter your username
|
|
579
|
+
3. Click "Forgot Password"
|
|
580
|
+
4. Follow email instructions
|
|
581
|
+
5. Use new password to login
|
|
582
|
+
|
|
583
|
+
Related Articles:
|
|
584
|
+
- KB-0124: Account Locked After Failed Logins
|
|
585
|
+
- KB-0125: Setting Up Multi-Factor Authentication
|
|
586
|
+
```
|
|
587
|
+
|
|
588
|
+
### 2. Automation
|
|
589
|
+
|
|
590
|
+
**Automate repetitive tasks:**
|
|
591
|
+
- Password resets via self-service
|
|
592
|
+
- Standard software installations
|
|
593
|
+
- Access provisioning for standard roles
|
|
594
|
+
- Ticket routing based on keywords
|
|
595
|
+
|
|
596
|
+
### 3. Communication Templates
|
|
597
|
+
|
|
598
|
+
**Standardized responses:**
|
|
599
|
+
```
|
|
600
|
+
Incident Acknowledgment:
|
|
601
|
+
"Thank you for contacting IT Support. Your incident INC-{number}
|
|
602
|
+
has been logged with priority {priority}. We will respond within
|
|
603
|
+
{response_time} and aim to resolve by {resolution_time}."
|
|
604
|
+
|
|
605
|
+
Resolution Notification:
|
|
606
|
+
"Your incident INC-{number} has been resolved. Please verify the
|
|
607
|
+
fix and reply to this email if you need further assistance."
|
|
608
|
+
|
|
609
|
+
Scheduled Maintenance:
|
|
610
|
+
"Scheduled maintenance on {service} will occur on {date} from
|
|
611
|
+
{start_time} to {end_time}. Expected impact: {impact_description}"
|
|
612
|
+
```
|
|
613
|
+
|
|
614
|
+
### 4. Performance Metrics
|
|
615
|
+
|
|
616
|
+
**Track and improve:**
|
|
617
|
+
```yaml
|
|
618
|
+
Service Desk KPIs:
|
|
619
|
+
|
|
620
|
+
Efficiency:
|
|
621
|
+
- First Contact Resolution: >70%
|
|
622
|
+
- Average Handle Time: <10 minutes
|
|
623
|
+
- Tickets Per Analyst Per Day: 40-60
|
|
624
|
+
|
|
625
|
+
Quality:
|
|
626
|
+
- Customer Satisfaction (CSAT): >4.0/5.0
|
|
627
|
+
- Ticket Reopen Rate: <5%
|
|
628
|
+
- SLA Compliance: >95%
|
|
629
|
+
|
|
630
|
+
Productivity:
|
|
631
|
+
- Backlog Age: <3 days average
|
|
632
|
+
- Ticket Aging (>7 days): <10%
|
|
633
|
+
- Self-Service Adoption: >30%
|
|
634
|
+
```
|
|
635
|
+
|
|
636
|
+
### 5. Continuous Training
|
|
637
|
+
|
|
638
|
+
- Regular product training
|
|
639
|
+
- Soft skills development
|
|
640
|
+
- Knowledge sharing sessions
|
|
641
|
+
- Shadowing and mentoring
|
|
642
|
+
|
|
643
|
+
### 6. User Satisfaction
|
|
644
|
+
|
|
645
|
+
**Measure and act on feedback:**
|
|
646
|
+
```yaml
|
|
647
|
+
Post-Resolution Survey:
|
|
648
|
+
|
|
649
|
+
1. How satisfied were you with the resolution?
|
|
650
|
+
⭐⭐⭐⭐⭐ (1-5)
|
|
651
|
+
|
|
652
|
+
2. Was your issue resolved in a timely manner?
|
|
653
|
+
Yes / No
|
|
654
|
+
|
|
655
|
+
3. How would you rate the analyst's professionalism?
|
|
656
|
+
⭐⭐⭐⭐⭐ (1-5)
|
|
657
|
+
|
|
658
|
+
4. Additional comments:
|
|
659
|
+
[Free text]
|
|
660
|
+
|
|
661
|
+
Results tracked monthly with improvement actions.
|
|
662
|
+
```
|
|
663
|
+
|
|
664
|
+
---
|
|
665
|
+
|
|
666
|
+
**Related Resources:**
|
|
667
|
+
- [itil-framework.md](itil-framework.md) - ITIL 4 service management framework
|
|
668
|
+
- [help-desk-operations.md](help-desk-operations.md) - Day-to-day service desk operations
|
|
669
|
+
- [automation-orchestration.md](automation-orchestration.md) - Service automation
|