blockmine 1.24.0 → 1.27.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/CHANGELOG.md +76 -1
- package/README.en.md +427 -0
- package/README.md +40 -0
- package/backend/package.json +2 -2
- package/backend/prisma/migrations/20260328173000_add_plugin_source_ref/migration.sql +2 -0
- package/backend/prisma/migrations/migration_lock.toml +2 -2
- package/backend/prisma/schema.prisma +2 -0
- package/backend/src/ai/plugin-assistant-system-prompt.md +664 -5
- package/backend/src/api/routes/apiKeys.js +8 -0
- package/backend/src/api/routes/bots.js +271 -9
- package/backend/src/api/routes/eventGraphs.js +151 -1
- package/backend/src/api/routes/health.js +38 -0
- package/backend/src/api/routes/nodeRegistry.js +63 -0
- package/backend/src/api/routes/plugins.js +254 -29
- package/backend/src/api/routes/servers.js +14 -2
- package/backend/src/container.js +11 -8
- package/backend/src/core/BotCommandLoader.js +161 -0
- package/backend/src/core/BotConnection.js +125 -0
- package/backend/src/core/BotEventHandlers.js +234 -0
- package/backend/src/core/BotIPCHandler.js +445 -0
- package/backend/src/core/BotManager.js +15 -7
- package/backend/src/core/BotProcess.js +169 -140
- package/backend/src/core/EventGraphManager.js +7 -3
- package/backend/src/core/GraphDebugHandler.js +229 -0
- package/backend/src/core/GraphDebugIPC.js +117 -0
- package/backend/src/core/GraphExecutionEngine.js +545 -978
- package/backend/src/core/GraphTraversal.js +80 -0
- package/backend/src/core/GraphValidation.js +73 -0
- package/backend/src/core/NodeDefinition.js +138 -0
- package/backend/src/core/NodeRegistry.js +153 -141
- package/backend/src/core/PluginLoader.js +83 -3
- package/backend/src/core/PluginManager.js +346 -35
- package/backend/src/core/RewindSignal.js +9 -0
- package/backend/src/core/config/ConfigValidator.js +72 -0
- package/backend/src/core/config/FeatureFlags.js +52 -0
- package/backend/src/core/config/__tests__/ConfigValidator.test.js +232 -0
- package/backend/src/core/domain/entities/Bot.js +39 -0
- package/backend/src/core/domain/entities/Command.js +41 -0
- package/backend/src/core/domain/entities/EventGraph.js +39 -0
- package/backend/src/core/domain/entities/Plugin.js +45 -0
- package/backend/src/core/domain/entities/User.js +40 -0
- package/backend/src/core/domain/services/DependencyResolver.js +168 -0
- package/backend/src/core/domain/services/GraphValidator.js +117 -0
- package/backend/src/core/domain/services/PermissionChecker.js +34 -0
- package/backend/src/core/domain/services/__tests__/DependencyResolver.test.js +126 -0
- package/backend/src/core/domain/valueObjects/BotConfig.js +27 -0
- package/backend/src/core/domain/valueObjects/DependencyGraph.js +86 -0
- package/backend/src/core/domain/valueObjects/PluginManifest.js +36 -0
- package/backend/src/core/errors/BaseError.js +29 -0
- package/backend/src/core/errors/ErrorHandler.js +81 -0
- package/backend/src/core/errors/__tests__/ErrorHandler.test.js +188 -0
- package/backend/src/core/errors/index.js +68 -0
- package/backend/src/core/infrastructure/BatchingUtility.js +66 -0
- package/backend/src/core/infrastructure/CircuitBreaker.js +103 -0
- package/backend/src/core/infrastructure/ConnectionPool.js +81 -0
- package/backend/src/core/infrastructure/RateLimiter.js +64 -0
- package/backend/src/core/infrastructure/__tests__/BatchingUtility.test.js +86 -0
- package/backend/src/core/infrastructure/__tests__/CircuitBreaker.test.js +156 -0
- package/backend/src/core/infrastructure/__tests__/ConnectionPool.test.js +146 -0
- package/backend/src/core/infrastructure/__tests__/RateLimiter.test.js +171 -0
- package/backend/src/core/ipc/botApiFactory.js +72 -0
- package/backend/src/core/ipc/ipcMessageTypes.js +115 -0
- package/backend/src/core/logging/AuditLogger.js +61 -0
- package/backend/src/core/logging/StructuredLogger.js +80 -0
- package/backend/src/core/logging/__tests__/StructuredLogger.test.js +213 -0
- package/backend/src/core/logging/index.js +7 -0
- package/backend/src/core/metrics/MetricsCollector.js +104 -0
- package/backend/src/core/metrics/__tests__/MetricsCollector.test.js +131 -0
- package/backend/src/core/node-registries/actionsNodes.js +191 -0
- package/backend/src/core/node-registries/arraysNodes.js +152 -0
- package/backend/src/core/node-registries/botNodes.js +48 -0
- package/backend/src/core/node-registries/containerNodes.js +141 -0
- package/backend/src/core/node-registries/dataNodes.js +284 -0
- package/backend/src/core/node-registries/debugNodes.js +23 -0
- package/backend/src/core/node-registries/eventsNodes.js +223 -0
- package/backend/src/core/node-registries/flowNodes.js +151 -0
- package/backend/src/core/node-registries/furnaceNodes.js +123 -0
- package/backend/src/core/node-registries/index.js +108 -0
- package/backend/src/core/node-registries/inventory.js +102 -106
- package/backend/src/core/node-registries/logicNodes.js +54 -0
- package/backend/src/core/node-registries/mathNodes.js +38 -0
- package/backend/src/core/node-registries/navigationNodes.js +109 -0
- package/backend/src/core/node-registries/objectsNodes.js +90 -0
- package/backend/src/core/node-registries/stringsNodes.js +165 -0
- package/backend/src/core/node-registries/timeNodes.js +105 -0
- package/backend/src/core/node-registries/typeNodes.js +22 -0
- package/backend/src/core/node-registries/usersNodes.js +126 -0
- package/backend/src/core/nodes/arrays/shuffle.js +14 -0
- package/backend/src/core/nodes/bot/get_name.js +8 -0
- package/backend/src/core/nodes/bot/stop_bot.js +5 -0
- package/backend/src/core/nodes/container/open.js +101 -111
- package/backend/src/core/nodes/data/store_read.js +26 -0
- package/backend/src/core/nodes/data/store_write.js +23 -0
- package/backend/src/core/nodes/event/call_event.js +31 -0
- package/backend/src/core/nodes/event/custom_event.js +8 -0
- package/backend/src/core/nodes/flow/timer.js +35 -0
- package/backend/src/core/nodes/inventory/drop.js +73 -65
- package/backend/src/core/nodes/inventory/equip.js +54 -45
- package/backend/src/core/nodes/inventory/select_slot.js +48 -46
- package/backend/src/core/nodes/navigation/follow.js +54 -51
- package/backend/src/core/nodes/navigation/go_to.js +41 -53
- package/backend/src/core/nodes/navigation/go_to_entity.js +65 -69
- package/backend/src/core/nodes/navigation/go_to_player.js +65 -70
- package/backend/src/core/nodes/navigation/stop.js +17 -26
- package/backend/src/core/nodes/users/add_to_group.js +24 -0
- package/backend/src/core/nodes/users/check_permission.js +26 -0
- package/backend/src/core/nodes/users/remove_from_group.js +24 -0
- package/backend/src/core/services/BotIPCMessageRouter.js +337 -0
- package/backend/src/core/services/BotLifecycleService.js +43 -450
- package/backend/src/core/services/CacheManager.js +83 -23
- package/backend/src/core/services/CrashRestartManager.js +42 -0
- package/backend/src/core/services/DebugSessionManager.js +114 -12
- package/backend/src/core/services/EventGraphService.js +69 -0
- package/backend/src/core/services/MinecraftBotManager.js +9 -1
- package/backend/src/core/services/PluginManagementService.js +84 -0
- package/backend/src/core/services/TestModeContext.js +65 -0
- package/backend/src/core/services/__tests__/CacheManager.test.js +168 -0
- package/backend/src/core/services.js +1 -11
- package/backend/src/core/validation/InputValidator.js +167 -0
- package/backend/src/core/validation/__tests__/InputValidator.test.js +296 -0
- package/backend/src/real-time/botApi/index.js +1 -1
- package/backend/src/real-time/socketHandler.js +26 -0
- package/backend/src/server.js +21 -6
- package/frontend/dist/assets/browser-ponyfill-D8y0Ty7C.js +2 -0
- package/frontend/dist/assets/index-CFJLS0dk.css +32 -0
- package/frontend/dist/assets/index-D91UGNMG.js +11260 -0
- package/frontend/dist/flags/en.svg +32 -0
- package/frontend/dist/flags/ru.svg +5 -0
- package/frontend/dist/index.html +2 -2
- package/frontend/dist/locales/en/admin.json +100 -0
- package/frontend/dist/locales/en/api-keys.json +58 -0
- package/frontend/dist/locales/en/bots.json +113 -0
- package/frontend/dist/locales/en/common.json +53 -0
- package/frontend/dist/locales/en/configuration.json +22 -0
- package/frontend/dist/locales/en/console.json +10 -0
- package/frontend/dist/locales/en/dashboard.json +85 -0
- package/frontend/dist/locales/en/dialogs.json +70 -0
- package/frontend/dist/locales/en/event-graphs.json +50 -0
- package/frontend/dist/locales/en/graph-store.json +70 -0
- package/frontend/dist/locales/en/login.json +36 -0
- package/frontend/dist/locales/en/management.json +192 -0
- package/frontend/dist/locales/en/minecraft-viewer.json +27 -0
- package/frontend/dist/locales/en/nodes.json +1132 -0
- package/frontend/dist/locales/en/permissions.json +50 -0
- package/frontend/dist/locales/en/plugin-detail.json +69 -0
- package/frontend/dist/locales/en/plugins.json +329 -0
- package/frontend/dist/locales/en/proxies.json +81 -0
- package/frontend/dist/locales/en/servers.json +39 -0
- package/frontend/dist/locales/en/setup.json +19 -0
- package/frontend/dist/locales/en/sidebar.json +195 -0
- package/frontend/dist/locales/en/tasks.json +62 -0
- package/frontend/dist/locales/en/visual-editor.json +418 -0
- package/frontend/dist/locales/en/websocket.json +86 -0
- package/frontend/dist/locales/ru/admin.json +100 -0
- package/frontend/dist/locales/ru/api-keys.json +58 -0
- package/frontend/dist/locales/ru/bots.json +113 -0
- package/frontend/dist/locales/ru/common.json +49 -0
- package/frontend/dist/locales/ru/configuration.json +22 -0
- package/frontend/dist/locales/ru/console.json +10 -0
- package/frontend/dist/locales/ru/dashboard.json +85 -0
- package/frontend/dist/locales/ru/dialogs.json +70 -0
- package/frontend/dist/locales/ru/event-graphs.json +50 -0
- package/frontend/dist/locales/ru/graph-store.json +70 -0
- package/frontend/dist/locales/ru/login.json +36 -0
- package/frontend/dist/locales/ru/management.json +192 -0
- package/frontend/dist/locales/ru/minecraft-viewer.json +30 -0
- package/frontend/dist/locales/ru/nodes.json +1131 -0
- package/frontend/dist/locales/ru/permissions.json +50 -0
- package/frontend/dist/locales/ru/plugin-detail.json +49 -0
- package/frontend/dist/locales/ru/plugins.json +209 -0
- package/frontend/dist/locales/ru/proxies.json +81 -0
- package/frontend/dist/locales/ru/servers.json +39 -0
- package/frontend/dist/locales/ru/setup.json +19 -0
- package/frontend/dist/locales/ru/sidebar.json +195 -0
- package/frontend/dist/locales/ru/tasks.json +62 -0
- package/frontend/dist/locales/ru/visual-editor.json +420 -0
- package/frontend/dist/locales/ru/websocket.json +86 -0
- package/frontend/dist/monacoeditorwork/css.worker.bundle.js +7 -7
- package/frontend/dist/monacoeditorwork/html.worker.bundle.js +7 -7
- package/frontend/dist/monacoeditorwork/json.worker.bundle.js +7 -7
- package/frontend/dist/monacoeditorwork/ts.worker.bundle.js +3 -3
- package/frontend/package.json +6 -0
- package/nul +12 -0
- package/package.json +3 -3
- package/screen/3dviewer.png +0 -0
- 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/language_selector.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/.claude/agents/README.md +0 -469
- package/.claude/agents/auth-route-debugger.md +0 -118
- package/.claude/agents/auth-route-tester.md +0 -93
- package/.claude/agents/auto-error-resolver.md +0 -97
- package/.claude/agents/build-optimizer.md +0 -236
- package/.claude/agents/code-architect.md +0 -34
- package/.claude/agents/code-architecture-reviewer.md +0 -83
- package/.claude/agents/code-explorer.md +0 -51
- package/.claude/agents/code-refactor-master.md +0 -94
- package/.claude/agents/code-reviewer.md +0 -46
- package/.claude/agents/cost-optimizer.md +0 -134
- package/.claude/agents/deployment-orchestrator.md +0 -113
- package/.claude/agents/documentation-architect.md +0 -82
- package/.claude/agents/frontend-error-fixer.md +0 -77
- package/.claude/agents/iac-code-generator.md +0 -71
- package/.claude/agents/incident-responder.md +0 -346
- package/.claude/agents/infrastructure-architect.md +0 -31
- package/.claude/agents/kubernetes-specialist.md +0 -56
- package/.claude/agents/migration-planner.md +0 -181
- package/.claude/agents/network-architect.md +0 -196
- package/.claude/agents/plan-reviewer.md +0 -52
- package/.claude/agents/refactor-planner.md +0 -63
- package/.claude/agents/security-scanner.md +0 -102
- package/.claude/agents/web-research-specialist.md +0 -78
- package/.claude/commands/cost-analysis.md +0 -315
- package/.claude/commands/dev-docs-update.md +0 -55
- package/.claude/commands/dev-docs.md +0 -51
- package/.claude/commands/feature-dev.md +0 -125
- package/.claude/commands/incident-debug.md +0 -247
- package/.claude/commands/infra-plan.md +0 -81
- package/.claude/commands/migration-plan.md +0 -478
- package/.claude/commands/route-research-for-testing.md +0 -37
- package/.claude/commands/security-review.md +0 -66
- package/.claude/hooks/CONFIG.md +0 -448
- package/.claude/hooks/README.md +0 -163
- package/.claude/hooks/SKILL_ACTIVATION_COMPLETE.md +0 -226
- package/.claude/hooks/WINDOWS_HOOKS_README.md +0 -151
- package/.claude/hooks/add-skill-activation-banners.ts +0 -132
- package/.claude/hooks/comprehensive-skill-test.ts +0 -1315
- package/.claude/hooks/error-handling-reminder.sh +0 -12
- package/.claude/hooks/error-handling-reminder.ts +0 -222
- package/.claude/hooks/k8s-manifest-validator.sh +0 -56
- package/.claude/hooks/package-lock.json +0 -556
- package/.claude/hooks/package.json +0 -16
- package/.claude/hooks/post-tool-use-tracker.ps1 +0 -174
- package/.claude/hooks/post-tool-use-tracker.sh +0 -183
- package/.claude/hooks/security-policy-check.sh +0 -247
- package/.claude/hooks/skill-activation-prompt.ps1 +0 -10
- package/.claude/hooks/skill-activation-prompt.sh +0 -10
- package/.claude/hooks/skill-activation-prompt.ts +0 -141
- package/.claude/hooks/stop-build-check-enhanced.sh +0 -130
- package/.claude/hooks/terraform-validator.sh +0 -53
- package/.claude/hooks/test-input.json +0 -7
- package/.claude/hooks/test-skill-activation.ts +0 -427
- package/.claude/hooks/trigger-build-resolver.sh +0 -79
- package/.claude/hooks/tsc-check.sh +0 -173
- package/.claude/hooks/tsconfig.json +0 -19
- package/.claude/settings.json +0 -59
- package/.claude/settings.local.json +0 -67
- package/.claude/skills/README.md +0 -507
- package/.claude/skills/api-engineering/SKILL.md +0 -63
- package/.claude/skills/api-engineering/resources/api-versioning.md +0 -88
- package/.claude/skills/api-engineering/resources/graphql-patterns.md +0 -106
- package/.claude/skills/api-engineering/resources/rate-limiting.md +0 -118
- package/.claude/skills/api-engineering/resources/rest-api-design.md +0 -105
- package/.claude/skills/backend-dev-guidelines/SKILL.md +0 -306
- package/.claude/skills/backend-dev-guidelines/resources/architecture-overview.md +0 -451
- package/.claude/skills/backend-dev-guidelines/resources/async-and-errors.md +0 -307
- package/.claude/skills/backend-dev-guidelines/resources/complete-examples.md +0 -638
- package/.claude/skills/backend-dev-guidelines/resources/configuration.md +0 -275
- package/.claude/skills/backend-dev-guidelines/resources/database-patterns.md +0 -224
- package/.claude/skills/backend-dev-guidelines/resources/middleware-guide.md +0 -213
- package/.claude/skills/backend-dev-guidelines/resources/routing-and-controllers.md +0 -756
- package/.claude/skills/backend-dev-guidelines/resources/sentry-and-monitoring.md +0 -336
- package/.claude/skills/backend-dev-guidelines/resources/services-and-repositories.md +0 -789
- package/.claude/skills/backend-dev-guidelines/resources/testing-guide.md +0 -235
- package/.claude/skills/backend-dev-guidelines/resources/validation-patterns.md +0 -754
- package/.claude/skills/budget-and-cost-management/SKILL.md +0 -850
- package/.claude/skills/build-engineering/SKILL.md +0 -431
- package/.claude/skills/build-engineering/resources/artifact-repositories.md +0 -72
- package/.claude/skills/build-engineering/resources/build-caching.md +0 -96
- package/.claude/skills/build-engineering/resources/build-pipelines.md +0 -105
- package/.claude/skills/build-engineering/resources/build-security.md +0 -95
- package/.claude/skills/build-engineering/resources/build-systems.md +0 -389
- package/.claude/skills/build-engineering/resources/compilation-optimization.md +0 -201
- package/.claude/skills/build-engineering/resources/dependency-management.md +0 -73
- package/.claude/skills/build-engineering/resources/monorepo-builds.md +0 -110
- package/.claude/skills/build-engineering/resources/performance-optimization.md +0 -113
- package/.claude/skills/build-engineering/resources/reproducible-builds.md +0 -82
- package/.claude/skills/cloud-engineering/SKILL.md +0 -675
- package/.claude/skills/cloud-engineering/resources/aws-patterns.md +0 -742
- package/.claude/skills/cloud-engineering/resources/azure-patterns.md +0 -714
- package/.claude/skills/cloud-engineering/resources/cleared-cloud-environments.md +0 -987
- package/.claude/skills/cloud-engineering/resources/cloud-cost-optimization.md +0 -757
- package/.claude/skills/cloud-engineering/resources/cloud-networking.md +0 -1058
- package/.claude/skills/cloud-engineering/resources/cloud-security-tools.md +0 -1530
- package/.claude/skills/cloud-engineering/resources/cloud-security.md +0 -990
- package/.claude/skills/cloud-engineering/resources/gcp-patterns.md +0 -758
- package/.claude/skills/cloud-engineering/resources/migration-strategies.md +0 -820
- package/.claude/skills/cloud-engineering/resources/multi-cloud-strategies.md +0 -670
- package/.claude/skills/cloud-engineering/resources/oci-patterns.md +0 -1198
- package/.claude/skills/cloud-engineering/resources/serverless-patterns.md +0 -795
- package/.claude/skills/cloud-engineering/resources/well-architected-frameworks.md +0 -966
- package/.claude/skills/cybersecurity/SKILL.md +0 -409
- package/.claude/skills/cybersecurity/resources/security-architecture.md +0 -266
- package/.claude/skills/database-engineering/SKILL.md +0 -61
- package/.claude/skills/database-engineering/resources/backup-and-recovery.md +0 -72
- package/.claude/skills/database-engineering/resources/database-replication.md +0 -63
- package/.claude/skills/database-engineering/resources/postgresql-fundamentals.md +0 -70
- package/.claude/skills/database-engineering/resources/query-optimization.md +0 -68
- package/.claude/skills/devsecops/SKILL.md +0 -374
- package/.claude/skills/devsecops/resources/ci-cd-security.md +0 -204
- package/.claude/skills/devsecops/resources/compliance-automation.md +0 -530
- package/.claude/skills/devsecops/resources/compliance-frameworks.md +0 -2322
- package/.claude/skills/devsecops/resources/container-security.md +0 -915
- package/.claude/skills/devsecops/resources/cspm-integration.md +0 -1440
- package/.claude/skills/devsecops/resources/policy-enforcement.md +0 -619
- package/.claude/skills/devsecops/resources/secrets-management.md +0 -755
- package/.claude/skills/devsecops/resources/security-monitoring.md +0 -146
- package/.claude/skills/devsecops/resources/security-scanning.md +0 -887
- package/.claude/skills/devsecops/resources/security-testing.md +0 -203
- package/.claude/skills/devsecops/resources/supply-chain-security.md +0 -518
- package/.claude/skills/devsecops/resources/vulnerability-management.md +0 -481
- package/.claude/skills/devsecops/resources/zero-trust-architecture.md +0 -177
- package/.claude/skills/documentation-as-code/SKILL.md +0 -323
- package/.claude/skills/documentation-as-code/resources/api-documentation.md +0 -90
- package/.claude/skills/documentation-as-code/resources/changelog-management.md +0 -79
- package/.claude/skills/documentation-as-code/resources/diagram-generation.md +0 -44
- package/.claude/skills/documentation-as-code/resources/docs-as-code-workflow.md +0 -99
- package/.claude/skills/documentation-as-code/resources/documentation-automation.md +0 -68
- package/.claude/skills/documentation-as-code/resources/documentation-sites.md +0 -79
- package/.claude/skills/documentation-as-code/resources/markdown-best-practices.md +0 -162
- package/.claude/skills/documentation-as-code/resources/openapi-specification.md +0 -77
- package/.claude/skills/documentation-as-code/resources/readme-engineering.md +0 -60
- package/.claude/skills/documentation-as-code/resources/technical-writing-guide.md +0 -202
- package/.claude/skills/engineering-management/SKILL.md +0 -356
- package/.claude/skills/engineering-management/resources/career-ladders.md +0 -609
- package/.claude/skills/engineering-management/resources/hiring-and-assessment.md +0 -555
- package/.claude/skills/engineering-management/resources/one-on-one-guides.md +0 -609
- package/.claude/skills/engineering-management/resources/resource-planning.md +0 -557
- package/.claude/skills/engineering-management/resources/team-organization-patterns.md +0 -491
- package/.claude/skills/engineering-management/resources/technical-interviews.md +0 -474
- package/.claude/skills/engineering-operations-management/SKILL.md +0 -817
- package/.claude/skills/error-tracking/SKILL.md +0 -379
- package/.claude/skills/frontend-design/SKILL.md +0 -42
- package/.claude/skills/frontend-dev-guidelines/SKILL.md +0 -403
- package/.claude/skills/frontend-dev-guidelines/resources/common-patterns.md +0 -331
- package/.claude/skills/frontend-dev-guidelines/resources/complete-examples.md +0 -872
- package/.claude/skills/frontend-dev-guidelines/resources/component-patterns.md +0 -502
- package/.claude/skills/frontend-dev-guidelines/resources/data-fetching.md +0 -767
- package/.claude/skills/frontend-dev-guidelines/resources/file-organization.md +0 -502
- package/.claude/skills/frontend-dev-guidelines/resources/loading-and-error-states.md +0 -501
- package/.claude/skills/frontend-dev-guidelines/resources/performance.md +0 -406
- package/.claude/skills/frontend-dev-guidelines/resources/routing-guide.md +0 -364
- package/.claude/skills/frontend-dev-guidelines/resources/styling-guide.md +0 -428
- package/.claude/skills/frontend-dev-guidelines/resources/typescript-standards.md +0 -418
- package/.claude/skills/general-it-engineering/SKILL.md +0 -393
- package/.claude/skills/general-it-engineering/resources/asset-management.md +0 -712
- package/.claude/skills/general-it-engineering/resources/automation-orchestration.md +0 -817
- package/.claude/skills/general-it-engineering/resources/business-continuity.md +0 -786
- package/.claude/skills/general-it-engineering/resources/change-management.md +0 -715
- package/.claude/skills/general-it-engineering/resources/enterprise-monitoring.md +0 -729
- package/.claude/skills/general-it-engineering/resources/help-desk-operations.md +0 -738
- package/.claude/skills/general-it-engineering/resources/incident-service-management.md +0 -834
- package/.claude/skills/general-it-engineering/resources/it-governance.md +0 -753
- package/.claude/skills/general-it-engineering/resources/itil-framework.md +0 -503
- package/.claude/skills/general-it-engineering/resources/service-management.md +0 -669
- package/.claude/skills/infrastructure-architecture/SKILL.md +0 -328
- package/.claude/skills/infrastructure-architecture/resources/architecture-decision-records.md +0 -505
- package/.claude/skills/infrastructure-architecture/resources/architecture-patterns.md +0 -528
- package/.claude/skills/infrastructure-architecture/resources/capacity-planning.md +0 -453
- package/.claude/skills/infrastructure-architecture/resources/cleared-environment-architecture.md +0 -773
- package/.claude/skills/infrastructure-architecture/resources/cost-architecture.md +0 -499
- package/.claude/skills/infrastructure-architecture/resources/data-architecture.md +0 -501
- package/.claude/skills/infrastructure-architecture/resources/disaster-recovery.md +0 -535
- package/.claude/skills/infrastructure-architecture/resources/migration-architecture.md +0 -512
- package/.claude/skills/infrastructure-architecture/resources/multi-region-design.md +0 -608
- package/.claude/skills/infrastructure-architecture/resources/reference-architectures.md +0 -562
- package/.claude/skills/infrastructure-architecture/resources/security-architecture.md +0 -538
- package/.claude/skills/infrastructure-architecture/resources/system-design-principles.md +0 -489
- package/.claude/skills/infrastructure-architecture/resources/workload-classification.md +0 -1000
- package/.claude/skills/infrastructure-strategy/SKILL.md +0 -924
- package/.claude/skills/network-engineering/SKILL.md +0 -385
- package/.claude/skills/network-engineering/resources/dns-management.md +0 -738
- package/.claude/skills/network-engineering/resources/load-balancing.md +0 -820
- package/.claude/skills/network-engineering/resources/network-architecture.md +0 -546
- package/.claude/skills/network-engineering/resources/network-security.md +0 -921
- package/.claude/skills/network-engineering/resources/network-troubleshooting.md +0 -749
- package/.claude/skills/network-engineering/resources/routing-switching.md +0 -373
- package/.claude/skills/network-engineering/resources/sdn-networking.md +0 -695
- package/.claude/skills/network-engineering/resources/service-mesh-networking.md +0 -777
- package/.claude/skills/network-engineering/resources/tcp-ip-protocols.md +0 -444
- package/.claude/skills/network-engineering/resources/vpn-connectivity.md +0 -672
- package/.claude/skills/node-development/SKILL.md +0 -317
- package/.claude/skills/observability-engineering/SKILL.md +0 -101
- package/.claude/skills/observability-engineering/resources/apm-tools.md +0 -97
- package/.claude/skills/observability-engineering/resources/correlation-strategies.md +0 -87
- package/.claude/skills/observability-engineering/resources/distributed-tracing.md +0 -98
- package/.claude/skills/observability-engineering/resources/logs-aggregation.md +0 -118
- package/.claude/skills/observability-engineering/resources/observability-cost-optimization.md +0 -141
- package/.claude/skills/observability-engineering/resources/opentelemetry.md +0 -110
- package/.claude/skills/platform-engineering/SKILL.md +0 -555
- package/.claude/skills/platform-engineering/resources/architecture-overview.md +0 -600
- package/.claude/skills/platform-engineering/resources/container-orchestration.md +0 -916
- package/.claude/skills/platform-engineering/resources/cost-optimization.md +0 -634
- package/.claude/skills/platform-engineering/resources/developer-platforms.md +0 -670
- package/.claude/skills/platform-engineering/resources/gitops-automation.md +0 -650
- package/.claude/skills/platform-engineering/resources/infrastructure-as-code.md +0 -778
- package/.claude/skills/platform-engineering/resources/infrastructure-standards.md +0 -708
- package/.claude/skills/platform-engineering/resources/multi-tenancy.md +0 -602
- package/.claude/skills/platform-engineering/resources/platform-security.md +0 -711
- package/.claude/skills/platform-engineering/resources/resource-management.md +0 -592
- package/.claude/skills/platform-engineering/resources/service-mesh.md +0 -628
- package/.claude/skills/release-engineering/SKILL.md +0 -393
- package/.claude/skills/release-engineering/resources/artifact-management.md +0 -108
- package/.claude/skills/release-engineering/resources/build-optimization.md +0 -84
- package/.claude/skills/release-engineering/resources/ci-cd-pipelines.md +0 -411
- package/.claude/skills/release-engineering/resources/deployment-strategies.md +0 -197
- package/.claude/skills/release-engineering/resources/pipeline-security.md +0 -62
- package/.claude/skills/release-engineering/resources/progressive-delivery.md +0 -83
- package/.claude/skills/release-engineering/resources/release-automation.md +0 -68
- package/.claude/skills/release-engineering/resources/release-orchestration.md +0 -77
- package/.claude/skills/release-engineering/resources/rollback-strategies.md +0 -66
- package/.claude/skills/release-engineering/resources/versioning-strategies.md +0 -59
- package/.claude/skills/route-tester/SKILL.md +0 -392
- package/.claude/skills/skill-developer/ADVANCED.md +0 -197
- package/.claude/skills/skill-developer/HOOK_MECHANISMS.md +0 -306
- package/.claude/skills/skill-developer/PATTERNS_LIBRARY.md +0 -152
- package/.claude/skills/skill-developer/SKILL.md +0 -430
- package/.claude/skills/skill-developer/SKILL_RULES_REFERENCE.md +0 -315
- package/.claude/skills/skill-developer/TRIGGER_TYPES.md +0 -305
- package/.claude/skills/skill-developer/TROUBLESHOOTING.md +0 -514
- package/.claude/skills/skill-rules.json +0 -2989
- package/.claude/skills/sre/SKILL.md +0 -464
- package/.claude/skills/sre/resources/alerting-best-practices.md +0 -282
- package/.claude/skills/sre/resources/capacity-planning.md +0 -226
- package/.claude/skills/sre/resources/chaos-engineering.md +0 -193
- package/.claude/skills/sre/resources/disaster-recovery.md +0 -232
- package/.claude/skills/sre/resources/incident-management.md +0 -436
- package/.claude/skills/sre/resources/observability-stack.md +0 -240
- package/.claude/skills/sre/resources/on-call-runbooks.md +0 -167
- package/.claude/skills/sre/resources/performance-optimization.md +0 -108
- package/.claude/skills/sre/resources/reliability-patterns.md +0 -183
- package/.claude/skills/sre/resources/slo-sli-sla.md +0 -464
- package/.claude/skills/sre/resources/toil-reduction.md +0 -145
- package/.claude/skills/systems-engineering/SKILL.md +0 -648
- package/.claude/skills/systems-engineering/resources/automation-patterns.md +0 -771
- package/.claude/skills/systems-engineering/resources/configuration-management.md +0 -998
- package/.claude/skills/systems-engineering/resources/linux-administration.md +0 -672
- package/.claude/skills/systems-engineering/resources/networking-fundamentals.md +0 -982
- package/.claude/skills/systems-engineering/resources/performance-tuning.md +0 -871
- package/.claude/skills/systems-engineering/resources/powershell-scripting.md +0 -482
- package/.claude/skills/systems-engineering/resources/security-hardening.md +0 -739
- package/.claude/skills/systems-engineering/resources/shell-scripting.md +0 -915
- package/.claude/skills/systems-engineering/resources/storage-management.md +0 -628
- package/.claude/skills/systems-engineering/resources/system-monitoring.md +0 -787
- package/.claude/skills/systems-engineering/resources/troubleshooting-guide.md +0 -753
- package/.claude/skills/systems-engineering/resources/windows-administration.md +0 -738
- package/.claude/skills/technical-leadership/SKILL.md +0 -728
- package/backend/docs/SECRETS_DOCUMENTATION.md +0 -327
- package/backend/package-lock.json +0 -6801
- package/backend/src/core/node-registries/actions.js +0 -202
- package/backend/src/core/node-registries/arrays.js +0 -155
- package/backend/src/core/node-registries/bot.js +0 -23
- package/backend/src/core/node-registries/container.js +0 -162
- package/backend/src/core/node-registries/data.js +0 -290
- package/backend/src/core/node-registries/debug.js +0 -26
- package/backend/src/core/node-registries/events.js +0 -201
- package/backend/src/core/node-registries/flow.js +0 -139
- package/backend/src/core/node-registries/furnace.js +0 -143
- package/backend/src/core/node-registries/logic.js +0 -62
- package/backend/src/core/node-registries/math.js +0 -42
- package/backend/src/core/node-registries/navigation.js +0 -111
- package/backend/src/core/node-registries/objects.js +0 -98
- package/backend/src/core/node-registries/strings.js +0 -187
- package/backend/src/core/node-registries/time.js +0 -113
- package/backend/src/core/node-registries/type.js +0 -25
- package/backend/src/core/node-registries/users.js +0 -79
- package/frontend/dist/assets/index-BC-NbKXi.css +0 -32
- package/frontend/dist/assets/index-DqJXZMHY.js +0 -11266
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7410 3900">
|
|
2
|
+
<rect fill="#B22234" width="7410" height="3900"/>
|
|
3
|
+
<g fill="#fff">
|
|
4
|
+
<rect y="300" width="7410" height="300"/>
|
|
5
|
+
<rect y="900" width="7410" height="300"/>
|
|
6
|
+
<rect y="1500" width="7410" height="300"/>
|
|
7
|
+
<rect y="2100" width="7410" height="300"/>
|
|
8
|
+
<rect y="2700" width="7410" height="300"/>
|
|
9
|
+
<rect y="3300" width="7410" height="300"/>
|
|
10
|
+
</g>
|
|
11
|
+
<rect fill="#3C3B6E" width="2964" height="2100"/>
|
|
12
|
+
<g fill="#fff">
|
|
13
|
+
<g id="s18">
|
|
14
|
+
<g id="s9">
|
|
15
|
+
<g id="s5">
|
|
16
|
+
<g id="s4">
|
|
17
|
+
<path id="s" d="M247 90l70.534 217.082-184.66-134.164h228.253L176.466 307.082z"/>
|
|
18
|
+
<use href="#s" y="420"/>
|
|
19
|
+
<use href="#s" y="840"/>
|
|
20
|
+
<use href="#s" y="1260"/>
|
|
21
|
+
</g>
|
|
22
|
+
<use href="#s" y="1680"/>
|
|
23
|
+
</g>
|
|
24
|
+
<use href="#s4" x="247" y="210"/>
|
|
25
|
+
</g>
|
|
26
|
+
<use href="#s9" x="494"/>
|
|
27
|
+
</g>
|
|
28
|
+
<use href="#s18" x="988"/>
|
|
29
|
+
<use href="#s9" x="1976"/>
|
|
30
|
+
<use href="#s5" x="2470"/>
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|
package/frontend/dist/index.html
CHANGED
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
<meta name="msapplication-TileColor" content="#da532c">
|
|
43
43
|
<meta name="theme-color" content="#ffffff">
|
|
44
44
|
|
|
45
|
-
<script type="module" crossorigin src="/assets/index-
|
|
46
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
45
|
+
<script type="module" crossorigin src="/assets/index-D91UGNMG.js"></script>
|
|
46
|
+
<link rel="stylesheet" crossorigin href="/assets/index-CFJLS0dk.css">
|
|
47
47
|
</head>
|
|
48
48
|
<body>
|
|
49
49
|
<div id="root"></div>
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Administration",
|
|
3
|
+
"description": "Manage users, roles and global panel settings.",
|
|
4
|
+
"tabs": {
|
|
5
|
+
"users": "Users",
|
|
6
|
+
"roles": "Roles",
|
|
7
|
+
"settings": "Global settings"
|
|
8
|
+
},
|
|
9
|
+
"users": {
|
|
10
|
+
"title": "Panel Users",
|
|
11
|
+
"description": "Manage user accounts and their roles.",
|
|
12
|
+
"createUser": "Create User",
|
|
13
|
+
"table": {
|
|
14
|
+
"name": "Name",
|
|
15
|
+
"role": "Role",
|
|
16
|
+
"botAccess": "Bot Access",
|
|
17
|
+
"createdAt": "Created",
|
|
18
|
+
"actions": "Actions"
|
|
19
|
+
},
|
|
20
|
+
"allBots": "All bots",
|
|
21
|
+
"selectedBots": "Selected: {{count}}",
|
|
22
|
+
"deleteConfirm": "Delete user \"{{name}}\"?",
|
|
23
|
+
"deleteDescription": "This action is irreversible.",
|
|
24
|
+
"deleteButton": "Yes, delete",
|
|
25
|
+
"userUpdated": "User updated.",
|
|
26
|
+
"userCreated": "User created.",
|
|
27
|
+
"userDeleted": "User deleted.",
|
|
28
|
+
"loadError": "Failed to load data.",
|
|
29
|
+
"saveError": "Failed to save user."
|
|
30
|
+
},
|
|
31
|
+
"roles": {
|
|
32
|
+
"title": "Panel Roles",
|
|
33
|
+
"description": "Manage roles and their permission sets.",
|
|
34
|
+
"createRole": "Create Role",
|
|
35
|
+
"table": {
|
|
36
|
+
"name": "Name",
|
|
37
|
+
"permissions": "Permissions",
|
|
38
|
+
"actions": "Actions"
|
|
39
|
+
},
|
|
40
|
+
"allPermissions": "All permissions",
|
|
41
|
+
"roleCreated": "Role created successfully.",
|
|
42
|
+
"roleUpdated": "Role updated successfully.",
|
|
43
|
+
"roleDeleted": "Role deleted.",
|
|
44
|
+
"deleteConfirm": "Delete role \"{{name}}\"?",
|
|
45
|
+
"deleteDescription": "This action is irreversible. Make sure this role is not assigned to any user.",
|
|
46
|
+
"deleteButton": "Yes, delete",
|
|
47
|
+
"loadError": "Failed to load data."
|
|
48
|
+
},
|
|
49
|
+
"userForm": {
|
|
50
|
+
"editTitle": "Edit User",
|
|
51
|
+
"createTitle": "Create New User",
|
|
52
|
+
"editDescription": "Editing data for {{name}}.",
|
|
53
|
+
"createDescription": "Fill in the data to create a new account.",
|
|
54
|
+
"username": "Username",
|
|
55
|
+
"password": "Password",
|
|
56
|
+
"newPassword": "New password (leave empty to keep current)",
|
|
57
|
+
"role": "Role",
|
|
58
|
+
"selectRole": "Select role...",
|
|
59
|
+
"allBotsAccess": "Access to all bots",
|
|
60
|
+
"ownerNote": "(owner, always enabled)",
|
|
61
|
+
"cancel": "Cancel",
|
|
62
|
+
"save": "Save",
|
|
63
|
+
"saving": "Saving...",
|
|
64
|
+
"validation": {
|
|
65
|
+
"usernameRequired": "Username and role are required.",
|
|
66
|
+
"passwordRequired": "Password (min. 4 characters) is required for new user.",
|
|
67
|
+
"passwordMinLength": "New password must be at least 4 characters."
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"roleForm": {
|
|
71
|
+
"editTitle": "Edit Role",
|
|
72
|
+
"createTitle": "Create New Role",
|
|
73
|
+
"description": "Specify role name and select available permissions.",
|
|
74
|
+
"roleName": "Role Name",
|
|
75
|
+
"permissions": "Permissions",
|
|
76
|
+
"cancel": "Cancel",
|
|
77
|
+
"save": "Save",
|
|
78
|
+
"saving": "Saving...",
|
|
79
|
+
"validation": {
|
|
80
|
+
"nameRequired": "Role name cannot be empty."
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"settings": {
|
|
84
|
+
"title": "Global Settings",
|
|
85
|
+
"description": "These settings affect the entire panel. Some changes require a restart.",
|
|
86
|
+
"restartRequired": "Restart Required",
|
|
87
|
+
"restartDescription": "After saving settings, you need to restart the panel, for example using <code>npx blockmine</code> in the terminal.",
|
|
88
|
+
"externalAccess": "External Access",
|
|
89
|
+
"externalAccessDescription": "Allow panel access from local network or internet.",
|
|
90
|
+
"telemetry": "Anonymous Telemetry",
|
|
91
|
+
"telemetryDescription": "Send anonymous statistics (bot count, plugins) to improve the project.",
|
|
92
|
+
"save": "Save Settings",
|
|
93
|
+
"saveSuccess": "Settings saved. Restart the panel to apply.",
|
|
94
|
+
"loadError": "Failed to load global settings."
|
|
95
|
+
},
|
|
96
|
+
"common": {
|
|
97
|
+
"error": "Error",
|
|
98
|
+
"success": "Success"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Panel API Keys",
|
|
3
|
+
"description": "Manage your API keys for REST API and WebSocket panel access",
|
|
4
|
+
"createKey": "Create API Key",
|
|
5
|
+
"experimental": "Experimental feature. Documentation not yet available.",
|
|
6
|
+
"about": {
|
|
7
|
+
"title": "About Panel API Keys",
|
|
8
|
+
"description": "Panel API keys allow you to access the BlockMine panel API and WebSocket for automation and integrations. Keys inherit your user permissions by default.",
|
|
9
|
+
"security": "Security: Treat API keys like passwords. Never share them publicly or add them to version control."
|
|
10
|
+
},
|
|
11
|
+
"table": {
|
|
12
|
+
"title": "Your API Keys",
|
|
13
|
+
"name": "Name",
|
|
14
|
+
"prefix": "Key Prefix",
|
|
15
|
+
"lastUsed": "Last Used",
|
|
16
|
+
"created": "Created",
|
|
17
|
+
"status": "Status",
|
|
18
|
+
"actions": "Actions",
|
|
19
|
+
"loading": "Loading...",
|
|
20
|
+
"empty": "No API keys. Create one to get started.",
|
|
21
|
+
"never": "Never",
|
|
22
|
+
"active": "Active",
|
|
23
|
+
"inactive": "Inactive"
|
|
24
|
+
},
|
|
25
|
+
"createDialog": {
|
|
26
|
+
"title": "Create New API Key",
|
|
27
|
+
"description": "Choose a descriptive name for your API key",
|
|
28
|
+
"nameLabel": "Key Name",
|
|
29
|
+
"namePlaceholder": "e.g., Production Bot, Development",
|
|
30
|
+
"cancel": "Cancel",
|
|
31
|
+
"create": "Create Key"
|
|
32
|
+
},
|
|
33
|
+
"createdDialog": {
|
|
34
|
+
"title": "API Key Successfully Created!",
|
|
35
|
+
"description": "Make sure to copy your API key now. You won't be able to see it again!",
|
|
36
|
+
"warning": "This is the only time you'll see this key. Copy it now!",
|
|
37
|
+
"nameLabel": "Key Name",
|
|
38
|
+
"keyLabel": "API Key",
|
|
39
|
+
"hide": "Hide",
|
|
40
|
+
"show": "Show",
|
|
41
|
+
"copy": "Copy",
|
|
42
|
+
"usage": "Usage Example",
|
|
43
|
+
"confirm": "I've Saved My Key"
|
|
44
|
+
},
|
|
45
|
+
"messages": {
|
|
46
|
+
"loadError": "Error loading API keys",
|
|
47
|
+
"nameRequired": "Key name is required",
|
|
48
|
+
"createSuccess": "API key created successfully",
|
|
49
|
+
"createError": "Error creating API key",
|
|
50
|
+
"deleteConfirm": "Are you sure you want to delete this API key? This action is irreversible.",
|
|
51
|
+
"deleteSuccess": "API key deleted",
|
|
52
|
+
"deleteError": "Error deleting API key",
|
|
53
|
+
"copied": "Copied",
|
|
54
|
+
"copiedDescription": "API key copied to clipboard",
|
|
55
|
+
"error": "Error",
|
|
56
|
+
"success": "Success"
|
|
57
|
+
}
|
|
58
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
{
|
|
2
|
+
"view": {
|
|
3
|
+
"loading": "Loading bot data...",
|
|
4
|
+
"deleteError": "Failed to delete bot"
|
|
5
|
+
},
|
|
6
|
+
"tabs": {
|
|
7
|
+
"console": "Console",
|
|
8
|
+
"minecraftViewer": "3D Control",
|
|
9
|
+
"plugins": "Plugins",
|
|
10
|
+
"settings": "Settings",
|
|
11
|
+
"events": "Events",
|
|
12
|
+
"management": "Management",
|
|
13
|
+
"websocket": "WebSocket"
|
|
14
|
+
},
|
|
15
|
+
"actions": {
|
|
16
|
+
"start": "Start",
|
|
17
|
+
"stop": "Stop",
|
|
18
|
+
"restart": "Restart",
|
|
19
|
+
"export": "Export bot",
|
|
20
|
+
"delete": "Delete bot"
|
|
21
|
+
},
|
|
22
|
+
"status": {
|
|
23
|
+
"running": "Running",
|
|
24
|
+
"stopped": "Stopped",
|
|
25
|
+
"starting": "Starting",
|
|
26
|
+
"stopping": "Stopping",
|
|
27
|
+
"restarting": "Restarting"
|
|
28
|
+
},
|
|
29
|
+
"deleteDialog": {
|
|
30
|
+
"title": "Delete bot {{username}}?",
|
|
31
|
+
"description": "This action is irreversible. All configuration associated with this bot will be deleted.",
|
|
32
|
+
"confirm": "Yes, delete bot"
|
|
33
|
+
},
|
|
34
|
+
"card": {
|
|
35
|
+
"edit": "Edit",
|
|
36
|
+
"delete": "Delete"
|
|
37
|
+
},
|
|
38
|
+
"form": {
|
|
39
|
+
"titleCreate": "Create new bot",
|
|
40
|
+
"titleEdit": "Basic settings",
|
|
41
|
+
"importBadge": "Import",
|
|
42
|
+
"descriptionImport": "Configure the new bot parameters. Data from the archive will be applied automatically.",
|
|
43
|
+
"descriptionCreate": "Fill in the information below to add a new bot to the panel.",
|
|
44
|
+
"descriptionEdit": "Here you can change the basic bot parameters.",
|
|
45
|
+
"username": "Bot name",
|
|
46
|
+
"note": "Short note",
|
|
47
|
+
"notePlaceholder": "E.g., Main bot 1",
|
|
48
|
+
"password": "Password (enter to change)",
|
|
49
|
+
"passwordPlaceholder": "••••••••",
|
|
50
|
+
"prefix": "Command prefix",
|
|
51
|
+
"server": "Server",
|
|
52
|
+
"serverPlaceholder": "Select server",
|
|
53
|
+
"owners": "Bot owners",
|
|
54
|
+
"ownersPlaceholder": "Owner nickname",
|
|
55
|
+
"ownersDescription": "Owners have full access to all commands of this bot, ignoring any restrictions.",
|
|
56
|
+
"proxyTitle": "Proxy settings",
|
|
57
|
+
"proxyDescription": "Select a proxy from the list or configure manually.",
|
|
58
|
+
"proxy": "Proxy",
|
|
59
|
+
"proxyNone": "No proxy",
|
|
60
|
+
"proxyCustom": "Configure manually",
|
|
61
|
+
"proxyHost": "Host",
|
|
62
|
+
"proxyPort": "Port",
|
|
63
|
+
"proxyUsername": "Login",
|
|
64
|
+
"proxyPassword": "Proxy password",
|
|
65
|
+
"saving": "Saving...",
|
|
66
|
+
"createBot": "Create bot",
|
|
67
|
+
"saveChanges": "Save changes"
|
|
68
|
+
},
|
|
69
|
+
"export": {
|
|
70
|
+
"title": "Export configuration: {{username}}",
|
|
71
|
+
"description": "Select the data you want to include in the ZIP archive.",
|
|
72
|
+
"includeCommands": "Command settings (aliases, cooldowns, etc.)",
|
|
73
|
+
"includePermissions": "Users and access rights",
|
|
74
|
+
"includePluginFiles": "Include plugin files",
|
|
75
|
+
"includePluginFilesDesc": "Saves not only the list of plugins, but also their files, including configs. Recommended for full backup.",
|
|
76
|
+
"includePluginDataStore": "Plugin databases",
|
|
77
|
+
"includePluginDataStoreDesc": "All values that plugins stored in their databases (DataStore) will be saved.",
|
|
78
|
+
"includeEventGraphs": "Event graphs (subgraphs)",
|
|
79
|
+
"includeEventGraphsDesc": "Saves all created event graphs and their settings.",
|
|
80
|
+
"cancel": "Cancel",
|
|
81
|
+
"exporting": "Exporting...",
|
|
82
|
+
"download": "Download archive",
|
|
83
|
+
"success": "Success!",
|
|
84
|
+
"successMessage": "Bot export started.",
|
|
85
|
+
"downloadError": "Failed to get file for download from server."
|
|
86
|
+
},
|
|
87
|
+
"import": {
|
|
88
|
+
"title": "Import bot from archive",
|
|
89
|
+
"description": "Select a ZIP archive previously exported from the panel. A new bot will be created with all plugins and settings. Passwords are not transferred.",
|
|
90
|
+
"fileLabel": "Export file (.zip)",
|
|
91
|
+
"fileSelected": "✓ File selected: {{name}} ({{size}} KB)",
|
|
92
|
+
"cancel": "Cancel",
|
|
93
|
+
"uploadAndConfigure": "Upload and configure",
|
|
94
|
+
"configureTitle": "Configure imported bot",
|
|
95
|
+
"configureDescription": "Configure the new bot parameters. Data from the archive will be applied automatically.",
|
|
96
|
+
"importedData": "Imported data:",
|
|
97
|
+
"plugins": "Plugins: {{count}} pcs.",
|
|
98
|
+
"commands": "Commands: {{count}} pcs.",
|
|
99
|
+
"eventGraphs": "Event graphs: {{count}} pcs.",
|
|
100
|
+
"settings": "Settings: {{count}} pcs.",
|
|
101
|
+
"back": "Back",
|
|
102
|
+
"createBot": "Create bot",
|
|
103
|
+
"error": "Error",
|
|
104
|
+
"selectFileError": "Please select a file to import.",
|
|
105
|
+
"success": "Success",
|
|
106
|
+
"uploadSuccess": "Archive uploaded. Configure the new bot parameters.",
|
|
107
|
+
"uploadError": "Failed to upload archive.",
|
|
108
|
+
"clientError": "Client error",
|
|
109
|
+
"prepareError": "Failed to prepare data for sending.",
|
|
110
|
+
"createSuccess": "Bot created with imported settings.",
|
|
111
|
+
"createError": "Failed to create bot."
|
|
112
|
+
}
|
|
113
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"app": {
|
|
3
|
+
"name": "BlockMine",
|
|
4
|
+
"loading": "Loading..."
|
|
5
|
+
},
|
|
6
|
+
"bot": {
|
|
7
|
+
"start": "Start",
|
|
8
|
+
"stop": "Stop",
|
|
9
|
+
"restart": "Restart",
|
|
10
|
+
"delete": "Delete",
|
|
11
|
+
"create": "Create Bot",
|
|
12
|
+
"status": {
|
|
13
|
+
"online": "Online",
|
|
14
|
+
"offline": "Offline",
|
|
15
|
+
"connecting": "Connecting...",
|
|
16
|
+
"error": "Error"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"actions": {
|
|
20
|
+
"save": "Save",
|
|
21
|
+
"cancel": "Cancel",
|
|
22
|
+
"confirm": "Confirm",
|
|
23
|
+
"delete": "Delete",
|
|
24
|
+
"edit": "Edit",
|
|
25
|
+
"add": "Add",
|
|
26
|
+
"search": "Search",
|
|
27
|
+
"refresh": "Refresh",
|
|
28
|
+
"copy": "Copy",
|
|
29
|
+
"close": "Close"
|
|
30
|
+
},
|
|
31
|
+
"fields": {
|
|
32
|
+
"name": "Name"
|
|
33
|
+
},
|
|
34
|
+
"messages": {
|
|
35
|
+
"success": "Success!",
|
|
36
|
+
"error": "An error occurred",
|
|
37
|
+
"saved": "Saved",
|
|
38
|
+
"deleted": "Deleted",
|
|
39
|
+
"copied": "Copied",
|
|
40
|
+
"networkTitle": "Network error",
|
|
41
|
+
"networkDescription": "Unable to connect to the server",
|
|
42
|
+
"authError": "Authorization error",
|
|
43
|
+
"downloadError": "Failed to download file.",
|
|
44
|
+
"downloadErrorWithStatus": "Failed to download file: {{status}}",
|
|
45
|
+
"serverError": "An unknown server error occurred"
|
|
46
|
+
},
|
|
47
|
+
"plurals": {
|
|
48
|
+
"bot_one": "{{count}} bot",
|
|
49
|
+
"bot_other": "{{count}} bots",
|
|
50
|
+
"plugin_one": "{{count}} plugin",
|
|
51
|
+
"plugin_other": "{{count}} plugins"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Bot Configuration",
|
|
3
|
+
"description": "All settings in one place. Click \"Save\" to apply changes.",
|
|
4
|
+
"save": "Save",
|
|
5
|
+
"loading": "Loading configuration...",
|
|
6
|
+
"loadError": "Failed to load data.",
|
|
7
|
+
"tabs": {
|
|
8
|
+
"general": "General",
|
|
9
|
+
"plugins": "Plugins"
|
|
10
|
+
},
|
|
11
|
+
"plugins": {
|
|
12
|
+
"noDescription": "No description.",
|
|
13
|
+
"empty": "Installed plugins have no configurable settings."
|
|
14
|
+
},
|
|
15
|
+
"messages": {
|
|
16
|
+
"success": "Success!",
|
|
17
|
+
"allSaved": "All changes saved.",
|
|
18
|
+
"saveError": "Save error",
|
|
19
|
+
"unknownError": "An unknown error occurred while saving",
|
|
20
|
+
"error": "Error"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"performanceWarning": "Large number of logs may reduce performance. Clear logs to improve.",
|
|
3
|
+
"scrollDown": "Scroll down",
|
|
4
|
+
"clearConsole": "Clear console",
|
|
5
|
+
"gradient": "Gradient",
|
|
6
|
+
"viewOnlyMode": "View mode: sending commands is unavailable",
|
|
7
|
+
"sendAsBot": "Send as {{username}}...",
|
|
8
|
+
"startBotToSend": "Start the bot to send messages",
|
|
9
|
+
"noPermission": "Insufficient permissions to send commands"
|
|
10
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "System Overview",
|
|
3
|
+
"subtitle": "Monitor and manage your BlockMineJS bots",
|
|
4
|
+
"import": "Import",
|
|
5
|
+
"startAll": "Start All",
|
|
6
|
+
"stopAll": "Stop All",
|
|
7
|
+
"botImported": "Bot \"{{name}}\" imported successfully.",
|
|
8
|
+
"confirmMassAction": "Are you sure you want to {{action}} ALL bots?",
|
|
9
|
+
"actions": {
|
|
10
|
+
"start": "start",
|
|
11
|
+
"stop": "stop"
|
|
12
|
+
},
|
|
13
|
+
"metrics": {
|
|
14
|
+
"totalBots": "Total Bots",
|
|
15
|
+
"active": "Active",
|
|
16
|
+
"systemCpu": "System CPU",
|
|
17
|
+
"systemRam": "System RAM"
|
|
18
|
+
},
|
|
19
|
+
"resourceMonitoring": {
|
|
20
|
+
"title": "Resource Monitoring",
|
|
21
|
+
"description": "CPU and RAM usage by all running bots"
|
|
22
|
+
},
|
|
23
|
+
"quickActions": {
|
|
24
|
+
"title": "Quick Actions",
|
|
25
|
+
"description": "Navigate to main sections",
|
|
26
|
+
"scheduler": "Scheduler",
|
|
27
|
+
"settings": "Settings",
|
|
28
|
+
"suggest": "Suggest",
|
|
29
|
+
"currentVersion": "Current version",
|
|
30
|
+
"changelog": "Changelog",
|
|
31
|
+
"servers": "Servers"
|
|
32
|
+
},
|
|
33
|
+
"systemHealth": {
|
|
34
|
+
"title": "System Health",
|
|
35
|
+
"panel": "Control Panel",
|
|
36
|
+
"websocket": "WebSocket Server",
|
|
37
|
+
"database": "Database",
|
|
38
|
+
"uptime": "Uptime"
|
|
39
|
+
},
|
|
40
|
+
"resources": {
|
|
41
|
+
"title": "System Resources",
|
|
42
|
+
"activeBots": "Active bots",
|
|
43
|
+
"totalMemory": "Total memory"
|
|
44
|
+
},
|
|
45
|
+
"botDistribution": {
|
|
46
|
+
"title": "Bot Distribution",
|
|
47
|
+
"running": "Running",
|
|
48
|
+
"stopped": "Stopped"
|
|
49
|
+
},
|
|
50
|
+
"activity": {
|
|
51
|
+
"active": "Active",
|
|
52
|
+
"stopped": "Stopped"
|
|
53
|
+
},
|
|
54
|
+
"widgets": {
|
|
55
|
+
"botStatus": {
|
|
56
|
+
"title": "Bot Status",
|
|
57
|
+
"noBots": "No bots to display.",
|
|
58
|
+
"running": "Running",
|
|
59
|
+
"stopped": "Stopped"
|
|
60
|
+
},
|
|
61
|
+
"recentActivity": {
|
|
62
|
+
"title": "Recent Activity",
|
|
63
|
+
"description": "Summary of recent messages from bot consoles.",
|
|
64
|
+
"noActivity": "No activity. Start some bots."
|
|
65
|
+
},
|
|
66
|
+
"quickManage": {
|
|
67
|
+
"title": "All Bots",
|
|
68
|
+
"description": "Quick management of all bots in the system",
|
|
69
|
+
"bot": "Bot",
|
|
70
|
+
"status": "Status",
|
|
71
|
+
"actions": "Actions",
|
|
72
|
+
"running": "Running",
|
|
73
|
+
"stopped": "Stopped",
|
|
74
|
+
"start": "Start",
|
|
75
|
+
"stop": "Stop",
|
|
76
|
+
"restart": "Restart",
|
|
77
|
+
"console": "Console",
|
|
78
|
+
"settings": "Settings",
|
|
79
|
+
"noBots": "No bots found.",
|
|
80
|
+
"commandSent": "Command sent",
|
|
81
|
+
"restartingBot": "Bot {{name}} is restarting.",
|
|
82
|
+
"actionSent": "Command {{action}} sent to bot."
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"changelog": {
|
|
3
|
+
"title": "What's new in version {{version}}",
|
|
4
|
+
"selectVersion": "Select version",
|
|
5
|
+
"noData": "No data to display"
|
|
6
|
+
},
|
|
7
|
+
"contribute": {
|
|
8
|
+
"title": "Suggest an improvement or ask a question",
|
|
9
|
+
"guide": "Here's a quick guide on how to submit your requests properly.",
|
|
10
|
+
"description": "To ask a question, report a bug, or suggest a new idea, go to our GitHub Issues page. Click the \"New issue\" button and select an appropriate template. For a simple question, you can create a blank issue.",
|
|
11
|
+
"imageAlt": "How to create a GitHub issue",
|
|
12
|
+
"close": "Close",
|
|
13
|
+
"goToGithub": "Go to GitHub"
|
|
14
|
+
},
|
|
15
|
+
"search": {
|
|
16
|
+
"title": "Global Search",
|
|
17
|
+
"description": "Use this palette to quickly search bots, users, and plugins, as well as navigate the app.",
|
|
18
|
+
"placeholder": "Search or go to...",
|
|
19
|
+
"loading": "Loading...",
|
|
20
|
+
"noResults": "No results found.",
|
|
21
|
+
"navigation": "Navigation",
|
|
22
|
+
"dashboard": "Dashboard",
|
|
23
|
+
"scheduler": "Scheduler",
|
|
24
|
+
"servers": "Servers",
|
|
25
|
+
"bots": "Bots",
|
|
26
|
+
"users": "Users",
|
|
27
|
+
"plugins": "Plugins",
|
|
28
|
+
"forBotId": "for bot ID: {{botId}}",
|
|
29
|
+
"installedForBotId": "installed for bot ID: {{botId}}"
|
|
30
|
+
},
|
|
31
|
+
"import": {
|
|
32
|
+
"eventGraph": {
|
|
33
|
+
"title": "Import Event Graph",
|
|
34
|
+
"description": "Paste the previously copied code to import the graph. A new event graph will be created.",
|
|
35
|
+
"success": "Event graph imported successfully."
|
|
36
|
+
},
|
|
37
|
+
"command": {
|
|
38
|
+
"title": "Import Command",
|
|
39
|
+
"description": "Paste the previously copied code to import the command. A new command will be created.",
|
|
40
|
+
"success": "Command imported successfully."
|
|
41
|
+
},
|
|
42
|
+
"codeLabel": "Import code",
|
|
43
|
+
"placeholder": "Paste JSON here...",
|
|
44
|
+
"cancel": "Cancel",
|
|
45
|
+
"submit": "Import",
|
|
46
|
+
"invalidJson": "Invalid JSON format."
|
|
47
|
+
},
|
|
48
|
+
"share": {
|
|
49
|
+
"eventGraph": {
|
|
50
|
+
"title": "Share Event Graph",
|
|
51
|
+
"description": "Copy this code to import the event graph on another bot or share it.",
|
|
52
|
+
"fetchError": "Failed to get graph data:"
|
|
53
|
+
},
|
|
54
|
+
"command": {
|
|
55
|
+
"title": "Share Command",
|
|
56
|
+
"description": "Copy this code to import the command on another bot or share it.",
|
|
57
|
+
"fetchError": "Failed to get command data:"
|
|
58
|
+
},
|
|
59
|
+
"codeLabel": "Import code",
|
|
60
|
+
"close": "Close",
|
|
61
|
+
"copyCode": "Copy code",
|
|
62
|
+
"copied": "Copied!",
|
|
63
|
+
"copiedDescription": "Import code copied to clipboard.",
|
|
64
|
+
"copyError": "Failed to copy code. Try selecting and copying manually.",
|
|
65
|
+
"loadError": "Failed to load data for export."
|
|
66
|
+
},
|
|
67
|
+
"common": {
|
|
68
|
+
"error": "Error"
|
|
69
|
+
}
|
|
70
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Event Graphs",
|
|
3
|
+
"description": "Manage your bot's behavior scenarios.",
|
|
4
|
+
"empty": {
|
|
5
|
+
"title": "No event graphs yet",
|
|
6
|
+
"description": "Start by creating your first graph to automate bot actions.",
|
|
7
|
+
"createFirst": "Create first graph"
|
|
8
|
+
},
|
|
9
|
+
"actions": {
|
|
10
|
+
"import": "Import",
|
|
11
|
+
"create": "Create",
|
|
12
|
+
"edit": "Edit",
|
|
13
|
+
"duplicate": "Duplicate",
|
|
14
|
+
"share": "Share",
|
|
15
|
+
"delete": "Delete",
|
|
16
|
+
"save": "Save",
|
|
17
|
+
"saving": "Saving...",
|
|
18
|
+
"cancel": "Cancel"
|
|
19
|
+
},
|
|
20
|
+
"table": {
|
|
21
|
+
"status": "Status",
|
|
22
|
+
"name": "Name",
|
|
23
|
+
"plugin": "Plugin",
|
|
24
|
+
"triggers": "Triggers",
|
|
25
|
+
"stats": "Statistics",
|
|
26
|
+
"actions": "Actions"
|
|
27
|
+
},
|
|
28
|
+
"deleteDialog": {
|
|
29
|
+
"title": "Are you sure?",
|
|
30
|
+
"description": "This action is irreversible. Graph \"{{name}}\" will be deleted permanently."
|
|
31
|
+
},
|
|
32
|
+
"editor": {
|
|
33
|
+
"title": "Graph Editor"
|
|
34
|
+
},
|
|
35
|
+
"loading": {
|
|
36
|
+
"graphs": "Loading event graphs...",
|
|
37
|
+
"editor": "Loading event graph..."
|
|
38
|
+
},
|
|
39
|
+
"messages": {
|
|
40
|
+
"error": "Error",
|
|
41
|
+
"success": "Success",
|
|
42
|
+
"loadError": "Failed to load event graphs.",
|
|
43
|
+
"toggleError": "Failed to change graph status.",
|
|
44
|
+
"toggleSuccess": "Graph \"{{name}}\" was {{status}}.",
|
|
45
|
+
"enabled": "enabled",
|
|
46
|
+
"disabled": "disabled",
|
|
47
|
+
"duplicateSuccess": "Graph was duplicated.",
|
|
48
|
+
"duplicateError": "Failed to duplicate graph."
|
|
49
|
+
}
|
|
50
|
+
}
|