blockmine 1.21.0 → 1.22.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 +55 -0
- package/.claude/settings.local.json +27 -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 +90 -54
- package/README.md +94 -0
- package/backend/docs/SECRETS_DOCUMENTATION.md +327 -0
- package/backend/jest.config.js +59 -0
- package/backend/package-lock.json +6129 -0
- package/backend/package.json +16 -4
- package/backend/prisma/migrations/20251026104609_add_websocket_api/migration.sql +33 -0
- package/backend/prisma/schema.prisma +33 -0
- 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 +411 -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/api/routes/apiKeys.js +181 -0
- package/backend/src/api/routes/bots.js +49 -7
- package/backend/src/api/routes/plugins.js +2 -1
- package/backend/src/api/routes/system.js +174 -0
- package/backend/src/container.js +82 -0
- package/backend/src/core/BotManager.js +142 -871
- package/backend/src/core/BotManager.old.js +1093 -0
- package/backend/src/core/BotProcess.js +1092 -858
- package/backend/src/core/EventGraphManager.js +280 -198
- package/backend/src/core/GraphExecutionEngine.js +321 -325
- package/backend/src/core/MessageQueue.js +27 -6
- package/backend/src/core/NodeRegistry.js +37 -1134
- package/backend/src/core/PluginManager.js +62 -12
- package/backend/src/core/PrismaService.js +32 -0
- 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 +132 -0
- package/backend/src/core/node-registries/arrays.js +137 -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 +187 -0
- package/backend/src/core/node-registries/flow.js +139 -0
- package/backend/src/core/node-registries/logic.js +45 -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 +153 -0
- package/backend/src/core/node-registries/time.js +113 -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/{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/arrays/get_next.js +35 -0
- package/backend/src/core/nodes/{data_cast.js → data/cast.js} +8 -0
- 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/math/__tests__/operation.test.js +65 -0
- package/backend/src/core/nodes/strings/__tests__/concat.test.js +89 -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/{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 +596 -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 +351 -0
- package/backend/src/core/services/ResourceMonitorService.js +90 -0
- package/backend/src/core/services/TelemetryService.js +124 -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/Transport.js +78 -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 +54 -0
- package/backend/src/real-time/socketHandler.js +6 -2
- 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 +3 -0
- package/backend/src/test-refactor.js +85 -0
- package/frontend/dist/assets/index-CfTo92bP.css +1 -0
- package/frontend/dist/assets/index-CiFD5X9Z.js +8344 -0
- package/frontend/dist/index.html +2 -2
- package/frontend/package.json +0 -5
- package/package.json +2 -1
- 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
- /package/backend/src/core/nodes/{string_starts_with.js → strings/starts_with.js} +0 -0
|
@@ -0,0 +1,738 @@
|
|
|
1
|
+
# Help Desk Operations
|
|
2
|
+
|
|
3
|
+
Ticketing systems, knowledge base management, user support best practices, SLA tracking, and service desk operational excellence.
|
|
4
|
+
|
|
5
|
+
## Table of Contents
|
|
6
|
+
|
|
7
|
+
- [Help Desk Overview](#help-desk-overview)
|
|
8
|
+
- [Ticketing Systems](#ticketing-systems)
|
|
9
|
+
- [Knowledge Base Management](#knowledge-base-management)
|
|
10
|
+
- [User Support Best Practices](#user-support-best-practices)
|
|
11
|
+
- [SLA Tracking](#sla-tracking)
|
|
12
|
+
- [Performance Metrics](#performance-metrics)
|
|
13
|
+
- [Best Practices](#best-practices)
|
|
14
|
+
|
|
15
|
+
## Help Desk Overview
|
|
16
|
+
|
|
17
|
+
### Purpose
|
|
18
|
+
|
|
19
|
+
The help desk provides:
|
|
20
|
+
- Single point of contact for IT support
|
|
21
|
+
- First-line issue resolution
|
|
22
|
+
- Service request fulfillment
|
|
23
|
+
- User satisfaction
|
|
24
|
+
- Knowledge sharing
|
|
25
|
+
|
|
26
|
+
### Help Desk vs Service Desk
|
|
27
|
+
|
|
28
|
+
```yaml
|
|
29
|
+
Help Desk:
|
|
30
|
+
Focus: Technical issue resolution
|
|
31
|
+
Scope: Reactive support (fix problems)
|
|
32
|
+
Goals: Restore service quickly
|
|
33
|
+
Example: Fix printer, reset password
|
|
34
|
+
|
|
35
|
+
Service Desk:
|
|
36
|
+
Focus: Service delivery
|
|
37
|
+
Scope: Proactive + reactive (full ITSM)
|
|
38
|
+
Goals: Service quality, user satisfaction
|
|
39
|
+
Example: Service catalog, SLA management, proactive outreach
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Ticketing Systems
|
|
43
|
+
|
|
44
|
+
### Essential Features
|
|
45
|
+
|
|
46
|
+
```yaml
|
|
47
|
+
Ticket Management:
|
|
48
|
+
- Ticket creation (email, phone, portal, chat)
|
|
49
|
+
- Ticket categorization
|
|
50
|
+
- Priority assignment
|
|
51
|
+
- Status tracking
|
|
52
|
+
- Assignment and routing
|
|
53
|
+
- Escalation management
|
|
54
|
+
- SLA tracking
|
|
55
|
+
|
|
56
|
+
Self-Service:
|
|
57
|
+
- Knowledge base
|
|
58
|
+
- Service catalog
|
|
59
|
+
- Password reset
|
|
60
|
+
- Status checking
|
|
61
|
+
- Common requests
|
|
62
|
+
|
|
63
|
+
Automation:
|
|
64
|
+
- Auto-assignment based on category
|
|
65
|
+
- SLA breach alerts
|
|
66
|
+
- Canned responses
|
|
67
|
+
- Workflow automation
|
|
68
|
+
- Integration with monitoring
|
|
69
|
+
|
|
70
|
+
Reporting:
|
|
71
|
+
- Ticket volume
|
|
72
|
+
- Resolution times
|
|
73
|
+
- SLA compliance
|
|
74
|
+
- Agent performance
|
|
75
|
+
- Customer satisfaction
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
### Ticket Workflow Example
|
|
79
|
+
|
|
80
|
+
```yaml
|
|
81
|
+
ServiceNow Ticket Workflow:
|
|
82
|
+
|
|
83
|
+
1. Ticket Creation:
|
|
84
|
+
Source: Email to helpdesk@company.com
|
|
85
|
+
Auto-created: INC-12345
|
|
86
|
+
Assigned: Unassigned queue
|
|
87
|
+
Status: New
|
|
88
|
+
|
|
89
|
+
2. Auto-Classification:
|
|
90
|
+
Subject: "Cannot access shared drive"
|
|
91
|
+
Category: Network → File Access
|
|
92
|
+
Subcategory: Permissions
|
|
93
|
+
Auto-assigned: Service Desk Queue
|
|
94
|
+
|
|
95
|
+
3. Analyst Assignment:
|
|
96
|
+
Assignment Rule:
|
|
97
|
+
IF category = "File Access"
|
|
98
|
+
THEN assign to "File Services Team"
|
|
99
|
+
Assigned To: John Smith
|
|
100
|
+
Status: Assigned
|
|
101
|
+
|
|
102
|
+
4. Initial Response:
|
|
103
|
+
John opens ticket
|
|
104
|
+
Sends template response:
|
|
105
|
+
"Thank you for contacting IT. Your ticket INC-12345
|
|
106
|
+
has been assigned to me. I will investigate and
|
|
107
|
+
respond within 4 hours per our SLA."
|
|
108
|
+
Status: In Progress
|
|
109
|
+
First Response Time: 5 minutes ✅
|
|
110
|
+
|
|
111
|
+
5. Investigation:
|
|
112
|
+
John checks:
|
|
113
|
+
- User account active? Yes
|
|
114
|
+
- Correct security group? No - missing
|
|
115
|
+
Resolution identified: Add user to security group
|
|
116
|
+
|
|
117
|
+
6. Resolution:
|
|
118
|
+
Action: Added user to "FileShare-Sales" group
|
|
119
|
+
Verification: User confirms access restored
|
|
120
|
+
Resolution Notes: "Added user to correct security group"
|
|
121
|
+
Status: Resolved
|
|
122
|
+
Resolution Time: 25 minutes ✅
|
|
123
|
+
|
|
124
|
+
7. Closure:
|
|
125
|
+
Auto-closure after 3 days (no reopen)
|
|
126
|
+
Survey sent to user
|
|
127
|
+
Status: Closed
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
### Ticket Templates
|
|
131
|
+
|
|
132
|
+
**Standard Response Templates:**
|
|
133
|
+
```yaml
|
|
134
|
+
Acknowledgment:
|
|
135
|
+
"Thank you for contacting IT Support. We have received
|
|
136
|
+
your request [TICKET_NUMBER] and will respond within
|
|
137
|
+
[SLA_TIME]. If urgent, please call the help desk at
|
|
138
|
+
[PHONE]."
|
|
139
|
+
|
|
140
|
+
Password Reset Confirmation:
|
|
141
|
+
"Your password has been reset. A temporary password has
|
|
142
|
+
been sent to your alternate email [EMAIL]. Please change
|
|
143
|
+
your password immediately upon first login."
|
|
144
|
+
|
|
145
|
+
Resolved:
|
|
146
|
+
"Your issue [TICKET_NUMBER] has been resolved. Please
|
|
147
|
+
verify the fix and let us know if you need further
|
|
148
|
+
assistance. This ticket will close automatically in
|
|
149
|
+
3 days if we don't hear from you."
|
|
150
|
+
|
|
151
|
+
Escalated:
|
|
152
|
+
"Your issue [TICKET_NUMBER] requires specialized support.
|
|
153
|
+
I have escalated this to [TEAM] who will contact you
|
|
154
|
+
within [TIME]. You can track progress at [URL]."
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
## Knowledge Base Management
|
|
158
|
+
|
|
159
|
+
### Knowledge Article Structure
|
|
160
|
+
|
|
161
|
+
```yaml
|
|
162
|
+
Knowledge Article: KB-0123
|
|
163
|
+
|
|
164
|
+
Title: How to Connect to Company VPN
|
|
165
|
+
Category: Network Access
|
|
166
|
+
Tags: vpn, remote access, work from home
|
|
167
|
+
Article ID: KB-0123
|
|
168
|
+
Version: 2.1
|
|
169
|
+
Last Updated: 2024-10-15
|
|
170
|
+
Author: IT Help Desk
|
|
171
|
+
|
|
172
|
+
Audience: All employees
|
|
173
|
+
Helpful Votes: 245 👍 / 12 👎
|
|
174
|
+
|
|
175
|
+
Problem Description:
|
|
176
|
+
Unable to connect to company network from home or remote location.
|
|
177
|
+
|
|
178
|
+
Solution:
|
|
179
|
+
|
|
180
|
+
Prerequisites:
|
|
181
|
+
- VPN software installed (download from portal.company.com)
|
|
182
|
+
- Active employee account
|
|
183
|
+
- Multi-factor authentication (MFA) enrolled
|
|
184
|
+
|
|
185
|
+
Steps:
|
|
186
|
+
|
|
187
|
+
1. Open VPN Client:
|
|
188
|
+
- Windows: Start Menu → Cisco AnyConnect
|
|
189
|
+
- Mac: Applications → Cisco AnyConnect
|
|
190
|
+
|
|
191
|
+
2. Enter VPN Address:
|
|
192
|
+
- Type: vpn.company.com
|
|
193
|
+
- Click "Connect"
|
|
194
|
+
|
|
195
|
+
3. Enter Credentials:
|
|
196
|
+
- Username: your.email@company.com
|
|
197
|
+
- Password: your Active Directory password
|
|
198
|
+
|
|
199
|
+
4. Approve MFA:
|
|
200
|
+
- Check your phone for MFA push notification
|
|
201
|
+
- Approve the request
|
|
202
|
+
|
|
203
|
+
5. Verify Connection:
|
|
204
|
+
- Look for green "Connected" status
|
|
205
|
+
- Try accessing internal resources
|
|
206
|
+
|
|
207
|
+
Troubleshooting:
|
|
208
|
+
|
|
209
|
+
Cannot connect:
|
|
210
|
+
- Verify internet connection working
|
|
211
|
+
- Check VPN software version (must be 4.10+)
|
|
212
|
+
- Contact help desk if persists
|
|
213
|
+
|
|
214
|
+
MFA not received:
|
|
215
|
+
- Check phone has internet/cellular
|
|
216
|
+
- Try "Send me a code" option
|
|
217
|
+
- Contact help desk to reset MFA
|
|
218
|
+
|
|
219
|
+
Still need help?
|
|
220
|
+
Contact IT Help Desk:
|
|
221
|
+
- Phone: (555) 123-4567
|
|
222
|
+
- Email: helpdesk@company.com
|
|
223
|
+
- Portal: support.company.com
|
|
224
|
+
|
|
225
|
+
Related Articles:
|
|
226
|
+
- KB-0124: How to Install VPN Client
|
|
227
|
+
- KB-0125: Multi-Factor Authentication Setup
|
|
228
|
+
- KB-0126: Troubleshooting VPN Connection Issues
|
|
229
|
+
|
|
230
|
+
Attachments:
|
|
231
|
+
- vpn-setup-guide.pdf
|
|
232
|
+
- screenshots-vpn-connection.png
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
### Knowledge Base Categories
|
|
236
|
+
|
|
237
|
+
```yaml
|
|
238
|
+
Knowledge Base Structure:
|
|
239
|
+
|
|
240
|
+
Hardware:
|
|
241
|
+
- Desktop & Laptop
|
|
242
|
+
- Mobile Devices
|
|
243
|
+
- Printers
|
|
244
|
+
- Peripherals
|
|
245
|
+
|
|
246
|
+
Software:
|
|
247
|
+
- Applications
|
|
248
|
+
- Operating Systems
|
|
249
|
+
- Browsers
|
|
250
|
+
- Productivity Tools
|
|
251
|
+
|
|
252
|
+
Network:
|
|
253
|
+
- VPN
|
|
254
|
+
- WiFi
|
|
255
|
+
- Email
|
|
256
|
+
- File Access
|
|
257
|
+
|
|
258
|
+
Accounts:
|
|
259
|
+
- Password Reset
|
|
260
|
+
- Account Setup
|
|
261
|
+
- Permissions
|
|
262
|
+
- MFA
|
|
263
|
+
|
|
264
|
+
How-To Guides:
|
|
265
|
+
- Getting Started
|
|
266
|
+
- Common Tasks
|
|
267
|
+
- Best Practices
|
|
268
|
+
- FAQs
|
|
269
|
+
```
|
|
270
|
+
|
|
271
|
+
### Knowledge Management Process
|
|
272
|
+
|
|
273
|
+
```yaml
|
|
274
|
+
KB Lifecycle:
|
|
275
|
+
|
|
276
|
+
1. Create:
|
|
277
|
+
Triggers:
|
|
278
|
+
- Recurring incidents (3+ same issue)
|
|
279
|
+
- Common questions
|
|
280
|
+
- New services launched
|
|
281
|
+
- Process changes
|
|
282
|
+
|
|
283
|
+
Process:
|
|
284
|
+
- Write draft article
|
|
285
|
+
- Add screenshots/videos
|
|
286
|
+
- Include troubleshooting
|
|
287
|
+
- Peer review
|
|
288
|
+
|
|
289
|
+
2. Approve:
|
|
290
|
+
- Technical accuracy review
|
|
291
|
+
- Style and clarity check
|
|
292
|
+
- Completeness verification
|
|
293
|
+
- Publish approval
|
|
294
|
+
|
|
295
|
+
3. Publish:
|
|
296
|
+
- Add to knowledge base
|
|
297
|
+
- Tag appropriately
|
|
298
|
+
- Link related articles
|
|
299
|
+
- Announce to team
|
|
300
|
+
|
|
301
|
+
4. Maintain:
|
|
302
|
+
- Monitor helpfulness votes
|
|
303
|
+
- Update when outdated
|
|
304
|
+
- Add additional troubleshooting
|
|
305
|
+
- Quarterly review
|
|
306
|
+
|
|
307
|
+
5. Retire:
|
|
308
|
+
- Archive obsolete articles
|
|
309
|
+
- Redirect to new article
|
|
310
|
+
- Remove broken links
|
|
311
|
+
- Clean up search results
|
|
312
|
+
|
|
313
|
+
Metrics:
|
|
314
|
+
- Articles published: 50/quarter (target)
|
|
315
|
+
- Article helpfulness: >90% positive
|
|
316
|
+
- Self-service resolution: >30% of tickets
|
|
317
|
+
- Article age: <12 months average
|
|
318
|
+
```
|
|
319
|
+
|
|
320
|
+
## User Support Best Practices
|
|
321
|
+
|
|
322
|
+
### Customer Service Excellence
|
|
323
|
+
|
|
324
|
+
**1. First Contact Resolution:**
|
|
325
|
+
```yaml
|
|
326
|
+
Goal: Resolve issues on first contact
|
|
327
|
+
|
|
328
|
+
Strategies:
|
|
329
|
+
- Comprehensive training
|
|
330
|
+
- Robust knowledge base
|
|
331
|
+
- Empowerment to resolve
|
|
332
|
+
- Access to tools and resources
|
|
333
|
+
- Escalation when needed (not delay)
|
|
334
|
+
|
|
335
|
+
Metrics:
|
|
336
|
+
Target: >70% FCR
|
|
337
|
+
Measurement: Resolved without escalation or callback
|
|
338
|
+
```
|
|
339
|
+
|
|
340
|
+
**2. Effective Communication:**
|
|
341
|
+
```yaml
|
|
342
|
+
Active Listening:
|
|
343
|
+
- Let user fully describe issue
|
|
344
|
+
- Ask clarifying questions
|
|
345
|
+
- Confirm understanding
|
|
346
|
+
- Avoid interrupting
|
|
347
|
+
|
|
348
|
+
Clear Explanation:
|
|
349
|
+
- Use simple language (avoid jargon)
|
|
350
|
+
- Step-by-step instructions
|
|
351
|
+
- Verify user understanding
|
|
352
|
+
- Provide written summary
|
|
353
|
+
|
|
354
|
+
Empathy:
|
|
355
|
+
- Acknowledge frustration
|
|
356
|
+
- Show understanding
|
|
357
|
+
- Apologize for inconvenience
|
|
358
|
+
- Focus on solution
|
|
359
|
+
```
|
|
360
|
+
|
|
361
|
+
**3. Time Management:**
|
|
362
|
+
```yaml
|
|
363
|
+
Efficient Support:
|
|
364
|
+
- Use templates for common responses
|
|
365
|
+
- Leverage knowledge base
|
|
366
|
+
- Parallel troubleshooting (not sequential)
|
|
367
|
+
- Know when to escalate
|
|
368
|
+
- Document as you go
|
|
369
|
+
|
|
370
|
+
Avoid:
|
|
371
|
+
- Excessive troubleshooting (diminishing returns)
|
|
372
|
+
- Rabbit holes (stay focused)
|
|
373
|
+
- Over-explaining (be concise)
|
|
374
|
+
```
|
|
375
|
+
|
|
376
|
+
### Support Channels
|
|
377
|
+
|
|
378
|
+
```yaml
|
|
379
|
+
Phone Support:
|
|
380
|
+
Best For:
|
|
381
|
+
- Urgent issues
|
|
382
|
+
- Complex troubleshooting
|
|
383
|
+
- User training
|
|
384
|
+
- Escalations
|
|
385
|
+
|
|
386
|
+
Pros:
|
|
387
|
+
- Immediate interaction
|
|
388
|
+
- Build rapport
|
|
389
|
+
- Real-time guidance
|
|
390
|
+
|
|
391
|
+
Cons:
|
|
392
|
+
- Highest cost
|
|
393
|
+
- Limited documentation
|
|
394
|
+
- Availability constraints
|
|
395
|
+
|
|
396
|
+
Email Support:
|
|
397
|
+
Best For:
|
|
398
|
+
- Non-urgent issues
|
|
399
|
+
- Detailed instructions
|
|
400
|
+
- Documentation trail
|
|
401
|
+
- Async communication
|
|
402
|
+
|
|
403
|
+
Pros:
|
|
404
|
+
- Written record
|
|
405
|
+
- User convenience
|
|
406
|
+
- Cost-effective
|
|
407
|
+
|
|
408
|
+
Cons:
|
|
409
|
+
- Slower resolution
|
|
410
|
+
- Miscommunication risk
|
|
411
|
+
- Back-and-forth delays
|
|
412
|
+
|
|
413
|
+
Chat Support:
|
|
414
|
+
Best For:
|
|
415
|
+
- Quick questions
|
|
416
|
+
- Real-time assistance
|
|
417
|
+
- Multitasking users
|
|
418
|
+
- Common issues
|
|
419
|
+
|
|
420
|
+
Pros:
|
|
421
|
+
- Fast response
|
|
422
|
+
- Convenient
|
|
423
|
+
- Written record
|
|
424
|
+
- Lower cost than phone
|
|
425
|
+
|
|
426
|
+
Cons:
|
|
427
|
+
- Limited for complex issues
|
|
428
|
+
- Typing speed matters
|
|
429
|
+
- Less personal
|
|
430
|
+
|
|
431
|
+
Self-Service Portal:
|
|
432
|
+
Best For:
|
|
433
|
+
- Password resets
|
|
434
|
+
- Knowledge base access
|
|
435
|
+
- Service requests
|
|
436
|
+
- Status checking
|
|
437
|
+
|
|
438
|
+
Pros:
|
|
439
|
+
- 24/7 availability
|
|
440
|
+
- Lowest cost
|
|
441
|
+
- User empowerment
|
|
442
|
+
- Scalable
|
|
443
|
+
|
|
444
|
+
Cons:
|
|
445
|
+
- Not for all issues
|
|
446
|
+
- Requires maintenance
|
|
447
|
+
- User adoption needed
|
|
448
|
+
```
|
|
449
|
+
|
|
450
|
+
## SLA Tracking
|
|
451
|
+
|
|
452
|
+
### SLA Dashboard
|
|
453
|
+
|
|
454
|
+
```yaml
|
|
455
|
+
Real-Time SLA Dashboard:
|
|
456
|
+
|
|
457
|
+
Priority 1 (Critical):
|
|
458
|
+
Target Response: 15 minutes
|
|
459
|
+
Target Resolution: 4 hours
|
|
460
|
+
|
|
461
|
+
Current Performance:
|
|
462
|
+
Open Tickets: 2
|
|
463
|
+
Within SLA: 2 ✅
|
|
464
|
+
At Risk: 0
|
|
465
|
+
Breached: 0
|
|
466
|
+
|
|
467
|
+
Average Response: 8 minutes ✅
|
|
468
|
+
Average Resolution: 2.5 hours ✅
|
|
469
|
+
|
|
470
|
+
Priority 2 (High):
|
|
471
|
+
Target Response: 1 hour
|
|
472
|
+
Target Resolution: 8 hours
|
|
473
|
+
|
|
474
|
+
Current Performance:
|
|
475
|
+
Open Tickets: 15
|
|
476
|
+
Within SLA: 12 ✅
|
|
477
|
+
At Risk: 2 ⚠️ (approaching breach)
|
|
478
|
+
Breached: 1 ❌
|
|
479
|
+
|
|
480
|
+
Average Response: 35 minutes ✅
|
|
481
|
+
Average Resolution: 6.5 hours ✅
|
|
482
|
+
|
|
483
|
+
Priority 3 (Medium):
|
|
484
|
+
Target Response: 4 hours
|
|
485
|
+
Target Resolution: 24 hours
|
|
486
|
+
|
|
487
|
+
Current Performance:
|
|
488
|
+
Open Tickets: 45
|
|
489
|
+
Within SLA: 42 ✅
|
|
490
|
+
At Risk: 2 ⚠️
|
|
491
|
+
Breached: 1 ❌
|
|
492
|
+
|
|
493
|
+
Average Response: 2.5 hours ✅
|
|
494
|
+
Average Resolution: 18 hours ✅
|
|
495
|
+
|
|
496
|
+
Overall SLA Compliance: 94.2% ✅ (Target: >90%)
|
|
497
|
+
```
|
|
498
|
+
|
|
499
|
+
### SLA Breach Prevention
|
|
500
|
+
|
|
501
|
+
```yaml
|
|
502
|
+
Proactive SLA Management:
|
|
503
|
+
|
|
504
|
+
1. Automated Alerts:
|
|
505
|
+
- 50% of SLA elapsed → Reminder to analyst
|
|
506
|
+
- 75% of SLA elapsed → Alert to team lead
|
|
507
|
+
- 90% of SLA elapsed → Escalation to manager
|
|
508
|
+
- 100% of SLA elapsed → Breach notification
|
|
509
|
+
|
|
510
|
+
2. Workload Balancing:
|
|
511
|
+
- Monitor queue depth
|
|
512
|
+
- Reassign tickets if needed
|
|
513
|
+
- Call for backup during spikes
|
|
514
|
+
- Overtime approval for coverage
|
|
515
|
+
|
|
516
|
+
3. Priority Queues:
|
|
517
|
+
- P1/P2 tickets visible to all
|
|
518
|
+
- Dedicated senior analysts for P1
|
|
519
|
+
- Clear escalation paths
|
|
520
|
+
- Regular queue reviews
|
|
521
|
+
|
|
522
|
+
4. Capacity Planning:
|
|
523
|
+
- Historical ticket volume analysis
|
|
524
|
+
- Staffing models
|
|
525
|
+
- Shift coverage optimization
|
|
526
|
+
- Training pipeline
|
|
527
|
+
```
|
|
528
|
+
|
|
529
|
+
## Performance Metrics
|
|
530
|
+
|
|
531
|
+
### Individual Analyst Metrics
|
|
532
|
+
|
|
533
|
+
```yaml
|
|
534
|
+
Analyst Scorecard: John Smith
|
|
535
|
+
Period: October 2024
|
|
536
|
+
|
|
537
|
+
Productivity:
|
|
538
|
+
- Tickets Handled: 245
|
|
539
|
+
- Average per Day: 12.3
|
|
540
|
+
- First Contact Resolution: 78% ✅ (Target: 70%)
|
|
541
|
+
- Average Handle Time: 8.5 min ✅ (Target: <10 min)
|
|
542
|
+
|
|
543
|
+
Quality:
|
|
544
|
+
- Customer Satisfaction: 4.6/5.0 ✅ (Target: 4.0+)
|
|
545
|
+
- Ticket Reopen Rate: 3% ✅ (Target: <5%)
|
|
546
|
+
- Knowledge Articles Created: 2
|
|
547
|
+
- Peer Reviews: 5
|
|
548
|
+
|
|
549
|
+
SLA Performance:
|
|
550
|
+
- Response SLA Met: 98% ✅ (Target: 95%)
|
|
551
|
+
- Resolution SLA Met: 95% ✅ (Target: 90%)
|
|
552
|
+
- Average Response Time: 4.2 min ✅
|
|
553
|
+
- Average Resolution Time: 35 min ✅
|
|
554
|
+
|
|
555
|
+
Development:
|
|
556
|
+
- Training Completed: Advanced Troubleshooting ✅
|
|
557
|
+
- Certifications: CompTIA A+ renewed ✅
|
|
558
|
+
- Mentoring: Training 2 new analysts ✅
|
|
559
|
+
```
|
|
560
|
+
|
|
561
|
+
### Team Metrics
|
|
562
|
+
|
|
563
|
+
```yaml
|
|
564
|
+
Help Desk Team Metrics
|
|
565
|
+
Month: October 2024
|
|
566
|
+
|
|
567
|
+
Volume:
|
|
568
|
+
- Total Tickets: 3,450
|
|
569
|
+
- Avg per Day: 158
|
|
570
|
+
- Trend: ▼ 5% vs September ✅
|
|
571
|
+
|
|
572
|
+
Resolution:
|
|
573
|
+
- First Contact Resolution: 74% ✅
|
|
574
|
+
- Escalation Rate: 22% ✅ (Target: <30%)
|
|
575
|
+
- Average Resolution Time: 42 minutes ✅
|
|
576
|
+
|
|
577
|
+
Customer Satisfaction:
|
|
578
|
+
- CSAT Score: 4.3/5.0 ✅
|
|
579
|
+
- Survey Response Rate: 65%
|
|
580
|
+
- NPS: +38 ✅
|
|
581
|
+
|
|
582
|
+
SLA Compliance:
|
|
583
|
+
- Overall: 94% ✅ (Target: 90%)
|
|
584
|
+
- P1: 100% ✅
|
|
585
|
+
- P2: 96% ✅
|
|
586
|
+
- P3: 92% ✅
|
|
587
|
+
- P4: 90% ✅
|
|
588
|
+
|
|
589
|
+
Top Issues:
|
|
590
|
+
1. Password resets (18%)
|
|
591
|
+
2. VPN connectivity (12%)
|
|
592
|
+
3. Email issues (10%)
|
|
593
|
+
4. Software installation (8%)
|
|
594
|
+
5. Printer problems (7%)
|
|
595
|
+
|
|
596
|
+
Opportunities:
|
|
597
|
+
- Increase self-service adoption
|
|
598
|
+
- Reduce VPN incidents (knowledge base update)
|
|
599
|
+
- Automate password resets
|
|
600
|
+
```
|
|
601
|
+
|
|
602
|
+
## Best Practices
|
|
603
|
+
|
|
604
|
+
### 1. Comprehensive Training
|
|
605
|
+
|
|
606
|
+
```yaml
|
|
607
|
+
Training Program:
|
|
608
|
+
|
|
609
|
+
New Hire Onboarding (2 weeks):
|
|
610
|
+
Week 1:
|
|
611
|
+
- Company overview
|
|
612
|
+
- IT systems and tools
|
|
613
|
+
- Ticketing system training
|
|
614
|
+
- Knowledge base navigation
|
|
615
|
+
- Service catalog
|
|
616
|
+
- Communication skills
|
|
617
|
+
|
|
618
|
+
Week 2:
|
|
619
|
+
- Shadow senior analyst
|
|
620
|
+
- Handle tickets (supervised)
|
|
621
|
+
- Customer service scenarios
|
|
622
|
+
- Escalation procedures
|
|
623
|
+
- Practice sessions
|
|
624
|
+
- Assessment
|
|
625
|
+
|
|
626
|
+
Ongoing Training:
|
|
627
|
+
- Monthly: Product updates
|
|
628
|
+
- Quarterly: Advanced topics
|
|
629
|
+
- Annual: Customer service refresher
|
|
630
|
+
- As needed: New technologies
|
|
631
|
+
```
|
|
632
|
+
|
|
633
|
+
### 2. Knowledge Sharing
|
|
634
|
+
|
|
635
|
+
```yaml
|
|
636
|
+
Knowledge Sharing Practices:
|
|
637
|
+
|
|
638
|
+
Daily:
|
|
639
|
+
- Quick team huddle (15 min)
|
|
640
|
+
- Share tricky issues
|
|
641
|
+
- Discuss new solutions
|
|
642
|
+
|
|
643
|
+
Weekly:
|
|
644
|
+
- Team meeting (1 hour)
|
|
645
|
+
- Review metrics
|
|
646
|
+
- Process improvements
|
|
647
|
+
- Training topics
|
|
648
|
+
|
|
649
|
+
Monthly:
|
|
650
|
+
- Knowledge base review
|
|
651
|
+
- Article creation sprint
|
|
652
|
+
- Cross-training sessions
|
|
653
|
+
|
|
654
|
+
Tools:
|
|
655
|
+
- Shared documentation
|
|
656
|
+
- Team chat channel
|
|
657
|
+
- Wiki or knowledge base
|
|
658
|
+
- Screen recording for complex fixes
|
|
659
|
+
```
|
|
660
|
+
|
|
661
|
+
### 3. Continuous Improvement
|
|
662
|
+
|
|
663
|
+
```yaml
|
|
664
|
+
Improvement Initiatives:
|
|
665
|
+
|
|
666
|
+
Process Optimization:
|
|
667
|
+
- Identify repeat issues → Create KB articles
|
|
668
|
+
- High-volume tickets → Automation opportunities
|
|
669
|
+
- Long resolution times → Training needs
|
|
670
|
+
- Escalations → First-line capability gaps
|
|
671
|
+
|
|
672
|
+
Quality Monitoring:
|
|
673
|
+
- Random ticket reviews (10% sample)
|
|
674
|
+
- Calibration sessions
|
|
675
|
+
- Customer feedback analysis
|
|
676
|
+
- Root cause analysis
|
|
677
|
+
|
|
678
|
+
Automation:
|
|
679
|
+
- Self-service expansion
|
|
680
|
+
- Chatbot for common questions
|
|
681
|
+
- Auto-remediation scripts
|
|
682
|
+
- Workflow automation
|
|
683
|
+
```
|
|
684
|
+
|
|
685
|
+
### 4. User Empowerment
|
|
686
|
+
|
|
687
|
+
```yaml
|
|
688
|
+
Self-Service Strategy:
|
|
689
|
+
|
|
690
|
+
Portal Features:
|
|
691
|
+
- Password reset (no help desk needed)
|
|
692
|
+
- Common requests (catalog items)
|
|
693
|
+
- Knowledge base search
|
|
694
|
+
- Ticket status tracking
|
|
695
|
+
- Service outage notifications
|
|
696
|
+
|
|
697
|
+
Adoption:
|
|
698
|
+
- Marketing self-service portal
|
|
699
|
+
- Training sessions
|
|
700
|
+
- Quick reference guides
|
|
701
|
+
- Incentives (faster resolution)
|
|
702
|
+
|
|
703
|
+
Metrics:
|
|
704
|
+
- Self-service usage: 35% ✅ (Target: 30%)
|
|
705
|
+
- Portal satisfaction: 4.2/5.0 ✅
|
|
706
|
+
- Password resets via portal: 95% ✅
|
|
707
|
+
```
|
|
708
|
+
|
|
709
|
+
### 5. Work-Life Balance
|
|
710
|
+
|
|
711
|
+
```yaml
|
|
712
|
+
Analyst Wellbeing:
|
|
713
|
+
|
|
714
|
+
Schedule:
|
|
715
|
+
- Fair shift rotation
|
|
716
|
+
- Predictable schedules
|
|
717
|
+
- Adequate breaks
|
|
718
|
+
- No excessive overtime
|
|
719
|
+
|
|
720
|
+
Workload:
|
|
721
|
+
- Realistic ticket quotas
|
|
722
|
+
- Team support during spikes
|
|
723
|
+
- Mental health days
|
|
724
|
+
- Stress management resources
|
|
725
|
+
|
|
726
|
+
Recognition:
|
|
727
|
+
- Monthly awards (top performer)
|
|
728
|
+
- Public recognition
|
|
729
|
+
- Career development
|
|
730
|
+
- Promotion opportunities
|
|
731
|
+
```
|
|
732
|
+
|
|
733
|
+
---
|
|
734
|
+
|
|
735
|
+
**Related Resources:**
|
|
736
|
+
- [service-management.md](service-management.md) - Service desk operations
|
|
737
|
+
- [incident-service-management.md](incident-service-management.md) - Incident management
|
|
738
|
+
- [automation-orchestration.md](automation-orchestration.md) - Service automation
|