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.
Files changed (476) hide show
  1. package/CHANGELOG.md +76 -1
  2. package/README.en.md +427 -0
  3. package/README.md +40 -0
  4. package/backend/package.json +2 -2
  5. package/backend/prisma/migrations/20260328173000_add_plugin_source_ref/migration.sql +2 -0
  6. package/backend/prisma/migrations/migration_lock.toml +2 -2
  7. package/backend/prisma/schema.prisma +2 -0
  8. package/backend/src/ai/plugin-assistant-system-prompt.md +664 -5
  9. package/backend/src/api/routes/apiKeys.js +8 -0
  10. package/backend/src/api/routes/bots.js +271 -9
  11. package/backend/src/api/routes/eventGraphs.js +151 -1
  12. package/backend/src/api/routes/health.js +38 -0
  13. package/backend/src/api/routes/nodeRegistry.js +63 -0
  14. package/backend/src/api/routes/plugins.js +254 -29
  15. package/backend/src/api/routes/servers.js +14 -2
  16. package/backend/src/container.js +11 -8
  17. package/backend/src/core/BotCommandLoader.js +161 -0
  18. package/backend/src/core/BotConnection.js +125 -0
  19. package/backend/src/core/BotEventHandlers.js +234 -0
  20. package/backend/src/core/BotIPCHandler.js +445 -0
  21. package/backend/src/core/BotManager.js +15 -7
  22. package/backend/src/core/BotProcess.js +169 -140
  23. package/backend/src/core/EventGraphManager.js +7 -3
  24. package/backend/src/core/GraphDebugHandler.js +229 -0
  25. package/backend/src/core/GraphDebugIPC.js +117 -0
  26. package/backend/src/core/GraphExecutionEngine.js +545 -978
  27. package/backend/src/core/GraphTraversal.js +80 -0
  28. package/backend/src/core/GraphValidation.js +73 -0
  29. package/backend/src/core/NodeDefinition.js +138 -0
  30. package/backend/src/core/NodeRegistry.js +153 -141
  31. package/backend/src/core/PluginLoader.js +83 -3
  32. package/backend/src/core/PluginManager.js +346 -35
  33. package/backend/src/core/RewindSignal.js +9 -0
  34. package/backend/src/core/config/ConfigValidator.js +72 -0
  35. package/backend/src/core/config/FeatureFlags.js +52 -0
  36. package/backend/src/core/config/__tests__/ConfigValidator.test.js +232 -0
  37. package/backend/src/core/domain/entities/Bot.js +39 -0
  38. package/backend/src/core/domain/entities/Command.js +41 -0
  39. package/backend/src/core/domain/entities/EventGraph.js +39 -0
  40. package/backend/src/core/domain/entities/Plugin.js +45 -0
  41. package/backend/src/core/domain/entities/User.js +40 -0
  42. package/backend/src/core/domain/services/DependencyResolver.js +168 -0
  43. package/backend/src/core/domain/services/GraphValidator.js +117 -0
  44. package/backend/src/core/domain/services/PermissionChecker.js +34 -0
  45. package/backend/src/core/domain/services/__tests__/DependencyResolver.test.js +126 -0
  46. package/backend/src/core/domain/valueObjects/BotConfig.js +27 -0
  47. package/backend/src/core/domain/valueObjects/DependencyGraph.js +86 -0
  48. package/backend/src/core/domain/valueObjects/PluginManifest.js +36 -0
  49. package/backend/src/core/errors/BaseError.js +29 -0
  50. package/backend/src/core/errors/ErrorHandler.js +81 -0
  51. package/backend/src/core/errors/__tests__/ErrorHandler.test.js +188 -0
  52. package/backend/src/core/errors/index.js +68 -0
  53. package/backend/src/core/infrastructure/BatchingUtility.js +66 -0
  54. package/backend/src/core/infrastructure/CircuitBreaker.js +103 -0
  55. package/backend/src/core/infrastructure/ConnectionPool.js +81 -0
  56. package/backend/src/core/infrastructure/RateLimiter.js +64 -0
  57. package/backend/src/core/infrastructure/__tests__/BatchingUtility.test.js +86 -0
  58. package/backend/src/core/infrastructure/__tests__/CircuitBreaker.test.js +156 -0
  59. package/backend/src/core/infrastructure/__tests__/ConnectionPool.test.js +146 -0
  60. package/backend/src/core/infrastructure/__tests__/RateLimiter.test.js +171 -0
  61. package/backend/src/core/ipc/botApiFactory.js +72 -0
  62. package/backend/src/core/ipc/ipcMessageTypes.js +115 -0
  63. package/backend/src/core/logging/AuditLogger.js +61 -0
  64. package/backend/src/core/logging/StructuredLogger.js +80 -0
  65. package/backend/src/core/logging/__tests__/StructuredLogger.test.js +213 -0
  66. package/backend/src/core/logging/index.js +7 -0
  67. package/backend/src/core/metrics/MetricsCollector.js +104 -0
  68. package/backend/src/core/metrics/__tests__/MetricsCollector.test.js +131 -0
  69. package/backend/src/core/node-registries/actionsNodes.js +191 -0
  70. package/backend/src/core/node-registries/arraysNodes.js +152 -0
  71. package/backend/src/core/node-registries/botNodes.js +48 -0
  72. package/backend/src/core/node-registries/containerNodes.js +141 -0
  73. package/backend/src/core/node-registries/dataNodes.js +284 -0
  74. package/backend/src/core/node-registries/debugNodes.js +23 -0
  75. package/backend/src/core/node-registries/eventsNodes.js +223 -0
  76. package/backend/src/core/node-registries/flowNodes.js +151 -0
  77. package/backend/src/core/node-registries/furnaceNodes.js +123 -0
  78. package/backend/src/core/node-registries/index.js +108 -0
  79. package/backend/src/core/node-registries/inventory.js +102 -106
  80. package/backend/src/core/node-registries/logicNodes.js +54 -0
  81. package/backend/src/core/node-registries/mathNodes.js +38 -0
  82. package/backend/src/core/node-registries/navigationNodes.js +109 -0
  83. package/backend/src/core/node-registries/objectsNodes.js +90 -0
  84. package/backend/src/core/node-registries/stringsNodes.js +165 -0
  85. package/backend/src/core/node-registries/timeNodes.js +105 -0
  86. package/backend/src/core/node-registries/typeNodes.js +22 -0
  87. package/backend/src/core/node-registries/usersNodes.js +126 -0
  88. package/backend/src/core/nodes/arrays/shuffle.js +14 -0
  89. package/backend/src/core/nodes/bot/get_name.js +8 -0
  90. package/backend/src/core/nodes/bot/stop_bot.js +5 -0
  91. package/backend/src/core/nodes/container/open.js +101 -111
  92. package/backend/src/core/nodes/data/store_read.js +26 -0
  93. package/backend/src/core/nodes/data/store_write.js +23 -0
  94. package/backend/src/core/nodes/event/call_event.js +31 -0
  95. package/backend/src/core/nodes/event/custom_event.js +8 -0
  96. package/backend/src/core/nodes/flow/timer.js +35 -0
  97. package/backend/src/core/nodes/inventory/drop.js +73 -65
  98. package/backend/src/core/nodes/inventory/equip.js +54 -45
  99. package/backend/src/core/nodes/inventory/select_slot.js +48 -46
  100. package/backend/src/core/nodes/navigation/follow.js +54 -51
  101. package/backend/src/core/nodes/navigation/go_to.js +41 -53
  102. package/backend/src/core/nodes/navigation/go_to_entity.js +65 -69
  103. package/backend/src/core/nodes/navigation/go_to_player.js +65 -70
  104. package/backend/src/core/nodes/navigation/stop.js +17 -26
  105. package/backend/src/core/nodes/users/add_to_group.js +24 -0
  106. package/backend/src/core/nodes/users/check_permission.js +26 -0
  107. package/backend/src/core/nodes/users/remove_from_group.js +24 -0
  108. package/backend/src/core/services/BotIPCMessageRouter.js +337 -0
  109. package/backend/src/core/services/BotLifecycleService.js +43 -450
  110. package/backend/src/core/services/CacheManager.js +83 -23
  111. package/backend/src/core/services/CrashRestartManager.js +42 -0
  112. package/backend/src/core/services/DebugSessionManager.js +114 -12
  113. package/backend/src/core/services/EventGraphService.js +69 -0
  114. package/backend/src/core/services/MinecraftBotManager.js +9 -1
  115. package/backend/src/core/services/PluginManagementService.js +84 -0
  116. package/backend/src/core/services/TestModeContext.js +65 -0
  117. package/backend/src/core/services/__tests__/CacheManager.test.js +168 -0
  118. package/backend/src/core/services.js +1 -11
  119. package/backend/src/core/validation/InputValidator.js +167 -0
  120. package/backend/src/core/validation/__tests__/InputValidator.test.js +296 -0
  121. package/backend/src/real-time/botApi/index.js +1 -1
  122. package/backend/src/real-time/socketHandler.js +26 -0
  123. package/backend/src/server.js +21 -6
  124. package/frontend/dist/assets/browser-ponyfill-D8y0Ty7C.js +2 -0
  125. package/frontend/dist/assets/index-CFJLS0dk.css +32 -0
  126. package/frontend/dist/assets/index-D91UGNMG.js +11260 -0
  127. package/frontend/dist/flags/en.svg +32 -0
  128. package/frontend/dist/flags/ru.svg +5 -0
  129. package/frontend/dist/index.html +2 -2
  130. package/frontend/dist/locales/en/admin.json +100 -0
  131. package/frontend/dist/locales/en/api-keys.json +58 -0
  132. package/frontend/dist/locales/en/bots.json +113 -0
  133. package/frontend/dist/locales/en/common.json +53 -0
  134. package/frontend/dist/locales/en/configuration.json +22 -0
  135. package/frontend/dist/locales/en/console.json +10 -0
  136. package/frontend/dist/locales/en/dashboard.json +85 -0
  137. package/frontend/dist/locales/en/dialogs.json +70 -0
  138. package/frontend/dist/locales/en/event-graphs.json +50 -0
  139. package/frontend/dist/locales/en/graph-store.json +70 -0
  140. package/frontend/dist/locales/en/login.json +36 -0
  141. package/frontend/dist/locales/en/management.json +192 -0
  142. package/frontend/dist/locales/en/minecraft-viewer.json +27 -0
  143. package/frontend/dist/locales/en/nodes.json +1132 -0
  144. package/frontend/dist/locales/en/permissions.json +50 -0
  145. package/frontend/dist/locales/en/plugin-detail.json +69 -0
  146. package/frontend/dist/locales/en/plugins.json +329 -0
  147. package/frontend/dist/locales/en/proxies.json +81 -0
  148. package/frontend/dist/locales/en/servers.json +39 -0
  149. package/frontend/dist/locales/en/setup.json +19 -0
  150. package/frontend/dist/locales/en/sidebar.json +195 -0
  151. package/frontend/dist/locales/en/tasks.json +62 -0
  152. package/frontend/dist/locales/en/visual-editor.json +418 -0
  153. package/frontend/dist/locales/en/websocket.json +86 -0
  154. package/frontend/dist/locales/ru/admin.json +100 -0
  155. package/frontend/dist/locales/ru/api-keys.json +58 -0
  156. package/frontend/dist/locales/ru/bots.json +113 -0
  157. package/frontend/dist/locales/ru/common.json +49 -0
  158. package/frontend/dist/locales/ru/configuration.json +22 -0
  159. package/frontend/dist/locales/ru/console.json +10 -0
  160. package/frontend/dist/locales/ru/dashboard.json +85 -0
  161. package/frontend/dist/locales/ru/dialogs.json +70 -0
  162. package/frontend/dist/locales/ru/event-graphs.json +50 -0
  163. package/frontend/dist/locales/ru/graph-store.json +70 -0
  164. package/frontend/dist/locales/ru/login.json +36 -0
  165. package/frontend/dist/locales/ru/management.json +192 -0
  166. package/frontend/dist/locales/ru/minecraft-viewer.json +30 -0
  167. package/frontend/dist/locales/ru/nodes.json +1131 -0
  168. package/frontend/dist/locales/ru/permissions.json +50 -0
  169. package/frontend/dist/locales/ru/plugin-detail.json +49 -0
  170. package/frontend/dist/locales/ru/plugins.json +209 -0
  171. package/frontend/dist/locales/ru/proxies.json +81 -0
  172. package/frontend/dist/locales/ru/servers.json +39 -0
  173. package/frontend/dist/locales/ru/setup.json +19 -0
  174. package/frontend/dist/locales/ru/sidebar.json +195 -0
  175. package/frontend/dist/locales/ru/tasks.json +62 -0
  176. package/frontend/dist/locales/ru/visual-editor.json +420 -0
  177. package/frontend/dist/locales/ru/websocket.json +86 -0
  178. package/frontend/dist/monacoeditorwork/css.worker.bundle.js +7 -7
  179. package/frontend/dist/monacoeditorwork/html.worker.bundle.js +7 -7
  180. package/frontend/dist/monacoeditorwork/json.worker.bundle.js +7 -7
  181. package/frontend/dist/monacoeditorwork/ts.worker.bundle.js +3 -3
  182. package/frontend/package.json +6 -0
  183. package/nul +12 -0
  184. package/package.json +3 -3
  185. package/screen/3dviewer.png +0 -0
  186. package/screen/console.png +0 -0
  187. package/screen/dashboard.png +0 -0
  188. package/screen/graph_collabe.png +0 -0
  189. package/screen/graph_live_debug.png +0 -0
  190. package/screen/language_selector.png +0 -0
  191. package/screen/management_command.png +0 -0
  192. package/screen/node_debug_trace.png +0 -0
  193. package/screen/plugin_/320/276/320/261/320/267/320/276/321/200.png +0 -0
  194. package/screen/websocket.png +0 -0
  195. 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
  196. 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
  197. package/.claude/agents/README.md +0 -469
  198. package/.claude/agents/auth-route-debugger.md +0 -118
  199. package/.claude/agents/auth-route-tester.md +0 -93
  200. package/.claude/agents/auto-error-resolver.md +0 -97
  201. package/.claude/agents/build-optimizer.md +0 -236
  202. package/.claude/agents/code-architect.md +0 -34
  203. package/.claude/agents/code-architecture-reviewer.md +0 -83
  204. package/.claude/agents/code-explorer.md +0 -51
  205. package/.claude/agents/code-refactor-master.md +0 -94
  206. package/.claude/agents/code-reviewer.md +0 -46
  207. package/.claude/agents/cost-optimizer.md +0 -134
  208. package/.claude/agents/deployment-orchestrator.md +0 -113
  209. package/.claude/agents/documentation-architect.md +0 -82
  210. package/.claude/agents/frontend-error-fixer.md +0 -77
  211. package/.claude/agents/iac-code-generator.md +0 -71
  212. package/.claude/agents/incident-responder.md +0 -346
  213. package/.claude/agents/infrastructure-architect.md +0 -31
  214. package/.claude/agents/kubernetes-specialist.md +0 -56
  215. package/.claude/agents/migration-planner.md +0 -181
  216. package/.claude/agents/network-architect.md +0 -196
  217. package/.claude/agents/plan-reviewer.md +0 -52
  218. package/.claude/agents/refactor-planner.md +0 -63
  219. package/.claude/agents/security-scanner.md +0 -102
  220. package/.claude/agents/web-research-specialist.md +0 -78
  221. package/.claude/commands/cost-analysis.md +0 -315
  222. package/.claude/commands/dev-docs-update.md +0 -55
  223. package/.claude/commands/dev-docs.md +0 -51
  224. package/.claude/commands/feature-dev.md +0 -125
  225. package/.claude/commands/incident-debug.md +0 -247
  226. package/.claude/commands/infra-plan.md +0 -81
  227. package/.claude/commands/migration-plan.md +0 -478
  228. package/.claude/commands/route-research-for-testing.md +0 -37
  229. package/.claude/commands/security-review.md +0 -66
  230. package/.claude/hooks/CONFIG.md +0 -448
  231. package/.claude/hooks/README.md +0 -163
  232. package/.claude/hooks/SKILL_ACTIVATION_COMPLETE.md +0 -226
  233. package/.claude/hooks/WINDOWS_HOOKS_README.md +0 -151
  234. package/.claude/hooks/add-skill-activation-banners.ts +0 -132
  235. package/.claude/hooks/comprehensive-skill-test.ts +0 -1315
  236. package/.claude/hooks/error-handling-reminder.sh +0 -12
  237. package/.claude/hooks/error-handling-reminder.ts +0 -222
  238. package/.claude/hooks/k8s-manifest-validator.sh +0 -56
  239. package/.claude/hooks/package-lock.json +0 -556
  240. package/.claude/hooks/package.json +0 -16
  241. package/.claude/hooks/post-tool-use-tracker.ps1 +0 -174
  242. package/.claude/hooks/post-tool-use-tracker.sh +0 -183
  243. package/.claude/hooks/security-policy-check.sh +0 -247
  244. package/.claude/hooks/skill-activation-prompt.ps1 +0 -10
  245. package/.claude/hooks/skill-activation-prompt.sh +0 -10
  246. package/.claude/hooks/skill-activation-prompt.ts +0 -141
  247. package/.claude/hooks/stop-build-check-enhanced.sh +0 -130
  248. package/.claude/hooks/terraform-validator.sh +0 -53
  249. package/.claude/hooks/test-input.json +0 -7
  250. package/.claude/hooks/test-skill-activation.ts +0 -427
  251. package/.claude/hooks/trigger-build-resolver.sh +0 -79
  252. package/.claude/hooks/tsc-check.sh +0 -173
  253. package/.claude/hooks/tsconfig.json +0 -19
  254. package/.claude/settings.json +0 -59
  255. package/.claude/settings.local.json +0 -67
  256. package/.claude/skills/README.md +0 -507
  257. package/.claude/skills/api-engineering/SKILL.md +0 -63
  258. package/.claude/skills/api-engineering/resources/api-versioning.md +0 -88
  259. package/.claude/skills/api-engineering/resources/graphql-patterns.md +0 -106
  260. package/.claude/skills/api-engineering/resources/rate-limiting.md +0 -118
  261. package/.claude/skills/api-engineering/resources/rest-api-design.md +0 -105
  262. package/.claude/skills/backend-dev-guidelines/SKILL.md +0 -306
  263. package/.claude/skills/backend-dev-guidelines/resources/architecture-overview.md +0 -451
  264. package/.claude/skills/backend-dev-guidelines/resources/async-and-errors.md +0 -307
  265. package/.claude/skills/backend-dev-guidelines/resources/complete-examples.md +0 -638
  266. package/.claude/skills/backend-dev-guidelines/resources/configuration.md +0 -275
  267. package/.claude/skills/backend-dev-guidelines/resources/database-patterns.md +0 -224
  268. package/.claude/skills/backend-dev-guidelines/resources/middleware-guide.md +0 -213
  269. package/.claude/skills/backend-dev-guidelines/resources/routing-and-controllers.md +0 -756
  270. package/.claude/skills/backend-dev-guidelines/resources/sentry-and-monitoring.md +0 -336
  271. package/.claude/skills/backend-dev-guidelines/resources/services-and-repositories.md +0 -789
  272. package/.claude/skills/backend-dev-guidelines/resources/testing-guide.md +0 -235
  273. package/.claude/skills/backend-dev-guidelines/resources/validation-patterns.md +0 -754
  274. package/.claude/skills/budget-and-cost-management/SKILL.md +0 -850
  275. package/.claude/skills/build-engineering/SKILL.md +0 -431
  276. package/.claude/skills/build-engineering/resources/artifact-repositories.md +0 -72
  277. package/.claude/skills/build-engineering/resources/build-caching.md +0 -96
  278. package/.claude/skills/build-engineering/resources/build-pipelines.md +0 -105
  279. package/.claude/skills/build-engineering/resources/build-security.md +0 -95
  280. package/.claude/skills/build-engineering/resources/build-systems.md +0 -389
  281. package/.claude/skills/build-engineering/resources/compilation-optimization.md +0 -201
  282. package/.claude/skills/build-engineering/resources/dependency-management.md +0 -73
  283. package/.claude/skills/build-engineering/resources/monorepo-builds.md +0 -110
  284. package/.claude/skills/build-engineering/resources/performance-optimization.md +0 -113
  285. package/.claude/skills/build-engineering/resources/reproducible-builds.md +0 -82
  286. package/.claude/skills/cloud-engineering/SKILL.md +0 -675
  287. package/.claude/skills/cloud-engineering/resources/aws-patterns.md +0 -742
  288. package/.claude/skills/cloud-engineering/resources/azure-patterns.md +0 -714
  289. package/.claude/skills/cloud-engineering/resources/cleared-cloud-environments.md +0 -987
  290. package/.claude/skills/cloud-engineering/resources/cloud-cost-optimization.md +0 -757
  291. package/.claude/skills/cloud-engineering/resources/cloud-networking.md +0 -1058
  292. package/.claude/skills/cloud-engineering/resources/cloud-security-tools.md +0 -1530
  293. package/.claude/skills/cloud-engineering/resources/cloud-security.md +0 -990
  294. package/.claude/skills/cloud-engineering/resources/gcp-patterns.md +0 -758
  295. package/.claude/skills/cloud-engineering/resources/migration-strategies.md +0 -820
  296. package/.claude/skills/cloud-engineering/resources/multi-cloud-strategies.md +0 -670
  297. package/.claude/skills/cloud-engineering/resources/oci-patterns.md +0 -1198
  298. package/.claude/skills/cloud-engineering/resources/serverless-patterns.md +0 -795
  299. package/.claude/skills/cloud-engineering/resources/well-architected-frameworks.md +0 -966
  300. package/.claude/skills/cybersecurity/SKILL.md +0 -409
  301. package/.claude/skills/cybersecurity/resources/security-architecture.md +0 -266
  302. package/.claude/skills/database-engineering/SKILL.md +0 -61
  303. package/.claude/skills/database-engineering/resources/backup-and-recovery.md +0 -72
  304. package/.claude/skills/database-engineering/resources/database-replication.md +0 -63
  305. package/.claude/skills/database-engineering/resources/postgresql-fundamentals.md +0 -70
  306. package/.claude/skills/database-engineering/resources/query-optimization.md +0 -68
  307. package/.claude/skills/devsecops/SKILL.md +0 -374
  308. package/.claude/skills/devsecops/resources/ci-cd-security.md +0 -204
  309. package/.claude/skills/devsecops/resources/compliance-automation.md +0 -530
  310. package/.claude/skills/devsecops/resources/compliance-frameworks.md +0 -2322
  311. package/.claude/skills/devsecops/resources/container-security.md +0 -915
  312. package/.claude/skills/devsecops/resources/cspm-integration.md +0 -1440
  313. package/.claude/skills/devsecops/resources/policy-enforcement.md +0 -619
  314. package/.claude/skills/devsecops/resources/secrets-management.md +0 -755
  315. package/.claude/skills/devsecops/resources/security-monitoring.md +0 -146
  316. package/.claude/skills/devsecops/resources/security-scanning.md +0 -887
  317. package/.claude/skills/devsecops/resources/security-testing.md +0 -203
  318. package/.claude/skills/devsecops/resources/supply-chain-security.md +0 -518
  319. package/.claude/skills/devsecops/resources/vulnerability-management.md +0 -481
  320. package/.claude/skills/devsecops/resources/zero-trust-architecture.md +0 -177
  321. package/.claude/skills/documentation-as-code/SKILL.md +0 -323
  322. package/.claude/skills/documentation-as-code/resources/api-documentation.md +0 -90
  323. package/.claude/skills/documentation-as-code/resources/changelog-management.md +0 -79
  324. package/.claude/skills/documentation-as-code/resources/diagram-generation.md +0 -44
  325. package/.claude/skills/documentation-as-code/resources/docs-as-code-workflow.md +0 -99
  326. package/.claude/skills/documentation-as-code/resources/documentation-automation.md +0 -68
  327. package/.claude/skills/documentation-as-code/resources/documentation-sites.md +0 -79
  328. package/.claude/skills/documentation-as-code/resources/markdown-best-practices.md +0 -162
  329. package/.claude/skills/documentation-as-code/resources/openapi-specification.md +0 -77
  330. package/.claude/skills/documentation-as-code/resources/readme-engineering.md +0 -60
  331. package/.claude/skills/documentation-as-code/resources/technical-writing-guide.md +0 -202
  332. package/.claude/skills/engineering-management/SKILL.md +0 -356
  333. package/.claude/skills/engineering-management/resources/career-ladders.md +0 -609
  334. package/.claude/skills/engineering-management/resources/hiring-and-assessment.md +0 -555
  335. package/.claude/skills/engineering-management/resources/one-on-one-guides.md +0 -609
  336. package/.claude/skills/engineering-management/resources/resource-planning.md +0 -557
  337. package/.claude/skills/engineering-management/resources/team-organization-patterns.md +0 -491
  338. package/.claude/skills/engineering-management/resources/technical-interviews.md +0 -474
  339. package/.claude/skills/engineering-operations-management/SKILL.md +0 -817
  340. package/.claude/skills/error-tracking/SKILL.md +0 -379
  341. package/.claude/skills/frontend-design/SKILL.md +0 -42
  342. package/.claude/skills/frontend-dev-guidelines/SKILL.md +0 -403
  343. package/.claude/skills/frontend-dev-guidelines/resources/common-patterns.md +0 -331
  344. package/.claude/skills/frontend-dev-guidelines/resources/complete-examples.md +0 -872
  345. package/.claude/skills/frontend-dev-guidelines/resources/component-patterns.md +0 -502
  346. package/.claude/skills/frontend-dev-guidelines/resources/data-fetching.md +0 -767
  347. package/.claude/skills/frontend-dev-guidelines/resources/file-organization.md +0 -502
  348. package/.claude/skills/frontend-dev-guidelines/resources/loading-and-error-states.md +0 -501
  349. package/.claude/skills/frontend-dev-guidelines/resources/performance.md +0 -406
  350. package/.claude/skills/frontend-dev-guidelines/resources/routing-guide.md +0 -364
  351. package/.claude/skills/frontend-dev-guidelines/resources/styling-guide.md +0 -428
  352. package/.claude/skills/frontend-dev-guidelines/resources/typescript-standards.md +0 -418
  353. package/.claude/skills/general-it-engineering/SKILL.md +0 -393
  354. package/.claude/skills/general-it-engineering/resources/asset-management.md +0 -712
  355. package/.claude/skills/general-it-engineering/resources/automation-orchestration.md +0 -817
  356. package/.claude/skills/general-it-engineering/resources/business-continuity.md +0 -786
  357. package/.claude/skills/general-it-engineering/resources/change-management.md +0 -715
  358. package/.claude/skills/general-it-engineering/resources/enterprise-monitoring.md +0 -729
  359. package/.claude/skills/general-it-engineering/resources/help-desk-operations.md +0 -738
  360. package/.claude/skills/general-it-engineering/resources/incident-service-management.md +0 -834
  361. package/.claude/skills/general-it-engineering/resources/it-governance.md +0 -753
  362. package/.claude/skills/general-it-engineering/resources/itil-framework.md +0 -503
  363. package/.claude/skills/general-it-engineering/resources/service-management.md +0 -669
  364. package/.claude/skills/infrastructure-architecture/SKILL.md +0 -328
  365. package/.claude/skills/infrastructure-architecture/resources/architecture-decision-records.md +0 -505
  366. package/.claude/skills/infrastructure-architecture/resources/architecture-patterns.md +0 -528
  367. package/.claude/skills/infrastructure-architecture/resources/capacity-planning.md +0 -453
  368. package/.claude/skills/infrastructure-architecture/resources/cleared-environment-architecture.md +0 -773
  369. package/.claude/skills/infrastructure-architecture/resources/cost-architecture.md +0 -499
  370. package/.claude/skills/infrastructure-architecture/resources/data-architecture.md +0 -501
  371. package/.claude/skills/infrastructure-architecture/resources/disaster-recovery.md +0 -535
  372. package/.claude/skills/infrastructure-architecture/resources/migration-architecture.md +0 -512
  373. package/.claude/skills/infrastructure-architecture/resources/multi-region-design.md +0 -608
  374. package/.claude/skills/infrastructure-architecture/resources/reference-architectures.md +0 -562
  375. package/.claude/skills/infrastructure-architecture/resources/security-architecture.md +0 -538
  376. package/.claude/skills/infrastructure-architecture/resources/system-design-principles.md +0 -489
  377. package/.claude/skills/infrastructure-architecture/resources/workload-classification.md +0 -1000
  378. package/.claude/skills/infrastructure-strategy/SKILL.md +0 -924
  379. package/.claude/skills/network-engineering/SKILL.md +0 -385
  380. package/.claude/skills/network-engineering/resources/dns-management.md +0 -738
  381. package/.claude/skills/network-engineering/resources/load-balancing.md +0 -820
  382. package/.claude/skills/network-engineering/resources/network-architecture.md +0 -546
  383. package/.claude/skills/network-engineering/resources/network-security.md +0 -921
  384. package/.claude/skills/network-engineering/resources/network-troubleshooting.md +0 -749
  385. package/.claude/skills/network-engineering/resources/routing-switching.md +0 -373
  386. package/.claude/skills/network-engineering/resources/sdn-networking.md +0 -695
  387. package/.claude/skills/network-engineering/resources/service-mesh-networking.md +0 -777
  388. package/.claude/skills/network-engineering/resources/tcp-ip-protocols.md +0 -444
  389. package/.claude/skills/network-engineering/resources/vpn-connectivity.md +0 -672
  390. package/.claude/skills/node-development/SKILL.md +0 -317
  391. package/.claude/skills/observability-engineering/SKILL.md +0 -101
  392. package/.claude/skills/observability-engineering/resources/apm-tools.md +0 -97
  393. package/.claude/skills/observability-engineering/resources/correlation-strategies.md +0 -87
  394. package/.claude/skills/observability-engineering/resources/distributed-tracing.md +0 -98
  395. package/.claude/skills/observability-engineering/resources/logs-aggregation.md +0 -118
  396. package/.claude/skills/observability-engineering/resources/observability-cost-optimization.md +0 -141
  397. package/.claude/skills/observability-engineering/resources/opentelemetry.md +0 -110
  398. package/.claude/skills/platform-engineering/SKILL.md +0 -555
  399. package/.claude/skills/platform-engineering/resources/architecture-overview.md +0 -600
  400. package/.claude/skills/platform-engineering/resources/container-orchestration.md +0 -916
  401. package/.claude/skills/platform-engineering/resources/cost-optimization.md +0 -634
  402. package/.claude/skills/platform-engineering/resources/developer-platforms.md +0 -670
  403. package/.claude/skills/platform-engineering/resources/gitops-automation.md +0 -650
  404. package/.claude/skills/platform-engineering/resources/infrastructure-as-code.md +0 -778
  405. package/.claude/skills/platform-engineering/resources/infrastructure-standards.md +0 -708
  406. package/.claude/skills/platform-engineering/resources/multi-tenancy.md +0 -602
  407. package/.claude/skills/platform-engineering/resources/platform-security.md +0 -711
  408. package/.claude/skills/platform-engineering/resources/resource-management.md +0 -592
  409. package/.claude/skills/platform-engineering/resources/service-mesh.md +0 -628
  410. package/.claude/skills/release-engineering/SKILL.md +0 -393
  411. package/.claude/skills/release-engineering/resources/artifact-management.md +0 -108
  412. package/.claude/skills/release-engineering/resources/build-optimization.md +0 -84
  413. package/.claude/skills/release-engineering/resources/ci-cd-pipelines.md +0 -411
  414. package/.claude/skills/release-engineering/resources/deployment-strategies.md +0 -197
  415. package/.claude/skills/release-engineering/resources/pipeline-security.md +0 -62
  416. package/.claude/skills/release-engineering/resources/progressive-delivery.md +0 -83
  417. package/.claude/skills/release-engineering/resources/release-automation.md +0 -68
  418. package/.claude/skills/release-engineering/resources/release-orchestration.md +0 -77
  419. package/.claude/skills/release-engineering/resources/rollback-strategies.md +0 -66
  420. package/.claude/skills/release-engineering/resources/versioning-strategies.md +0 -59
  421. package/.claude/skills/route-tester/SKILL.md +0 -392
  422. package/.claude/skills/skill-developer/ADVANCED.md +0 -197
  423. package/.claude/skills/skill-developer/HOOK_MECHANISMS.md +0 -306
  424. package/.claude/skills/skill-developer/PATTERNS_LIBRARY.md +0 -152
  425. package/.claude/skills/skill-developer/SKILL.md +0 -430
  426. package/.claude/skills/skill-developer/SKILL_RULES_REFERENCE.md +0 -315
  427. package/.claude/skills/skill-developer/TRIGGER_TYPES.md +0 -305
  428. package/.claude/skills/skill-developer/TROUBLESHOOTING.md +0 -514
  429. package/.claude/skills/skill-rules.json +0 -2989
  430. package/.claude/skills/sre/SKILL.md +0 -464
  431. package/.claude/skills/sre/resources/alerting-best-practices.md +0 -282
  432. package/.claude/skills/sre/resources/capacity-planning.md +0 -226
  433. package/.claude/skills/sre/resources/chaos-engineering.md +0 -193
  434. package/.claude/skills/sre/resources/disaster-recovery.md +0 -232
  435. package/.claude/skills/sre/resources/incident-management.md +0 -436
  436. package/.claude/skills/sre/resources/observability-stack.md +0 -240
  437. package/.claude/skills/sre/resources/on-call-runbooks.md +0 -167
  438. package/.claude/skills/sre/resources/performance-optimization.md +0 -108
  439. package/.claude/skills/sre/resources/reliability-patterns.md +0 -183
  440. package/.claude/skills/sre/resources/slo-sli-sla.md +0 -464
  441. package/.claude/skills/sre/resources/toil-reduction.md +0 -145
  442. package/.claude/skills/systems-engineering/SKILL.md +0 -648
  443. package/.claude/skills/systems-engineering/resources/automation-patterns.md +0 -771
  444. package/.claude/skills/systems-engineering/resources/configuration-management.md +0 -998
  445. package/.claude/skills/systems-engineering/resources/linux-administration.md +0 -672
  446. package/.claude/skills/systems-engineering/resources/networking-fundamentals.md +0 -982
  447. package/.claude/skills/systems-engineering/resources/performance-tuning.md +0 -871
  448. package/.claude/skills/systems-engineering/resources/powershell-scripting.md +0 -482
  449. package/.claude/skills/systems-engineering/resources/security-hardening.md +0 -739
  450. package/.claude/skills/systems-engineering/resources/shell-scripting.md +0 -915
  451. package/.claude/skills/systems-engineering/resources/storage-management.md +0 -628
  452. package/.claude/skills/systems-engineering/resources/system-monitoring.md +0 -787
  453. package/.claude/skills/systems-engineering/resources/troubleshooting-guide.md +0 -753
  454. package/.claude/skills/systems-engineering/resources/windows-administration.md +0 -738
  455. package/.claude/skills/technical-leadership/SKILL.md +0 -728
  456. package/backend/docs/SECRETS_DOCUMENTATION.md +0 -327
  457. package/backend/package-lock.json +0 -6801
  458. package/backend/src/core/node-registries/actions.js +0 -202
  459. package/backend/src/core/node-registries/arrays.js +0 -155
  460. package/backend/src/core/node-registries/bot.js +0 -23
  461. package/backend/src/core/node-registries/container.js +0 -162
  462. package/backend/src/core/node-registries/data.js +0 -290
  463. package/backend/src/core/node-registries/debug.js +0 -26
  464. package/backend/src/core/node-registries/events.js +0 -201
  465. package/backend/src/core/node-registries/flow.js +0 -139
  466. package/backend/src/core/node-registries/furnace.js +0 -143
  467. package/backend/src/core/node-registries/logic.js +0 -62
  468. package/backend/src/core/node-registries/math.js +0 -42
  469. package/backend/src/core/node-registries/navigation.js +0 -111
  470. package/backend/src/core/node-registries/objects.js +0 -98
  471. package/backend/src/core/node-registries/strings.js +0 -187
  472. package/backend/src/core/node-registries/time.js +0 -113
  473. package/backend/src/core/node-registries/type.js +0 -25
  474. package/backend/src/core/node-registries/users.js +0 -79
  475. package/frontend/dist/assets/index-BC-NbKXi.css +0 -32
  476. package/frontend/dist/assets/index-DqJXZMHY.js +0 -11266
package/CHANGELOG.md CHANGED
@@ -1,6 +1,81 @@
1
- # История версий
1
+ # История версий
2
+
3
+
4
+ ## [1.27.0](https://github.com/blockmineJS/blockmine/compare/v1.25.0...v1.27.0) (2026-05-12)
5
+
6
+
7
+ ### 🛠 Рефакторинг
8
+
9
+ * внутренний большой рефактор бэкенда ([eb27f26](https://github.com/blockmineJS/blockmine/commit/eb27f2600218f05a8b8707adfed3a5a2298531f6))
10
+ * полноценный внутренний рефактор нод ([28387a9](https://github.com/blockmineJS/blockmine/commit/28387a917bf89e33e9715cbd03483accc136b9af))
11
+
12
+
13
+ ### 🐛 Исправления
14
+
15
+ * нода "сообщение в чате" работает в локал мире ([17bbde8](https://github.com/blockmineJS/blockmine/commit/17bbde82115cecee646a10bc26f21ec23856e33e))
16
+ * пост инсталл скрипт теперь есть... ([c5248cb](https://github.com/blockmineJS/blockmine/commit/c5248cbb805057b52efaea67209bea325b2e0b31))
17
+ * причина кика теперь корректно пишется ([08de739](https://github.com/blockmineJS/blockmine/commit/08de739fc03ce35ae136b3bd5cb5b822145139cf))
18
+ * роут install local теперь может работать и через апи ключ ([03f1176](https://github.com/blockmineJS/blockmine/commit/03f117690cda3d2966a928be217ad78154d4ec87))
19
+ * address PR79 review feedback ([5dceb17](https://github.com/blockmineJS/blockmine/commit/5dceb174ef3009f47cb5a94f48f5e90c4c790feb))
20
+ * address remaining PR79 review feedback ([dde6905](https://github.com/blockmineJS/blockmine/commit/dde690593320344f181f9a13fc4dc4905872e2cf))
21
+ * close active connection on API key deletion ([2f7db12](https://github.com/blockmineJS/blockmine/commit/2f7db123b0b46c3aedf806d7d543316d7aace1f5))
22
+ * close remaining plugin workflow review issues ([9f2dd7f](https://github.com/blockmineJS/blockmine/commit/9f2dd7fa422b5b276df4da96f7b9302d489b5e9f))
23
+ * polish language selector modal ([2cebe65](https://github.com/blockmineJS/blockmine/commit/2cebe6554b21191e7f6ce8a532e243832f2a2ded))
24
+ * polish plugin list alignment and text clarity ([8c27d60](https://github.com/blockmineJS/blockmine/commit/8c27d6062625e5a55e76a193ed1d3500a88f8246))
25
+ * remove remaining emoji from english visual editor ([5a4f356](https://github.com/blockmineJS/blockmine/commit/5a4f3563fad29a4054bc98b31b5bc79c0d0b8572))
26
+
27
+
28
+ ### ✨ Новые возможности
29
+
30
+ * большая переработка интерфейса и прочее ([d28e0fa](https://github.com/blockmineJS/blockmine/commit/d28e0fa4af1815476ad90ddd0fb5799db95707ea))
31
+ * в лайв дебаге появилась функция которая дает опробовать ноды без запуска бота ([bbd669f](https://github.com/blockmineJS/blockmine/commit/bbd669f463d62bffacb65b8d6066d5345a0e237f))
32
+ * новая нода - имя бота ([574eada](https://github.com/blockmineJS/blockmine/commit/574eada6af5e89b2b67159b82ca435a2f8446004))
33
+ * новая нода - прочитать/записать в стор ([eeb588e](https://github.com/blockmineJS/blockmine/commit/eeb588e1305d8bfb68cf7e388abf8b092a7865c2))
34
+ * новая нода - стоп бот ([0639ed4](https://github.com/blockmineJS/blockmine/commit/0639ed439d0263fda229f261f317d54df3876d8c))
35
+ * новая нода - таймер ([1d7899d](https://github.com/blockmineJS/blockmine/commit/1d7899d243232ae3062a84d6bc46f0f05897b40d))
36
+ * новая нода - шаффл. перемешать массив ([67e785a](https://github.com/blockmineJS/blockmine/commit/67e785aa7706eb19a489042fcf2aec20643a0b79))
37
+ * новые ноды - события ([ae4db8e](https://github.com/blockmineJS/blockmine/commit/ae4db8e8a11dcdf9c72536a850d65032fa528661))
38
+ * новые ноды. проверить право у юзера, добавить/убрать из группы ([3249483](https://github.com/blockmineJS/blockmine/commit/32494831636432013aa72978daa41bc4668a51af))
39
+ * обновлен сайдбар ([8d77a48](https://github.com/blockmineJS/blockmine/commit/8d77a4834bc60c76de6010a794b4b79926d3fed1))
40
+ * обновление mineflayer. 4.33 -> 4.37.1 . Поддерживает новые версии майнкрафта ([b7f2317](https://github.com/blockmineJS/blockmine/commit/b7f23175ba983fda2a2108d31e54d291d9d17212))
41
+ * improve plugin workflows and panel UX ([09f111a](https://github.com/blockmineJS/blockmine/commit/09f111a9c47e7fd639b345be3d95de4c203213a9))
42
+ * polish management, viewer, and toast ux ([d52e9b3](https://github.com/blockmineJS/blockmine/commit/d52e9b3d5eb56bc45c0417e10f397ad87441809e))
43
+ * polish panel ux, theming, and transitions ([1f347b4](https://github.com/blockmineJS/blockmine/commit/1f347b442cef70f579cdc74c207554f95e68d15a))
44
+ * polish plugin UX and localize panel states ([ef32fc0](https://github.com/blockmineJS/blockmine/commit/ef32fc08494c41e7a15312a2d0ed251255f3bd2b))
45
+ * refine visual editor and panel polish ([0118ec6](https://github.com/blockmineJS/blockmine/commit/0118ec6de81078845551b443e5129b41e6e064f9))
46
+
47
+ ## [1.25.0](https://github.com/blockmineJS/blockmine/compare/v1.24.0...v1.25.0) (2025-12-22)
2
48
 
3
49
 
50
+ ### 🛠 Рефакторинг
51
+
52
+ * перемещена функция shouldShowField в lib для совместимости с master by @artemploxoy ([778e625](https://github.com/blockmineJS/blockmine/commit/778e625e31ef1235ae53fdad628f3012f1ef9602))
53
+ * улучшена читаемость логики обработки прокси в BotForm by @artemploxoy ([59f8c0d](https://github.com/blockmineJS/blockmine/commit/59f8c0d9e3ecf45a0246a80216659bf3454f0ab5))
54
+
55
+
56
+ ### ✨ Новые возможности
57
+
58
+ * добавлена поддержка типа select для настроек плагинов by @artemploxoy ([39aba61](https://github.com/blockmineJS/blockmine/commit/39aba618cbd095e6559b08633e8a6062aa77438e))
59
+ * добавлена система зависимостей для настроек плагинов и исправлена проблема со сбросом прокси @artemploxoy([86f3472](https://github.com/blockmineJS/blockmine/commit/86f3472465cafcb926a1cd69b37f3f987d716aea))
60
+ * использовать displayName вместо ID плагина by @mmeerrkkaa ([1feb04c](https://github.com/blockmineJS/blockmine/commit/1feb04cb4c7aa22aa9f322da37612695cbabb0ae)), closes [#53](https://github.com/blockmineJS/blockmine/issues/53)
61
+ * кликабельное название плагина для перехода к README @mmeerrkkaa ([4228b08](https://github.com/blockmineJS/blockmine/commit/4228b0827037733fe6e164008fd3aa26937ece4a)), closes [#56](https://github.com/blockmineJS/blockmine/issues/56)
62
+ * плагины теперь могут менять имя бота и пароль @@mmeerrkkaa ([dc5f26d](https://github.com/blockmineJS/blockmine/commit/dc5f26d357867b5a30e75c4c0e545c59be0092d8))
63
+ * показ всех команд при наведении на +N badge @mmeerrkkaa ([63ebbba](https://github.com/blockmineJS/blockmine/commit/63ebbba6045e3e6e8dd0eb679d3fabd23a9330df)), closes [#54](https://github.com/blockmineJS/blockmine/issues/54)
64
+ * условное отображение полей настроек плагинов @artemploxoy ([264c5cf](https://github.com/blockmineJS/blockmine/commit/264c5cffcd573287ebd634b8e0f3a0482c8f5a7d))
65
+ * эвейлабл english lagnauge @mmeerrkkaa ([72e1a9a](https://github.com/blockmineJS/blockmine/commit/72e1a9aaba3ee9d4fea6064ac96b09afb72af572))
66
+
67
+
68
+ ### 🐛 Исправления
69
+
70
+ * безусловное удаление proxyPassword при использовании прокси из списка @artemploxoy ([73ab092](https://github.com/blockmineJS/blockmine/commit/73ab0923641681ec8d315eec4ce3108a500b9264))
71
+ * в дашборде кнопка предложить улучшение теперь ведёт куда надо @mmeerrkkaa ([575779c](https://github.com/blockmineJS/blockmine/commit/575779c92295a312b416f7b02bfa665d2c6d6b00))
72
+ * добавлена валидация портов серверов и автоочистка @artemploxoy ([c59a6c1](https://github.com/blockmineJS/blockmine/commit/c59a6c1dc5a79cecfb29c06231c7532bd332546c))
73
+ * добавлена поддержка типа select в PluginSettingsDialog @artemploxoy ([fe6cfb3](https://github.com/blockmineJS/blockmine/commit/fe6cfb3464a4a1bb21ac3d4a9884db2f7165f184))
74
+ * зависимости для плагинов теперь точно автоматом загружаются перед запуском плагина @mmeerrkkaa ([284e4c3](https://github.com/blockmineJS/blockmine/commit/284e4c36d8210a3d73582b6320c4fb6720e6a8f2))
75
+ * исправлена кнопка и функция рестарта @mmeerrkkaa ([9a7ce42](https://github.com/blockmineJS/blockmine/commit/9a7ce4288e910a058ec3e6be701b4f7974331f9f))
76
+ * различать отсутствующие файлы и npm-пакеты в PluginLoader @mmeerrkkaa ([3540be1](https://github.com/blockmineJS/blockmine/commit/3540be10093449a8e28e99acbeba9699b40e14b8))
77
+ * улучшена надежность shouldShowField @artemploxoy ([d023413](https://github.com/blockmineJS/blockmine/commit/d02341390ff5ae52e682223a0de7f45ca1996939))
78
+
4
79
  ## [1.24.0](https://github.com/blockmineJS/blockmine/compare/v1.23.4...v1.24.0) (2025-12-07)
5
80
 
6
81
 
package/README.en.md ADDED
@@ -0,0 +1,427 @@
1
+ [🇷🇺 Русский](./README.md) | **🇬🇧 English**
2
+
3
+ ---
4
+
5
+ <div align="center">
6
+ <img src="./image/logo.png" alt="BlockMine Logo" width="150">
7
+ <h1>BlockMine</h1>
8
+ <p>
9
+ <strong>Powerful Minecraft bot management platform with visual programming and advanced debugging</strong>
10
+ </p>
11
+ <p>
12
+ <a href="https://github.com/blockmineJS/blockmine/stargazers"><img src="https://img.shields.io/github/stars/blockmineJS/blockmine?style=for-the-badge&logo=github" alt="Stars"></a>
13
+ <a href="https://github.com/blockmineJS/blockmine/commits/main"><img src="https://img.shields.io/github/last-commit/blockmineJS/blockmine?style=for-the-badge&logo=git" alt="Last Commit"></a>
14
+ <a href="http://185.65.200.184:3000/api/stats" target="_blank">
15
+ <img src="https://img.shields.io/endpoint?url=https://blockmine-proxy.vercel.app/api/shield&style=for-the-badge&logo=minecraft&logoColor=white" alt="Bots Online">
16
+ </a>
17
+ </p>
18
+ </div>
19
+
20
+ **BlockMine** is an open-source solution for centralized management and automation of Minecraft bots. Launch bots, manage them in real-time, extend their capabilities with plugins, and create complex behavior scenarios in a visual editor.
21
+
22
+ More examples at - https://t.me/blockmineJs
23
+
24
+ ---
25
+
26
+ ## 🚀 Key Features
27
+
28
+ ### 💻 Modern Web Interface
29
+ - **Responsive dashboard** built with React and Tailwind CSS for any device
30
+ - **Dark theme** with modern design
31
+ - **Real-time updates** via WebSocket
32
+ - **Multi-language** — Russian and English support
33
+
34
+ <p align="center">
35
+ <img src="./screen/language_selector.png" alt="Language Selection" width="400">
36
+ <br>
37
+ <em>Interface language selection on first launch</em>
38
+ </p>
39
+
40
+ ### ✨ Visual Logic Editor (No-Code)
41
+ - **Drag-and-Drop interface** for creating complex logic without code
42
+ - **Live Debug mode** with breakpoints and step-by-step execution
43
+ - **Execution tracing** with history and variable values
44
+ - **Collaborative editing** of graphs by multiple users
45
+ - **AI Assistant** for help with logic creation
46
+
47
+ ### 🤖 Comprehensive Bot Management
48
+ - **Start/stop/restart** with one click
49
+ - **Interactive console** for each bot with history
50
+ - **Resource monitoring** (CPU/RAM) in real-time
51
+ - **3D Viewer** — see the world through bot's eyes in real-time
52
+ - **SOCKS5 proxy support** individually for each bot
53
+ - **Task scheduler** with cron schedules
54
+
55
+ <p align="center">
56
+ <img src="./screen/3dviewer.png" alt="3D Viewer" width="100%">
57
+ <br>
58
+ <em>Real-time 3D view of Minecraft world through bot's eyes</em>
59
+ </p>
60
+
61
+ ### 🔌 Powerful Plugin System
62
+ - **Built-in store** with categories and search
63
+ - **Automatic dependency installation**
64
+ - **GUI configuration** without editing config files
65
+ - **Hot-reload** plugins without restarting the bot
66
+
67
+ ### 🔐 Flexible Permission System
68
+ - **User groups** (Admin, Member, etc.)
69
+ - **Detailed access rights** for each command
70
+ - **User blacklist**
71
+ - **Cooldowns** and **aliases** for commands
72
+
73
+ ### 🔄 Export and Import
74
+ - **Full bot backups** to ZIP archive
75
+ - **Export/import** individual commands and graphs
76
+ - **Transfer between BlockMine installations**
77
+
78
+ ### 🔌 WebSocket API
79
+ - **Bot control** from external applications
80
+ - **Command execution** with full permission checking
81
+ - **Call visual graphs** and get results
82
+ - **Subscribe to events** (chat, players, health, etc.)
83
+ - **SDK** `blockmine-sdk` for Node.js ⚠️ *(alpha version, not a priority)*
84
+
85
+ <p align="center">
86
+ <img src="./screen/websocket.png" alt="WebSocket API" width="100%">
87
+ <br>
88
+ <em>Interactive panel for working with WebSocket API</em>
89
+ </p>
90
+
91
+ ---
92
+
93
+ ## ✨ Quick Start with `npx`
94
+
95
+ This is the easiest way to run the panel locally. Make sure you have **Node.js v22+** installed.
96
+
97
+ 1. Open terminal (command prompt)
98
+ 2. Run a single command:
99
+
100
+ ```bash
101
+ npx blockmine
102
+ ```
103
+
104
+ 3. Done! The script will automatically download everything needed, set up the database, and start the server.
105
+
106
+ > ⚠️ **For Windows users**: If you get an error `Cannot load file ... npx.ps1 because running scripts is disabled`, open PowerShell as administrator and run `Set-ExecutionPolicy RemoteSigned -Scope CurrentUser`. Press 'Y' to confirm.
107
+
108
+ After successful startup, you'll see in the console:
109
+ ```
110
+ Control panel available at: http://localhost:3001
111
+ ```
112
+ Open this address in your browser to get started.
113
+
114
+ ---
115
+
116
+ ## 🚀 Hosting Installation (VPS/Dedicated Server)
117
+
118
+ For production deployment on a server, it's recommended to use PM2 for process management.
119
+
120
+ ### Requirements
121
+ - **Node.js v22+**
122
+ - **npm**
123
+ - **Git** (for cloning the repository)
124
+ - **PM2** (process manager)
125
+
126
+ ### Step 1: Clone the Repository
127
+
128
+ ```bash
129
+ git clone https://github.com/blockmineJS/blockmine.git
130
+ cd blockmine
131
+ ```
132
+
133
+ ### Step 2: Install Dependencies
134
+
135
+ ```bash
136
+ npm install
137
+ ```
138
+
139
+ > **Note**: The `npm install` command will automatically run the `postinstall` script, which installs frontend dependencies and generates the Prisma client.
140
+
141
+ ### Step 3: Build Frontend
142
+
143
+ ```bash
144
+ npm run build
145
+ ```
146
+
147
+ This command will create an optimized production build of the React application.
148
+
149
+ ### Step 4: Install PM2
150
+
151
+ If PM2 is not yet installed globally:
152
+
153
+ ```bash
154
+ npm install -g pm2
155
+ ```
156
+
157
+ ### Step 5: Start with PM2
158
+
159
+ Launch the application using the ready-made configuration file:
160
+
161
+ ```bash
162
+ pm2 start ecosystem.config.js
163
+ ```
164
+
165
+ > **Note**: The project already includes an `ecosystem.config.js` file with optimal production settings.
166
+
167
+ ### Updating
168
+
169
+ To update to the latest version: ON HOST! For local you can skip build since it uses port 5173
170
+
171
+ ```bash
172
+ cd blockmine
173
+ git pull
174
+ npm install
175
+ npm run build
176
+ pm2 restart blockmine
177
+ ```
178
+
179
+ ---
180
+
181
+ ## 💡 Core BlockMine Concepts
182
+
183
+ ### 🎨 Visual Editor
184
+
185
+ <p align="center">
186
+ <img src="./image/visualcommand.png" alt="Visual Editor" width="100%">
187
+ </p>
188
+
189
+ The heart of No-Code automation in BlockMine. The editor allows you to create logic by dragging and connecting functional blocks (nodes).
190
+
191
+ #### Editor Features:
192
+ - **Create commands** with arguments, permission checks, and complex logic
193
+ - **Handle events** (player join, chat messages, mob spawns)
194
+ - **Live Debug** - real-time debugging with breakpoints
195
+ - **Trace Viewer** - view execution history with variable values
196
+ - **Collaborative work** - multiple developers can edit simultaneously
197
+ - **AI assistant** - help with logic creation
198
+
199
+ ### 🔍 Debugging System
200
+
201
+ BlockMine provides two powerful debugging systems:
202
+
203
+ #### Live Debug
204
+ - **Breakpoints** - stop execution at specific nodes
205
+ - **Conditional breakpoints** - trigger when condition is met
206
+ - **Step-by-step execution** - Step Over for detailed analysis
207
+ - **What-If mode** - modify values during pause
208
+ - **Multi-user synchronization** - everyone sees the same debug state
209
+ <td align="center">
210
+ <p><strong>🎨 Visual Editor with Live Debug</strong></p>
211
+ <img src="./screen/graph_live_debug.png" alt="Live Debug" width="100%">
212
+ <em>Real-time graph debugging with breakpoints and step-by-step execution</em>
213
+ </td>
214
+
215
+ #### Trace Viewer
216
+ - **Execution history** - saving all graph runs
217
+ - **Variable values** - view inputs/outputs of each node
218
+ - **Playback** - step-by-step execution review
219
+ - **Timeline** - visualization of node execution order
220
+ <tr>
221
+ <td align="center">
222
+ <p><strong>🔍 Execution Tracing</strong></p>
223
+ <img src="./screen/node_debug_trace.png" alt="Trace Debug" width="100%">
224
+ <em>Step-by-step graph execution visualization with history and variable values</em>
225
+ </td>
226
+ </tr>
227
+
228
+
229
+ ### 🔌 Plugins
230
+
231
+ <p align="center">
232
+ <img src="./screen/plugin_обзор.png" alt="Plugin Store" width="100%">
233
+ <br>
234
+ <em>Built-in plugin store with categories, search, and automatic dependency installation</em>
235
+ </p>
236
+
237
+ Plugins are a way to programmatically extend functionality. They can:
238
+ - Add new commands
239
+ - Create new nodes for the visual editor
240
+ - Work in background mode
241
+ - Integrate with external services
242
+
243
+ #### Plugin Store Features
244
+ - **Categories** - filter by purpose (Core, Clan, Utilities, etc.)
245
+ - **Automatic installation** - dependencies are installed automatically
246
+ - **GUI configuration** - without editing config files
247
+ - **Updates** - check and install updates
248
+
249
+ ### ⚙️ Commands
250
+
251
+ Commands can be created in two ways:
252
+
253
+ #### Programmatic Commands (via plugins)
254
+ ```javascript
255
+ bot.registerCommand({
256
+ name: 'ping',
257
+ description: 'Connection check',
258
+ execute: async (context) => {
259
+ return `Pong, ${context.user.username}!`;
260
+ }
261
+ });
262
+ ```
263
+
264
+ #### Visual Commands (via editor)
265
+ - **Drag-and-Drop** logic creation
266
+ - **Arguments** - define types and default values
267
+ - **Conditions** - check permissions, time of day, etc.
268
+ - **Loops and branching** - complex logic without code
269
+
270
+ #### Centralized Management
271
+ - **Aliases** - short aliases (e.g., `@p` for `@ping`)
272
+ - **Cooldowns** - delay between uses
273
+ - **Allowed chats** - chat, local, clan, private
274
+ - **Enable/disable** - temporarily disable commands
275
+
276
+ ### 🔐 Permissions and Groups
277
+
278
+ Flexible access control system:
279
+
280
+ #### Permissions
281
+ - Each action is protected by a permission (e.g., `user.fly`)
282
+ - Permissions are created by plugins or in the control panel
283
+ - Detailed access control
284
+
285
+ #### Groups
286
+ - Combining multiple permissions
287
+ - Preset groups: Admin, Member
288
+ - Create custom groups
289
+
290
+ #### Users
291
+ - Automatically added when interacting with the bot
292
+ - Assign to groups
293
+ - Blacklist for blocking
294
+
295
+ ### ⏰ Task Scheduler
296
+
297
+ Automate bot actions on schedule:
298
+ - **Cron expressions** - flexible time configuration
299
+ - **Actions** - start/restart bot, execute commands
300
+ - **Run history** - view recent executions
301
+ - **Enable/disable** - temporarily deactivate tasks
302
+
303
+ ---
304
+
305
+ ## 🧑‍💻 For Developers and Contributors
306
+
307
+ > **🤖 For AI Agents:** If you are an AI agent that wants to create plugins for BlockMine, read the file [backend/src/ai/plugin-assistant-system-prompt.md](D:\webstormproject\blockmine\backend\src\ai\plugin-assistant-system-prompt.md) for plugin development instructions.
308
+
309
+ If you want to contribute to the project or run it in development mode.
310
+
311
+ ### Requirements
312
+ - **Node.js v22+**
313
+ - **npm** or **yarn**
314
+
315
+ ### 1. Installation
316
+
317
+ ```bash
318
+ git clone https://github.com/blockmineJS/blockmine.git
319
+ cd blockmine
320
+ npm install
321
+ npm run build
322
+ ```
323
+
324
+ ### 2. Running in Development Mode
325
+
326
+ This command will simultaneously start the backend (`nodemon`) and frontend (`vite`) with hot reloading.
327
+
328
+ ```bash
329
+ npm run dev
330
+ ```
331
+
332
+ - **Backend** will be available at `http://localhost:3001`
333
+ - **Frontend** with hot reloading will be available at `http://localhost:5173`
334
+
335
+
336
+ ## 📸 Screenshots
337
+
338
+ <table align="center">
339
+ <tr>
340
+ <td align="center">
341
+ <p><strong>📊 Dashboard</strong></p>
342
+ <img src="./screen/dashboard.png" alt="Dashboard" width="100%">
343
+ <em>Resource monitoring and managing all bots in real-time</em>
344
+ </td>
345
+ </tr>
346
+ <tr>
347
+ <td align="center">
348
+ <p><strong>🌍 3D Viewer</strong></p>
349
+ <img src="./screen/3dviewer.png" alt="3D Viewer" width="100%">
350
+ <em>Real-time Minecraft world view through bot's eyes</em>
351
+ </td>
352
+ </tr>
353
+ <tr>
354
+ <td align="center">
355
+ <p><strong>🔌 WebSocket API</strong></p>
356
+ <img src="./screen/websocket.png" alt="WebSocket" width="100%">
357
+ <em>Interactive panel for working with WebSocket API</em>
358
+ </td>
359
+ </tr>
360
+ <tr>
361
+ <td align="center">
362
+ <p><strong>👥 Collaborative Graph Editing</strong></p>
363
+ <img src="./screen/graph_collabe.png" alt="Collaboration" width="100%">
364
+ <em>Multiple developers can work on the same graph simultaneously</em>
365
+ </td>
366
+ </tr>
367
+ <tr>
368
+ <td align="center">
369
+ <p><strong>💻 Interactive Console</strong></p>
370
+ <img src="./screen/console.png" alt="Console" width="100%">
371
+ <em>Full-featured bot console with color highlighting and command history</em>
372
+ </td>
373
+ </tr>
374
+ <tr>
375
+ <td align="center">
376
+ <p><strong>⚙️ Command Management</strong></p>
377
+ <img src="./screen/management_command.png" alt="Command Management" width="100%">
378
+ <em>Centralized command management with aliases and access rights</em>
379
+ </td>
380
+ </tr>
381
+ <tr>
382
+ <td align="center">
383
+ <p><strong>🎛️ Command Settings</strong></p>
384
+ <img src="./screen/настройки_отдельных_команд_кажду_команлду_можно_настраивать.png" alt="Command Settings" width="100%">
385
+ <em>Flexible configuration for each command: aliases, cooldowns, permissions, and allowed chats</em>
386
+ </td>
387
+ </tr>
388
+ <tr>
389
+ <td align="center">
390
+ <p><strong>⏰ Task Scheduler</strong></p>
391
+ <img src="./screen/планировщик_можно_задавать_действия_по_времени.png" alt="Scheduler" width="100%">
392
+ <em>Automate bot actions with cron schedules</em>
393
+ </td>
394
+ </tr>
395
+ </table>
396
+
397
+ ---
398
+
399
+ ---
400
+
401
+ ## 🤝 Contributing
402
+
403
+ We welcome your contributions! Here's how you can help:
404
+
405
+ 1. **Fork** the repository
406
+ 2. Create a branch for your feature (`git checkout -b feature/amazing-feature`)
407
+ 3. Commit your changes (`git commit -m 'feat: add amazing feature'`)
408
+ 4. Push to the branch (`git push origin feature/amazing-feature`)
409
+ 5. Open a **Pull Request**
410
+
411
+ ### Commit Style
412
+
413
+ We use [Conventional Commits](https://www.conventionalcommits.org/):
414
+ - `feat:` - new functionality
415
+ - `fix:` - bug fix
416
+ - `docs:` - documentation changes
417
+ - `chore:` - routine tasks (updating dependencies, etc.)
418
+
419
+ ---
420
+
421
+ ---
422
+
423
+ <div align="center">
424
+ <p>
425
+ <a href="https://github.com/blockmineJS/blockmine">⭐ Star us on GitHub</a>
426
+ </p>
427
+ </div>
package/README.md CHANGED
@@ -1,3 +1,7 @@
1
+ **🇷🇺 Русский** | [🇬🇧 English](./README.en.md)
2
+
3
+ ---
4
+
1
5
  <div align="center">
2
6
  <img src="./image/logo.png" alt="BlockMine Logo" width="150">
3
7
  <h1>BlockMine</h1>
@@ -27,6 +31,13 @@
27
31
  - **Адаптивная панель** на React и Tailwind CSS для управления с любого устройства
28
32
  - **Темная тема** с современным дизайном
29
33
  - **Real-time обновления** через WebSocket
34
+ - **Мультиязычность** — поддержка русского и английского языков
35
+
36
+ <p align="center">
37
+ <img src="./screen/language_selector.png" alt="Выбор языка" width="400">
38
+ <br>
39
+ <em>Выбор языка интерфейса при первом запуске</em>
40
+ </p>
30
41
 
31
42
  ### ✨ Визуальный редактор логики (No-Code)
32
43
  - **Drag-and-Drop интерфейс** для создания сложной логики без кода
@@ -39,9 +50,16 @@
39
50
  - **Запуск/остановка/перезапуск** в один клик
40
51
  - **Интерактивная консоль** для каждого бота с историей
41
52
  - **Мониторинг ресурсов** (CPU/RAM) в реальном времени
53
+ - **3D Viewer** — просмотр мира глазами бота в реальном времени
42
54
  - **Поддержка SOCKS5-прокси** индивидуально для каждого бота
43
55
  - **Планировщик задач** с cron-расписаниями
44
56
 
57
+ <p align="center">
58
+ <img src="./screen/3dviewer.png" alt="3D Viewer" width="100%">
59
+ <br>
60
+ <em>3D просмотр мира Minecraft глазами бота в реальном времени</em>
61
+ </p>
62
+
45
63
  ### 🔌 Мощная система плагинов
46
64
  - **Встроенный магазин** с категориями и поиском
47
65
  - **Автоматическая установка зависимостей**
@@ -66,6 +84,12 @@
66
84
  - **Подписка на события** (чат, игроки, здоровье и др.)
67
85
  - **SDK** `blockmine-sdk` для Node.js ⚠️ *(альфа-версия, не приоритет)*
68
86
 
87
+ <p align="center">
88
+ <img src="./screen/websocket.png" alt="WebSocket API" width="100%">
89
+ <br>
90
+ <em>Интерактивная панель для работы с WebSocket API</em>
91
+ </p>
92
+
69
93
  ---
70
94
 
71
95
  ## ✨ Быстрый старт с `npx`
@@ -283,6 +307,8 @@ bot.registerCommand({
283
307
 
284
308
  ## 🧑‍💻 Для разработчиков и контрибьюторов
285
309
 
310
+ > **🤖 Для AI агентов:** Если вы AI агент, который хочет создавать плагины для BlockMine, прочитайте файл [backend/src/ai/plugin-assistant-system-prompt.md](D:\webstormproject\blockmine\backend\src\ai\plugin-assistant-system-prompt.md) для получения инструкций по разработке плагинов.
311
+
286
312
  Если вы хотите внести свой вклад в проект или запустить его в режиме разработки.
287
313
 
288
314
  ### Требования
@@ -320,6 +346,20 @@ npm run dev
320
346
  <em>Мониторинг ресурсов и управление всеми ботами в реальном времени</em>
321
347
  </td>
322
348
  </tr>
349
+ <tr>
350
+ <td align="center">
351
+ <p><strong>🌍 3D Viewer</strong></p>
352
+ <img src="./screen/3dviewer.png" alt="3D Viewer" width="100%">
353
+ <em>Просмотр мира Minecraft глазами бота в реальном времени</em>
354
+ </td>
355
+ </tr>
356
+ <tr>
357
+ <td align="center">
358
+ <p><strong>🔌 WebSocket API</strong></p>
359
+ <img src="./screen/websocket.png" alt="WebSocket" width="100%">
360
+ <em>Интерактивная панель для работы с WebSocket API</em>
361
+ </td>
362
+ </tr>
323
363
  <tr>
324
364
  <td align="center">
325
365
  <p><strong>👥 Совместная работа над графами</strong></p>
@@ -27,7 +27,7 @@
27
27
  "ts-jest": "^29.4.5"
28
28
  },
29
29
  "dependencies": {
30
- "@octokit/rest": "^22.0.1",
30
+ "@octokit/rest": "^20.1.1",
31
31
  "awilix": "^12.0.5",
32
32
  "date-fns": "^4.1.0",
33
33
  "diff": "^8.0.2",
@@ -35,7 +35,7 @@
35
35
  "express-validator": "^7.2.1",
36
36
  "google-ai-kit": "^1.1.3",
37
37
  "lru-cache": "^10.4.3",
38
- "mineflayer": "^4.33.0",
38
+ "mineflayer": "^4.37.1",
39
39
  "mineflayer-pathfinder": "^2.4.5",
40
40
  "openrouter-kit": "^0.1.81",
41
41
  "pino": "^9.7.0",
@@ -0,0 +1,2 @@
1
+ ALTER TABLE "InstalledPlugin" ADD COLUMN "sourceRefType" TEXT;
2
+ ALTER TABLE "InstalledPlugin" ADD COLUMN "sourceRef" TEXT;
@@ -1,3 +1,3 @@
1
- # Please do not edit this file manually
2
- # It should be added in your version-control system (i.e. Git)
1
+ # Please do not edit this file manually
2
+ # It should be added in your version-control system (i.e. Git)
3
3
  provider = "sqlite"
@@ -79,6 +79,8 @@ model InstalledPlugin {
79
79
  description String?
80
80
  sourceType String
81
81
  sourceUri String?
82
+ sourceRefType String?
83
+ sourceRef String?
82
84
  path String
83
85
  isEnabled Boolean @default(true)
84
86