blockmine 1.20.0 → 1.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (434) hide show
  1. package/.claude/agents/README.md +469 -0
  2. package/.claude/agents/auth-route-debugger.md +118 -0
  3. package/.claude/agents/auth-route-tester.md +93 -0
  4. package/.claude/agents/auto-error-resolver.md +97 -0
  5. package/.claude/agents/build-optimizer.md +236 -0
  6. package/.claude/agents/code-architecture-reviewer.md +83 -0
  7. package/.claude/agents/code-refactor-master.md +94 -0
  8. package/.claude/agents/cost-optimizer.md +134 -0
  9. package/.claude/agents/deployment-orchestrator.md +113 -0
  10. package/.claude/agents/documentation-architect.md +82 -0
  11. package/.claude/agents/frontend-error-fixer.md +77 -0
  12. package/.claude/agents/iac-code-generator.md +71 -0
  13. package/.claude/agents/incident-responder.md +346 -0
  14. package/.claude/agents/infrastructure-architect.md +31 -0
  15. package/.claude/agents/kubernetes-specialist.md +56 -0
  16. package/.claude/agents/migration-planner.md +181 -0
  17. package/.claude/agents/network-architect.md +196 -0
  18. package/.claude/agents/plan-reviewer.md +52 -0
  19. package/.claude/agents/refactor-planner.md +63 -0
  20. package/.claude/agents/security-scanner.md +102 -0
  21. package/.claude/agents/web-research-specialist.md +78 -0
  22. package/.claude/commands/cost-analysis.md +315 -0
  23. package/.claude/commands/dev-docs-update.md +55 -0
  24. package/.claude/commands/dev-docs.md +51 -0
  25. package/.claude/commands/incident-debug.md +247 -0
  26. package/.claude/commands/infra-plan.md +81 -0
  27. package/.claude/commands/migration-plan.md +478 -0
  28. package/.claude/commands/route-research-for-testing.md +37 -0
  29. package/.claude/commands/security-review.md +66 -0
  30. package/.claude/hooks/CONFIG.md +448 -0
  31. package/.claude/hooks/README.md +163 -0
  32. package/.claude/hooks/SKILL_ACTIVATION_COMPLETE.md +226 -0
  33. package/.claude/hooks/WINDOWS_HOOKS_README.md +151 -0
  34. package/.claude/hooks/add-skill-activation-banners.ts +132 -0
  35. package/.claude/hooks/comprehensive-skill-test.ts +1315 -0
  36. package/.claude/hooks/error-handling-reminder.sh +12 -0
  37. package/.claude/hooks/error-handling-reminder.ts +222 -0
  38. package/.claude/hooks/k8s-manifest-validator.sh +56 -0
  39. package/.claude/hooks/package-lock.json +556 -0
  40. package/.claude/hooks/package.json +16 -0
  41. package/.claude/hooks/post-tool-use-tracker.ps1 +174 -0
  42. package/.claude/hooks/post-tool-use-tracker.sh +183 -0
  43. package/.claude/hooks/security-policy-check.sh +247 -0
  44. package/.claude/hooks/skill-activation-prompt.ps1 +10 -0
  45. package/.claude/hooks/skill-activation-prompt.sh +10 -0
  46. package/.claude/hooks/skill-activation-prompt.ts +141 -0
  47. package/.claude/hooks/stop-build-check-enhanced.sh +130 -0
  48. package/.claude/hooks/terraform-validator.sh +53 -0
  49. package/.claude/hooks/test-input.json +7 -0
  50. package/.claude/hooks/test-skill-activation.ts +427 -0
  51. package/.claude/hooks/trigger-build-resolver.sh +79 -0
  52. package/.claude/hooks/tsc-check.sh +173 -0
  53. package/.claude/hooks/tsconfig.json +19 -0
  54. package/.claude/settings.json +55 -0
  55. package/.claude/settings.local.json +28 -3
  56. package/.claude/skills/README.md +507 -0
  57. package/.claude/skills/api-engineering/SKILL.md +63 -0
  58. package/.claude/skills/api-engineering/resources/api-versioning.md +88 -0
  59. package/.claude/skills/api-engineering/resources/graphql-patterns.md +106 -0
  60. package/.claude/skills/api-engineering/resources/rate-limiting.md +118 -0
  61. package/.claude/skills/api-engineering/resources/rest-api-design.md +105 -0
  62. package/.claude/skills/backend-dev-guidelines/SKILL.md +306 -0
  63. package/.claude/skills/backend-dev-guidelines/resources/architecture-overview.md +451 -0
  64. package/.claude/skills/backend-dev-guidelines/resources/async-and-errors.md +307 -0
  65. package/.claude/skills/backend-dev-guidelines/resources/complete-examples.md +638 -0
  66. package/.claude/skills/backend-dev-guidelines/resources/configuration.md +275 -0
  67. package/.claude/skills/backend-dev-guidelines/resources/database-patterns.md +224 -0
  68. package/.claude/skills/backend-dev-guidelines/resources/middleware-guide.md +213 -0
  69. package/.claude/skills/backend-dev-guidelines/resources/routing-and-controllers.md +756 -0
  70. package/.claude/skills/backend-dev-guidelines/resources/sentry-and-monitoring.md +336 -0
  71. package/.claude/skills/backend-dev-guidelines/resources/services-and-repositories.md +789 -0
  72. package/.claude/skills/backend-dev-guidelines/resources/testing-guide.md +235 -0
  73. package/.claude/skills/backend-dev-guidelines/resources/validation-patterns.md +754 -0
  74. package/.claude/skills/budget-and-cost-management/SKILL.md +850 -0
  75. package/.claude/skills/build-engineering/SKILL.md +431 -0
  76. package/.claude/skills/build-engineering/resources/artifact-repositories.md +72 -0
  77. package/.claude/skills/build-engineering/resources/build-caching.md +96 -0
  78. package/.claude/skills/build-engineering/resources/build-pipelines.md +105 -0
  79. package/.claude/skills/build-engineering/resources/build-security.md +95 -0
  80. package/.claude/skills/build-engineering/resources/build-systems.md +389 -0
  81. package/.claude/skills/build-engineering/resources/compilation-optimization.md +201 -0
  82. package/.claude/skills/build-engineering/resources/dependency-management.md +73 -0
  83. package/.claude/skills/build-engineering/resources/monorepo-builds.md +110 -0
  84. package/.claude/skills/build-engineering/resources/performance-optimization.md +113 -0
  85. package/.claude/skills/build-engineering/resources/reproducible-builds.md +82 -0
  86. package/.claude/skills/cloud-engineering/SKILL.md +675 -0
  87. package/.claude/skills/cloud-engineering/resources/aws-patterns.md +742 -0
  88. package/.claude/skills/cloud-engineering/resources/azure-patterns.md +714 -0
  89. package/.claude/skills/cloud-engineering/resources/cleared-cloud-environments.md +987 -0
  90. package/.claude/skills/cloud-engineering/resources/cloud-cost-optimization.md +757 -0
  91. package/.claude/skills/cloud-engineering/resources/cloud-networking.md +1058 -0
  92. package/.claude/skills/cloud-engineering/resources/cloud-security-tools.md +1530 -0
  93. package/.claude/skills/cloud-engineering/resources/cloud-security.md +990 -0
  94. package/.claude/skills/cloud-engineering/resources/gcp-patterns.md +758 -0
  95. package/.claude/skills/cloud-engineering/resources/migration-strategies.md +820 -0
  96. package/.claude/skills/cloud-engineering/resources/multi-cloud-strategies.md +670 -0
  97. package/.claude/skills/cloud-engineering/resources/oci-patterns.md +1198 -0
  98. package/.claude/skills/cloud-engineering/resources/serverless-patterns.md +795 -0
  99. package/.claude/skills/cloud-engineering/resources/well-architected-frameworks.md +966 -0
  100. package/.claude/skills/cybersecurity/SKILL.md +409 -0
  101. package/.claude/skills/cybersecurity/resources/security-architecture.md +266 -0
  102. package/.claude/skills/database-engineering/SKILL.md +61 -0
  103. package/.claude/skills/database-engineering/resources/backup-and-recovery.md +72 -0
  104. package/.claude/skills/database-engineering/resources/database-replication.md +63 -0
  105. package/.claude/skills/database-engineering/resources/postgresql-fundamentals.md +70 -0
  106. package/.claude/skills/database-engineering/resources/query-optimization.md +68 -0
  107. package/.claude/skills/devsecops/SKILL.md +374 -0
  108. package/.claude/skills/devsecops/resources/ci-cd-security.md +204 -0
  109. package/.claude/skills/devsecops/resources/compliance-automation.md +530 -0
  110. package/.claude/skills/devsecops/resources/compliance-frameworks.md +2322 -0
  111. package/.claude/skills/devsecops/resources/container-security.md +915 -0
  112. package/.claude/skills/devsecops/resources/cspm-integration.md +1440 -0
  113. package/.claude/skills/devsecops/resources/policy-enforcement.md +619 -0
  114. package/.claude/skills/devsecops/resources/secrets-management.md +755 -0
  115. package/.claude/skills/devsecops/resources/security-monitoring.md +146 -0
  116. package/.claude/skills/devsecops/resources/security-scanning.md +887 -0
  117. package/.claude/skills/devsecops/resources/security-testing.md +203 -0
  118. package/.claude/skills/devsecops/resources/supply-chain-security.md +518 -0
  119. package/.claude/skills/devsecops/resources/vulnerability-management.md +481 -0
  120. package/.claude/skills/devsecops/resources/zero-trust-architecture.md +177 -0
  121. package/.claude/skills/documentation-as-code/SKILL.md +323 -0
  122. package/.claude/skills/documentation-as-code/resources/api-documentation.md +90 -0
  123. package/.claude/skills/documentation-as-code/resources/changelog-management.md +79 -0
  124. package/.claude/skills/documentation-as-code/resources/diagram-generation.md +44 -0
  125. package/.claude/skills/documentation-as-code/resources/docs-as-code-workflow.md +99 -0
  126. package/.claude/skills/documentation-as-code/resources/documentation-automation.md +68 -0
  127. package/.claude/skills/documentation-as-code/resources/documentation-sites.md +79 -0
  128. package/.claude/skills/documentation-as-code/resources/markdown-best-practices.md +162 -0
  129. package/.claude/skills/documentation-as-code/resources/openapi-specification.md +77 -0
  130. package/.claude/skills/documentation-as-code/resources/readme-engineering.md +60 -0
  131. package/.claude/skills/documentation-as-code/resources/technical-writing-guide.md +202 -0
  132. package/.claude/skills/engineering-management/SKILL.md +356 -0
  133. package/.claude/skills/engineering-management/resources/career-ladders.md +609 -0
  134. package/.claude/skills/engineering-management/resources/hiring-and-assessment.md +555 -0
  135. package/.claude/skills/engineering-management/resources/one-on-one-guides.md +609 -0
  136. package/.claude/skills/engineering-management/resources/resource-planning.md +557 -0
  137. package/.claude/skills/engineering-management/resources/team-organization-patterns.md +491 -0
  138. package/.claude/skills/engineering-management/resources/technical-interviews.md +474 -0
  139. package/.claude/skills/engineering-operations-management/SKILL.md +817 -0
  140. package/.claude/skills/error-tracking/SKILL.md +379 -0
  141. package/.claude/skills/frontend-dev-guidelines/SKILL.md +403 -0
  142. package/.claude/skills/frontend-dev-guidelines/resources/common-patterns.md +331 -0
  143. package/.claude/skills/frontend-dev-guidelines/resources/complete-examples.md +872 -0
  144. package/.claude/skills/frontend-dev-guidelines/resources/component-patterns.md +502 -0
  145. package/.claude/skills/frontend-dev-guidelines/resources/data-fetching.md +767 -0
  146. package/.claude/skills/frontend-dev-guidelines/resources/file-organization.md +502 -0
  147. package/.claude/skills/frontend-dev-guidelines/resources/loading-and-error-states.md +501 -0
  148. package/.claude/skills/frontend-dev-guidelines/resources/performance.md +406 -0
  149. package/.claude/skills/frontend-dev-guidelines/resources/routing-guide.md +364 -0
  150. package/.claude/skills/frontend-dev-guidelines/resources/styling-guide.md +428 -0
  151. package/.claude/skills/frontend-dev-guidelines/resources/typescript-standards.md +418 -0
  152. package/.claude/skills/general-it-engineering/SKILL.md +393 -0
  153. package/.claude/skills/general-it-engineering/resources/asset-management.md +712 -0
  154. package/.claude/skills/general-it-engineering/resources/automation-orchestration.md +817 -0
  155. package/.claude/skills/general-it-engineering/resources/business-continuity.md +786 -0
  156. package/.claude/skills/general-it-engineering/resources/change-management.md +715 -0
  157. package/.claude/skills/general-it-engineering/resources/enterprise-monitoring.md +729 -0
  158. package/.claude/skills/general-it-engineering/resources/help-desk-operations.md +738 -0
  159. package/.claude/skills/general-it-engineering/resources/incident-service-management.md +834 -0
  160. package/.claude/skills/general-it-engineering/resources/it-governance.md +753 -0
  161. package/.claude/skills/general-it-engineering/resources/itil-framework.md +503 -0
  162. package/.claude/skills/general-it-engineering/resources/service-management.md +669 -0
  163. package/.claude/skills/infrastructure-architecture/SKILL.md +328 -0
  164. package/.claude/skills/infrastructure-architecture/resources/architecture-decision-records.md +505 -0
  165. package/.claude/skills/infrastructure-architecture/resources/architecture-patterns.md +528 -0
  166. package/.claude/skills/infrastructure-architecture/resources/capacity-planning.md +453 -0
  167. package/.claude/skills/infrastructure-architecture/resources/cleared-environment-architecture.md +773 -0
  168. package/.claude/skills/infrastructure-architecture/resources/cost-architecture.md +499 -0
  169. package/.claude/skills/infrastructure-architecture/resources/data-architecture.md +501 -0
  170. package/.claude/skills/infrastructure-architecture/resources/disaster-recovery.md +535 -0
  171. package/.claude/skills/infrastructure-architecture/resources/migration-architecture.md +512 -0
  172. package/.claude/skills/infrastructure-architecture/resources/multi-region-design.md +608 -0
  173. package/.claude/skills/infrastructure-architecture/resources/reference-architectures.md +562 -0
  174. package/.claude/skills/infrastructure-architecture/resources/security-architecture.md +538 -0
  175. package/.claude/skills/infrastructure-architecture/resources/system-design-principles.md +489 -0
  176. package/.claude/skills/infrastructure-architecture/resources/workload-classification.md +1000 -0
  177. package/.claude/skills/infrastructure-strategy/SKILL.md +924 -0
  178. package/.claude/skills/network-engineering/SKILL.md +385 -0
  179. package/.claude/skills/network-engineering/resources/dns-management.md +738 -0
  180. package/.claude/skills/network-engineering/resources/load-balancing.md +820 -0
  181. package/.claude/skills/network-engineering/resources/network-architecture.md +546 -0
  182. package/.claude/skills/network-engineering/resources/network-security.md +921 -0
  183. package/.claude/skills/network-engineering/resources/network-troubleshooting.md +749 -0
  184. package/.claude/skills/network-engineering/resources/routing-switching.md +373 -0
  185. package/.claude/skills/network-engineering/resources/sdn-networking.md +695 -0
  186. package/.claude/skills/network-engineering/resources/service-mesh-networking.md +777 -0
  187. package/.claude/skills/network-engineering/resources/tcp-ip-protocols.md +444 -0
  188. package/.claude/skills/network-engineering/resources/vpn-connectivity.md +672 -0
  189. package/.claude/skills/observability-engineering/SKILL.md +101 -0
  190. package/.claude/skills/observability-engineering/resources/apm-tools.md +97 -0
  191. package/.claude/skills/observability-engineering/resources/correlation-strategies.md +87 -0
  192. package/.claude/skills/observability-engineering/resources/distributed-tracing.md +98 -0
  193. package/.claude/skills/observability-engineering/resources/logs-aggregation.md +118 -0
  194. package/.claude/skills/observability-engineering/resources/observability-cost-optimization.md +141 -0
  195. package/.claude/skills/observability-engineering/resources/opentelemetry.md +110 -0
  196. package/.claude/skills/platform-engineering/SKILL.md +555 -0
  197. package/.claude/skills/platform-engineering/resources/architecture-overview.md +600 -0
  198. package/.claude/skills/platform-engineering/resources/container-orchestration.md +916 -0
  199. package/.claude/skills/platform-engineering/resources/cost-optimization.md +634 -0
  200. package/.claude/skills/platform-engineering/resources/developer-platforms.md +670 -0
  201. package/.claude/skills/platform-engineering/resources/gitops-automation.md +650 -0
  202. package/.claude/skills/platform-engineering/resources/infrastructure-as-code.md +778 -0
  203. package/.claude/skills/platform-engineering/resources/infrastructure-standards.md +708 -0
  204. package/.claude/skills/platform-engineering/resources/multi-tenancy.md +602 -0
  205. package/.claude/skills/platform-engineering/resources/platform-security.md +711 -0
  206. package/.claude/skills/platform-engineering/resources/resource-management.md +592 -0
  207. package/.claude/skills/platform-engineering/resources/service-mesh.md +628 -0
  208. package/.claude/skills/release-engineering/SKILL.md +393 -0
  209. package/.claude/skills/release-engineering/resources/artifact-management.md +108 -0
  210. package/.claude/skills/release-engineering/resources/build-optimization.md +84 -0
  211. package/.claude/skills/release-engineering/resources/ci-cd-pipelines.md +411 -0
  212. package/.claude/skills/release-engineering/resources/deployment-strategies.md +197 -0
  213. package/.claude/skills/release-engineering/resources/pipeline-security.md +62 -0
  214. package/.claude/skills/release-engineering/resources/progressive-delivery.md +83 -0
  215. package/.claude/skills/release-engineering/resources/release-automation.md +68 -0
  216. package/.claude/skills/release-engineering/resources/release-orchestration.md +77 -0
  217. package/.claude/skills/release-engineering/resources/rollback-strategies.md +66 -0
  218. package/.claude/skills/release-engineering/resources/versioning-strategies.md +59 -0
  219. package/.claude/skills/route-tester/SKILL.md +392 -0
  220. package/.claude/skills/skill-developer/ADVANCED.md +197 -0
  221. package/.claude/skills/skill-developer/HOOK_MECHANISMS.md +306 -0
  222. package/.claude/skills/skill-developer/PATTERNS_LIBRARY.md +152 -0
  223. package/.claude/skills/skill-developer/SKILL.md +430 -0
  224. package/.claude/skills/skill-developer/SKILL_RULES_REFERENCE.md +315 -0
  225. package/.claude/skills/skill-developer/TRIGGER_TYPES.md +305 -0
  226. package/.claude/skills/skill-developer/TROUBLESHOOTING.md +514 -0
  227. package/.claude/skills/skill-rules.json +2940 -0
  228. package/.claude/skills/sre/SKILL.md +464 -0
  229. package/.claude/skills/sre/resources/alerting-best-practices.md +282 -0
  230. package/.claude/skills/sre/resources/capacity-planning.md +226 -0
  231. package/.claude/skills/sre/resources/chaos-engineering.md +193 -0
  232. package/.claude/skills/sre/resources/disaster-recovery.md +232 -0
  233. package/.claude/skills/sre/resources/incident-management.md +436 -0
  234. package/.claude/skills/sre/resources/observability-stack.md +240 -0
  235. package/.claude/skills/sre/resources/on-call-runbooks.md +167 -0
  236. package/.claude/skills/sre/resources/performance-optimization.md +108 -0
  237. package/.claude/skills/sre/resources/reliability-patterns.md +183 -0
  238. package/.claude/skills/sre/resources/slo-sli-sla.md +464 -0
  239. package/.claude/skills/sre/resources/toil-reduction.md +145 -0
  240. package/.claude/skills/systems-engineering/SKILL.md +648 -0
  241. package/.claude/skills/systems-engineering/resources/automation-patterns.md +771 -0
  242. package/.claude/skills/systems-engineering/resources/configuration-management.md +998 -0
  243. package/.claude/skills/systems-engineering/resources/linux-administration.md +672 -0
  244. package/.claude/skills/systems-engineering/resources/networking-fundamentals.md +982 -0
  245. package/.claude/skills/systems-engineering/resources/performance-tuning.md +871 -0
  246. package/.claude/skills/systems-engineering/resources/powershell-scripting.md +482 -0
  247. package/.claude/skills/systems-engineering/resources/security-hardening.md +739 -0
  248. package/.claude/skills/systems-engineering/resources/shell-scripting.md +915 -0
  249. package/.claude/skills/systems-engineering/resources/storage-management.md +628 -0
  250. package/.claude/skills/systems-engineering/resources/system-monitoring.md +787 -0
  251. package/.claude/skills/systems-engineering/resources/troubleshooting-guide.md +753 -0
  252. package/.claude/skills/systems-engineering/resources/windows-administration.md +738 -0
  253. package/.claude/skills/technical-leadership/SKILL.md +728 -0
  254. package/CHANGELOG.md +90 -39
  255. package/README.md +94 -0
  256. package/backend/docs/SECRETS_DOCUMENTATION.md +327 -0
  257. package/backend/jest.config.js +59 -0
  258. package/backend/package-lock.json +6129 -0
  259. package/backend/package.json +16 -4
  260. package/backend/prisma/migrations/20251026104609_add_websocket_api/migration.sql +33 -0
  261. package/backend/prisma/schema.prisma +33 -0
  262. package/backend/src/__tests__/core/DependencyService.test.js +336 -0
  263. package/backend/src/__tests__/core/UserService.test.js +875 -0
  264. package/backend/src/__tests__/repositories/BaseRepository.test.js +146 -0
  265. package/backend/src/__tests__/repositories/BotRepository.test.js +118 -0
  266. package/backend/src/__tests__/repositories/CommandRepository.test.js +132 -0
  267. package/backend/src/__tests__/repositories/EventGraphRepository.test.js +93 -0
  268. package/backend/src/__tests__/repositories/GroupRepository.test.js +155 -0
  269. package/backend/src/__tests__/repositories/PermissionRepository.test.js +130 -0
  270. package/backend/src/__tests__/repositories/PluginRepository.test.js +107 -0
  271. package/backend/src/__tests__/repositories/ServerRepository.test.js +80 -0
  272. package/backend/src/__tests__/repositories/UserRepository.test.js +128 -0
  273. package/backend/src/__tests__/secretsFilter.test.js +425 -0
  274. package/backend/src/__tests__/services/BotLifecycleService.test.js +411 -0
  275. package/backend/src/__tests__/services/BotProcessManager.test.js +285 -0
  276. package/backend/src/__tests__/services/CacheManager.test.js +125 -0
  277. package/backend/src/__tests__/services/CommandExecutionService.test.js +460 -0
  278. package/backend/src/__tests__/services/ResourceMonitorService.test.js +207 -0
  279. package/backend/src/__tests__/services/TelemetryService.test.js +291 -0
  280. package/backend/src/__tests__/setup.js +25 -0
  281. package/backend/src/api/routes/apiKeys.js +181 -0
  282. package/backend/src/api/routes/bots.js +49 -7
  283. package/backend/src/api/routes/plugins.js +2 -1
  284. package/backend/src/api/routes/system.js +174 -0
  285. package/backend/src/container.js +82 -0
  286. package/backend/src/core/BotManager.js +142 -871
  287. package/backend/src/core/BotManager.old.js +1093 -0
  288. package/backend/src/core/BotProcess.js +1092 -850
  289. package/backend/src/core/BreakLoopSignal.js +8 -0
  290. package/backend/src/core/EventGraphManager.js +280 -193
  291. package/backend/src/core/GraphExecutionEngine.js +321 -928
  292. package/backend/src/core/MessageQueue.js +27 -6
  293. package/backend/src/core/NodeRegistry.js +37 -991
  294. package/backend/src/core/PluginManager.js +62 -12
  295. package/backend/src/core/PrismaService.js +32 -0
  296. package/backend/src/core/UserService.js +3 -3
  297. package/backend/src/core/__tests__/PrismaService.test.js +24 -0
  298. package/backend/src/core/commands/README.md +305 -0
  299. package/backend/src/core/commands/dev.js +13 -7
  300. package/backend/src/core/commands/ping.js +10 -4
  301. package/backend/src/core/commands/whois.js +63 -0
  302. package/backend/src/core/config/validation.js +27 -0
  303. package/backend/src/core/constants/graphTypes.js +21 -0
  304. package/backend/src/core/node-registries/actions.js +132 -0
  305. package/backend/src/core/node-registries/arrays.js +137 -0
  306. package/backend/src/core/node-registries/bot.js +23 -0
  307. package/backend/src/core/node-registries/data.js +290 -0
  308. package/backend/src/core/node-registries/debug.js +26 -0
  309. package/backend/src/core/node-registries/events.js +187 -0
  310. package/backend/src/core/node-registries/flow.js +139 -0
  311. package/backend/src/core/node-registries/logic.js +45 -0
  312. package/backend/src/core/node-registries/math.js +42 -0
  313. package/backend/src/core/node-registries/objects.js +98 -0
  314. package/backend/src/core/node-registries/strings.js +153 -0
  315. package/backend/src/core/node-registries/time.js +113 -0
  316. package/backend/src/core/node-registries/users.js +79 -0
  317. package/backend/src/core/nodes/actions/bot_look_at.js +36 -0
  318. package/backend/src/core/nodes/actions/bot_set_variable.js +32 -0
  319. package/backend/src/core/nodes/actions/http_request.js +98 -0
  320. package/backend/src/core/nodes/actions/send_log.js +28 -0
  321. package/backend/src/core/nodes/actions/send_message.js +32 -0
  322. package/backend/src/core/nodes/actions/send_websocket_response.js +33 -0
  323. package/backend/src/core/nodes/arrays/add_element.js +23 -0
  324. package/backend/src/core/nodes/arrays/contains.js +40 -0
  325. package/backend/src/core/nodes/arrays/find_index.js +23 -0
  326. package/backend/src/core/nodes/arrays/get_by_index.js +23 -0
  327. package/backend/src/core/nodes/arrays/get_next.js +35 -0
  328. package/backend/src/core/nodes/arrays/get_random_element.js +32 -0
  329. package/backend/src/core/nodes/arrays/remove_by_index.js +30 -0
  330. package/backend/src/core/nodes/bot/get_position.js +20 -0
  331. package/backend/src/core/nodes/data/array_literal.js +31 -0
  332. package/backend/src/core/nodes/data/boolean_literal.js +21 -0
  333. package/backend/src/core/nodes/data/cast.js +42 -0
  334. package/backend/src/core/nodes/data/datetime_literal.js +27 -0
  335. package/backend/src/core/nodes/data/entity_info.js +69 -0
  336. package/backend/src/core/nodes/data/get_argument.js +23 -0
  337. package/backend/src/core/nodes/data/get_bot_look.js +14 -0
  338. package/backend/src/core/nodes/data/get_entity_field.js +18 -0
  339. package/backend/src/core/nodes/data/get_nearby_entities.js +32 -0
  340. package/backend/src/core/nodes/data/get_nearby_players.js +64 -0
  341. package/backend/src/core/nodes/data/get_server_players.js +18 -0
  342. package/backend/src/core/nodes/data/get_user_field.js +40 -0
  343. package/backend/src/core/nodes/data/get_variable.js +23 -0
  344. package/backend/src/core/nodes/data/length.js +25 -0
  345. package/backend/src/core/nodes/data/make_object.js +31 -0
  346. package/backend/src/core/nodes/data/number_literal.js +21 -0
  347. package/backend/src/core/nodes/data/string_literal.js +34 -0
  348. package/backend/src/core/nodes/data/type_check.js +53 -0
  349. package/backend/src/core/nodes/debug/log.js +16 -0
  350. package/backend/src/core/nodes/flow/branch.js +15 -0
  351. package/backend/src/core/nodes/flow/break.js +14 -0
  352. package/backend/src/core/nodes/flow/delay.js +43 -0
  353. package/backend/src/core/nodes/flow/for_each.js +39 -0
  354. package/backend/src/core/nodes/flow/sequence.js +16 -0
  355. package/backend/src/core/nodes/flow/switch.js +47 -0
  356. package/backend/src/core/nodes/flow/while.js +64 -0
  357. package/backend/src/core/nodes/logic/__tests__/compare.test.js +83 -0
  358. package/backend/src/core/nodes/logic/compare.js +33 -0
  359. package/backend/src/core/nodes/logic/operation.js +35 -0
  360. package/backend/src/core/nodes/math/__tests__/operation.test.js +65 -0
  361. package/backend/src/core/nodes/math/operation.js +31 -0
  362. package/backend/src/core/nodes/math/random_number.js +43 -0
  363. package/backend/src/core/nodes/objects/create.js +40 -0
  364. package/backend/src/core/nodes/objects/delete.js +26 -0
  365. package/backend/src/core/nodes/objects/get.js +23 -0
  366. package/backend/src/core/nodes/objects/has_key.js +30 -0
  367. package/backend/src/core/nodes/objects/set.js +27 -0
  368. package/backend/src/core/nodes/strings/__tests__/concat.test.js +89 -0
  369. package/backend/src/core/nodes/strings/concat.js +27 -0
  370. package/backend/src/core/nodes/strings/contains.js +41 -0
  371. package/backend/src/core/nodes/strings/ends_with.js +43 -0
  372. package/backend/src/core/nodes/strings/equals.js +36 -0
  373. package/backend/src/core/nodes/strings/length.js +36 -0
  374. package/backend/src/core/nodes/strings/matches.js +39 -0
  375. package/backend/src/core/nodes/strings/split.js +37 -0
  376. package/backend/src/core/nodes/strings/starts_with.js +43 -0
  377. package/backend/src/core/nodes/time/__tests__/now.test.js +24 -0
  378. package/backend/src/core/nodes/time/add.js +33 -0
  379. package/backend/src/core/nodes/time/compare.js +35 -0
  380. package/backend/src/core/nodes/time/diff.js +29 -0
  381. package/backend/src/core/nodes/time/format.js +32 -0
  382. package/backend/src/core/nodes/time/now.js +18 -0
  383. package/backend/src/core/nodes/users/check_blacklist.js +37 -0
  384. package/backend/src/core/nodes/users/get_groups.js +36 -0
  385. package/backend/src/core/nodes/users/get_permissions.js +36 -0
  386. package/backend/src/core/nodes/users/set_blacklist.js +37 -0
  387. package/backend/src/core/services/BotLifecycleService.js +596 -0
  388. package/backend/src/core/services/BotProcessManager.js +163 -0
  389. package/backend/src/core/services/CacheManager.js +111 -0
  390. package/backend/src/core/services/CommandExecutionService.js +351 -0
  391. package/backend/src/core/services/ResourceMonitorService.js +90 -0
  392. package/backend/src/core/services/TelemetryService.js +124 -0
  393. package/backend/src/core/services/ValidationService.js +132 -0
  394. package/backend/src/core/services/__tests__/ValidationService.test.js +148 -0
  395. package/backend/src/core/services.js +20 -5
  396. package/backend/src/core/system/CommandContext.js +84 -0
  397. package/backend/src/core/system/Transport.js +78 -0
  398. package/backend/src/core/utils/__tests__/jsonParser.test.js +44 -0
  399. package/backend/src/core/utils/jsonParser.js +18 -0
  400. package/backend/src/core/utils/secretsFilter.js +262 -0
  401. package/backend/src/core/utils/variableParser.js +89 -0
  402. package/backend/src/core/validation/__tests__/nodeSchemas.test.js +175 -0
  403. package/backend/src/core/validation/nodeSchemas.js +112 -0
  404. package/backend/src/lib/prisma.js +2 -4
  405. package/backend/src/real-time/botApi/handlers/commandHandlers.js +28 -0
  406. package/backend/src/real-time/botApi/handlers/graphHandlers.js +99 -0
  407. package/backend/src/real-time/botApi/handlers/graphWebSocketHandlers.js +147 -0
  408. package/backend/src/real-time/botApi/handlers/index.js +43 -0
  409. package/backend/src/real-time/botApi/handlers/messageHandlers.js +66 -0
  410. package/backend/src/real-time/botApi/handlers/statusHandlers.js +17 -0
  411. package/backend/src/real-time/botApi/handlers/userHandlers.js +141 -0
  412. package/backend/src/real-time/botApi/index.js +40 -0
  413. package/backend/src/real-time/botApi/middleware.js +79 -0
  414. package/backend/src/real-time/botApi/utils.js +54 -0
  415. package/backend/src/real-time/socketHandler.js +6 -2
  416. package/backend/src/repositories/BaseRepository.js +43 -0
  417. package/backend/src/repositories/BotRepository.js +42 -0
  418. package/backend/src/repositories/CommandRepository.js +53 -0
  419. package/backend/src/repositories/EventGraphRepository.js +40 -0
  420. package/backend/src/repositories/GroupRepository.js +69 -0
  421. package/backend/src/repositories/PermissionRepository.js +48 -0
  422. package/backend/src/repositories/PluginRepository.js +42 -0
  423. package/backend/src/repositories/ServerRepository.js +27 -0
  424. package/backend/src/repositories/UserRepository.js +48 -0
  425. package/backend/src/server.js +3 -0
  426. package/backend/src/test-refactor.js +85 -0
  427. package/frontend/dist/assets/index-CfTo92bP.css +1 -0
  428. package/frontend/dist/assets/index-CiFD5X9Z.js +8344 -0
  429. package/frontend/dist/index.html +2 -2
  430. package/frontend/package.json +1 -5
  431. package/package.json +2 -1
  432. package/frontend/dist/assets/index-BFd7YoAj.css +0 -1
  433. package/frontend/dist/assets/index-CMMutadc.js +0 -8352
  434. package/nul +0 -0
@@ -0,0 +1,609 @@
1
+ # One-on-One Meeting Guides
2
+
3
+ **Comprehensive guide to running effective 1-on-1s with engineers.**
4
+
5
+ ---
6
+
7
+ ## Why 1-on-1s Matter
8
+
9
+ **1-on-1s are the most important meeting you have as a manager.**
10
+
11
+ They are:
12
+ - **Your primary tool** for building trust and relationships
13
+ - **Early warning system** for problems (burnout, disengagement, conflict)
14
+ - **Career development forum** for growth conversations
15
+ - **Two-way feedback channel** for manager and report
16
+ - **Safe space** for difficult conversations
17
+
18
+ **What 1-on-1s are NOT:**
19
+ - ❌ Status updates (use stand-ups or async for this)
20
+ - ❌ Manager's agenda only (this is THEIR meeting)
21
+ - ❌ Performance review (separate, formal process)
22
+ - ❌ Optional or easily canceled (highest priority meeting)
23
+
24
+ ---
25
+
26
+ ## Cadence and Duration
27
+
28
+ ### Standard Cadence
29
+
30
+ **Weekly 30-minute 1-on-1:**
31
+ - **For:** All direct reports
32
+ - **Duration:** 30 minutes minimum
33
+ - **When:** Same day/time each week (consistency matters)
34
+ - **Format:** Video call preferred (see facial expressions, body language)
35
+
36
+ **Monthly 60-minute Career 1-on-1:**
37
+ - **For:** All direct reports
38
+ - **Duration:** 60 minutes
39
+ - **Focus:** Long-term career goals, growth, skills development
40
+ - **Separate from weekly** - different purpose and depth
41
+
42
+ ### Adjusting Cadence
43
+
44
+ **More frequent (twice weekly or daily):**
45
+ - New hire in first 90 days
46
+ - Engineer struggling with performance
47
+ - Critical project or high-stress period
48
+ - Significant personal/team changes
49
+
50
+ **Less frequent (bi-weekly):**
51
+ - Staff+ engineers with high autonomy
52
+ - Strong performers who prefer more space
53
+ - **BUT:** Be careful - reducing frequency can signal lack of care
54
+
55
+ **Never skip more than 2 weeks** - relationship and trust erode quickly
56
+
57
+ ---
58
+
59
+ ## Weekly 1-on-1 Structure
60
+
61
+ ### Template Agenda (30 minutes)
62
+
63
+ ```
64
+ First 15 minutes - THEIR Agenda:
65
+ ├── "What's top of mind for you this week?"
66
+ ├── Obstacles and blockers
67
+ ├── Concerns or frustrations
68
+ ├── Wins and celebrations
69
+ └── Questions for you
70
+
71
+ Last 15 minutes - YOUR Agenda:
72
+ ├── Project updates (if needed)
73
+ ├── Feedback (both directions)
74
+ ├── Team/org updates they should know
75
+ ├── Planning and priorities
76
+ └── Action items recap
77
+ ```
78
+
79
+ **Key principle:** First half is THEIRS, second half is yours. Don't flip this.
80
+
81
+ ### Opening Questions
82
+
83
+ **Start with open-ended questions:**
84
+ - "What's top of mind for you?"
85
+ - "How are you feeling about work this week?"
86
+ - "What's been energizing? What's been draining?"
87
+ - "What's one thing I can help you with?"
88
+ - "What's going well? What's not going well?"
89
+
90
+ **Avoid:**
91
+ - "Any updates?" (too vague, leads to status update)
92
+ - "Everything good?" (closed question, easy to deflect)
93
+ - Starting with YOUR agenda (makes it your meeting, not theirs)
94
+
95
+ ### Deep Listening
96
+
97
+ **Active listening techniques:**
98
+ 1. **Pause before responding** - Let them finish, then pause 2-3 seconds
99
+ 2. **Paraphrase back** - "So what I'm hearing is..."
100
+ 3. **Ask follow-up questions** - "Tell me more about that"
101
+ 4. **Validate emotions** - "That sounds frustrating"
102
+ 5. **Take notes** - Shows you care, helps follow up
103
+
104
+ **Avoid:**
105
+ - Interrupting or finishing their sentences
106
+ - Immediately jumping to solutions
107
+ - Checking phone/laptop during meeting
108
+ - Multi-tasking or distracted listening
109
+ - Dismissing concerns ("that's not a big deal")
110
+
111
+ ---
112
+
113
+ ## Conversation Themes
114
+
115
+ ### Theme 1: Obstacles and Blockers
116
+
117
+ **Questions:**
118
+ - "What's slowing you down this week?"
119
+ - "What blockers can I help remove?"
120
+ - "Is there anything unclear about priorities?"
121
+ - "What do you need from me or other teams?"
122
+
123
+ **Your role:** Remove obstacles, provide clarity, connect to resources
124
+
125
+ **Follow-up actions:**
126
+ - Clear blockers within 48 hours if possible
127
+ - If you can't solve it, explain why and alternatives
128
+ - Connect them to people who can help
129
+
130
+ ### Theme 2: Work-Life Balance and Wellbeing
131
+
132
+ **Questions:**
133
+ - "How's your workload feeling?"
134
+ - "Are you able to disconnect after work?"
135
+ - "How's the on-call rotation impacting you?"
136
+ - "What's your stress level on a scale of 1-10?"
137
+
138
+ **Red flags to watch for:**
139
+ - Working late nights or weekends regularly
140
+ - Not taking vacation or breaks
141
+ - Appearing exhausted or burned out
142
+ - Increasing cynicism or negativity
143
+
144
+ **Your actions:**
145
+ - Proactively redistribute work if overloaded
146
+ - Encourage time off and model healthy behavior
147
+ - Address unrealistic expectations from stakeholders
148
+
149
+ ### Theme 3: Team Dynamics
150
+
151
+ **Questions:**
152
+ - "How's the team dynamic lately?"
153
+ - "Anyone you'd like more/less collaboration with?"
154
+ - "Do you feel heard in team discussions?"
155
+ - "Any conflicts or friction I should be aware of?"
156
+
157
+ **Why this matters:** Problems fester if not surfaced early
158
+
159
+ **Your role:**
160
+ - Address conflicts quickly and directly
161
+ - Create space for difficult conversations
162
+ - Coach on communication and collaboration
163
+
164
+ ### Theme 4: Growth and Development
165
+
166
+ **Questions:**
167
+ - "What skills do you want to develop?"
168
+ - "What kind of projects excite you?"
169
+ - "What's one thing you'd like to learn this quarter?"
170
+ - "Are there areas where you'd like more autonomy?"
171
+
172
+ **Follow-up:**
173
+ - Identify stretch projects for skill development
174
+ - Connect to mentors or learning resources
175
+ - Create opportunities for growth
176
+
177
+ ### Theme 5: Feedback (Both Directions)
178
+
179
+ **Giving feedback:**
180
+ - Specific examples, not generalizations
181
+ - Timely (within days, not weeks)
182
+ - Balanced (positive and constructive)
183
+ - Actionable (clear what to do differently)
184
+
185
+ **Asking for feedback:**
186
+ - "What's one thing I could do better as your manager?"
187
+ - "What should I start/stop/continue doing?"
188
+ - "How can I better support you?"
189
+ - "Am I giving you enough context?"
190
+
191
+ **Why ask for feedback:** Shows humility, builds trust, improves your management
192
+
193
+ ### Theme 6: Career and Progression
194
+
195
+ **Questions:**
196
+ - "Where do you see yourself in 2-3 years?"
197
+ - "What does success look like for you?"
198
+ - "What's your ideal next role?"
199
+ - "Are you interested in management or staying IC?"
200
+
201
+ **Follow-up:**
202
+ - Create development plan with specific goals
203
+ - Regular check-ins on progress toward goals
204
+ - Be honest about promotion timeline and criteria
205
+
206
+ ---
207
+
208
+ ## Monthly Career 1-on-1 (60 minutes)
209
+
210
+ ### Purpose
211
+
212
+ **Deep dive on long-term career:**
213
+ - Goals and aspirations
214
+ - Skills development
215
+ - Promotion readiness
216
+ - Personal development
217
+
218
+ **Not for:** Day-to-day work or status updates
219
+
220
+ ### Structure
221
+
222
+ ```
223
+ Part 1: Reflection (15 min)
224
+ ├── "Looking back at last quarter, what are you proud of?"
225
+ ├── "What challenged you?"
226
+ ├── "What did you learn?"
227
+ └── "How do you feel about your growth?"
228
+
229
+ Part 2: Skills Assessment (15 min)
230
+ ├── Review career ladder for their level
231
+ ├── "Where are you strong?"
232
+ ├── "Where do you want to grow?"
233
+ └── Identify 2-3 development areas
234
+
235
+ Part 3: Goal Setting (20 min)
236
+ ├── "What goals do you have for next quarter?"
237
+ ├── Technical skills to develop
238
+ ├── Projects for growth
239
+ ├── Leadership or collaboration skills
240
+ └── Document goals in shared doc
241
+
242
+ Part 4: Long-Term Vision (10 min)
243
+ ├── "What's your 2-3 year vision?"
244
+ ├── "What role do you aspire to?"
245
+ ├── "What experiences do you need?"
246
+ └── Discuss realistic path and timeline
247
+ ```
248
+
249
+ ### Career Development Plan
250
+
251
+ **Template:**
252
+
253
+ ```markdown
254
+ ## Career Development Plan: [Name]
255
+ Current Level: L4 (Mid-level Engineer)
256
+ Target Level: L5 (Senior Engineer)
257
+ Timeline: 12-18 months
258
+
259
+ ### Strengths
260
+ - Strong technical execution
261
+ - Excellent collaboration with team
262
+ - Consistently delivers projects on time
263
+
264
+ ### Development Areas
265
+ 1. Technical depth in Kubernetes
266
+ 2. Design skills for larger systems
267
+ 3. Mentorship of junior engineers
268
+
269
+ ### Goals for Q1 2024
270
+ 1. **Kubernetes Deep Dive**
271
+ - Complete CKA certification
272
+ - Lead migration of 5 services to K8s
273
+ - Present K8s lunch & learn to team
274
+
275
+ 2. **System Design**
276
+ - Shadow Sarah on next architecture review
277
+ - Design and propose observability platform
278
+ - Read "Designing Data-Intensive Applications"
279
+
280
+ 3. **Mentorship**
281
+ - Mentor Alex (L3) on CI/CD project
282
+ - Review code with teaching mindset
283
+ - Pair programming 2 hours/week
284
+
285
+ ### Action Items for Manager
286
+ - Assign K8s migration project to [Name]
287
+ - Invite to architecture reviews
288
+ - Connect with Sarah for mentorship
289
+ - Approve CKA cert ($300)
290
+
291
+ ### Next Review: March 31, 2024
292
+ ```
293
+
294
+ ---
295
+
296
+ ## Difficult Conversations
297
+
298
+ ### Performance Issues
299
+
300
+ **Structure:**
301
+ 1. **State the problem clearly** - Specific examples, not vague
302
+ 2. **Impact** - Why this matters (team, customers, business)
303
+ 3. **Listen** - What's their perspective? Any context you're missing?
304
+ 4. **Create improvement plan** - Specific actions, timeline, support
305
+ 5. **Follow-up** - Regular check-ins on progress
306
+
307
+ **Example:**
308
+ > "I want to talk about missed deadlines. In the last 3 sprints, you've committed to 20 points but delivered 12. This impacts the team's ability to deliver our roadmap. Can you help me understand what's happening?"
309
+
310
+ **Listen for:**
311
+ - Lack of clarity on expectations
312
+ - Workload issues or competing priorities
313
+ - Skill gaps that need addressing
314
+ - Personal issues affecting work
315
+ - Misalignment on what "done" means
316
+
317
+ **Avoid:**
318
+ - Surprising them (feedback should be ongoing)
319
+ - Being vague ("you need to work harder")
320
+ - Comparing to other engineers
321
+ - Making it personal
322
+
323
+ ### Burnout Signals
324
+
325
+ **Conversation:**
326
+ > "I've noticed you've been working late and seem exhausted. I'm concerned about your wellbeing. Can we talk about your workload?"
327
+
328
+ **If they're burned out:**
329
+ - Immediate action: Reduce workload or take time off
330
+ - Medium-term: Redistribute work, hire if needed
331
+ - Long-term: Address root cause (understaffing, unrealistic expectations, toxic culture)
332
+
333
+ **Don't:**
334
+ - Ignore the signs hoping it gets better
335
+ - Tell them to "just take a vacation" without addressing root cause
336
+ - Make them feel guilty for being burned out
337
+
338
+ ### Resignation Conversations
339
+
340
+ **When they give notice:**
341
+ 1. **Don't panic or guilt-trip** - "That's disappointing, but I understand"
342
+ 2. **Ask why** - "Can you share what led to this decision?"
343
+ 3. **Listen without defending** - Hear their reasons, don't argue
344
+ 4. **Counter-offer (if appropriate)** - Only if you can fix the real issues
345
+ 5. **Graceful exit** - Thank them, plan transition
346
+
347
+ **Exit interview questions:**
348
+ - "What made you start looking?"
349
+ - "What could we have done differently?"
350
+ - "What did you like about working here?"
351
+ - "Any feedback on my management?"
352
+
353
+ **Use feedback to improve** - Patterns across exits reveal systemic issues
354
+
355
+ ### Conflict Between Team Members
356
+
357
+ **Your role:** Mediator, not judge
358
+
359
+ **Process:**
360
+ 1. **Talk to each person separately** - Get both perspectives
361
+ 2. **Facilitate conversation** - Bring them together if appropriate
362
+ 3. **Focus on behaviors, not personalities** - "When X happens..." not "You are..."
363
+ 4. **Find common ground** - Shared goals, mutual respect
364
+ 5. **Set expectations** - Clear standards for behavior going forward
365
+
366
+ **Don't:**
367
+ - Take sides or make it about who's "right"
368
+ - Let conflict fester hoping it resolves itself
369
+ - Make it a public issue (handle privately)
370
+
371
+ ---
372
+
373
+ ## Common Mistakes
374
+
375
+ ### Mistake 1: Canceling or Rescheduling
376
+
377
+ **Why it's bad:** Sends message that they're not priority
378
+
379
+ **Fix:**
380
+ - Protect 1-on-1 time in calendar (hard block)
381
+ - Only reschedule for true emergencies
382
+ - If you must cancel, reschedule same week
383
+
384
+ ### Mistake 2: Turning It Into Status Update
385
+
386
+ **Why it's bad:** Wastes opportunity for deeper conversation
387
+
388
+ **Fix:**
389
+ - Get project updates async (Slack, written)
390
+ - Use 1-on-1 for coaching, feedback, career
391
+ - Ask "What do you need from me?" not "What's your status?"
392
+
393
+ ### Mistake 3: Not Taking Notes
394
+
395
+ **Why it's bad:** Forget commitments, lose context over time
396
+
397
+ **Fix:**
398
+ - Keep shared doc with notes from each 1-on-1
399
+ - Action items and follow-ups tracked
400
+ - Refer back to previous conversations
401
+
402
+ ### Mistake 4: Talking Too Much
403
+
404
+ **Why it's bad:** This is THEIR meeting, not yours
405
+
406
+ **Fix:**
407
+ - Listen 70%, talk 30%
408
+ - Ask open-ended questions
409
+ - Pause before jumping in with advice
410
+
411
+ ### Mistake 5: Not Following Up on Action Items
412
+
413
+ **Why it's bad:** Erodes trust ("they don't follow through")
414
+
415
+ **Fix:**
416
+ - Document action items clearly
417
+ - Review at next 1-on-1
418
+ - If you can't do something, explain why
419
+
420
+ ### Mistake 6: Avoiding Difficult Topics
421
+
422
+ **Why it's bad:** Problems fester, relationship stays surface-level
423
+
424
+ **Fix:**
425
+ - Address issues early and directly
426
+ - Create psychological safety for hard conversations
427
+ - Model vulnerability by asking for feedback
428
+
429
+ ---
430
+
431
+ ## 1-on-1 Templates
432
+
433
+ ### Template 1: New Hire (First 90 Days)
434
+
435
+ **Week 1-2 (Daily 15-min check-ins):**
436
+ - "How was your first day/week?"
437
+ - "What questions do you have?"
438
+ - "What's confusing or unclear?"
439
+ - "Who have you met? Who should you meet?"
440
+
441
+ **Week 3-12 (Weekly 30-min):**
442
+ - "What's helping you ramp up? What's slowing you down?"
443
+ - "How's the team culture feeling?"
444
+ - "What systems/tools do you need more context on?"
445
+ - "What feedback do you have on onboarding?"
446
+
447
+ **Month 3 (60-min check-in):**
448
+ - "How do you feel about your first 90 days?"
449
+ - "What's working? What's not?"
450
+ - "Ready to take on more? What kind of projects?"
451
+ - "Any concerns or questions?"
452
+
453
+ ### Template 2: High Performer
454
+
455
+ **Focus: Growth and retention**
456
+
457
+ - "What projects are exciting you?"
458
+ - "What skills do you want to develop?"
459
+ - "Where do you want to be in 2 years?"
460
+ - "What would make you leave this company?"
461
+ - "How can I better support you?"
462
+
463
+ ### Template 3: Struggling Performer
464
+
465
+ **Focus: Improvement plan and support**
466
+
467
+ - "How do you feel about your performance?"
468
+ - "What obstacles are in your way?"
469
+ - "What support do you need from me?"
470
+ - "Let's review our improvement plan progress"
471
+ - "What's working? What's not working?"
472
+
473
+ ### Template 4: Staff+ Engineer
474
+
475
+ **Focus: Strategic thinking and org impact**
476
+
477
+ - "What technical problems are you seeing at org level?"
478
+ - "What initiatives should we invest in?"
479
+ - "How's your work on [strategic project]?"
480
+ - "What do you need from me to unblock that?"
481
+ - "How's your mentorship of senior engineers going?"
482
+
483
+ ---
484
+
485
+ ## Building Psychological Safety
486
+
487
+ **What is psychological safety?**
488
+ The belief that you won't be punished or humiliated for speaking up with ideas, questions, concerns, or mistakes.
489
+
490
+ **How to create it:**
491
+
492
+ 1. **Model vulnerability**
493
+ - Share your own mistakes and learning
494
+ - Ask for feedback publicly
495
+ - Admit when you don't know something
496
+
497
+ 2. **Respond positively to bad news**
498
+ - "Thank you for telling me" (first response)
499
+ - Don't shoot the messenger
500
+ - Focus on learning, not blame
501
+
502
+ 3. **Ask open questions**
503
+ - "What am I missing?"
504
+ - "What concerns do you have?"
505
+ - "What would you do differently?"
506
+
507
+ 4. **No surprises**
508
+ - Regular feedback (not saved for reviews)
509
+ - Transparent about company/team changes
510
+ - Explain the "why" behind decisions
511
+
512
+ 5. **Follow through**
513
+ - If they raise concerns, act on them
514
+ - If you can't act, explain why
515
+ - Close the loop on every issue raised
516
+
517
+ **Signs you've built it:**
518
+ - They share mistakes without fear
519
+ - They disagree with you in meetings
520
+ - They bring up problems early
521
+ - They ask "dumb" questions
522
+ - They give you honest feedback
523
+
524
+ ---
525
+
526
+ ## Topics Checklist (Rotate Through These)
527
+
528
+ Use this checklist to ensure you're covering all important areas over time:
529
+
530
+ **Weekly (should come up regularly):**
531
+ - [ ] Current projects and obstacles
532
+ - [ ] Team dynamics and collaboration
533
+ - [ ] Immediate concerns or frustrations
534
+ - [ ] Workload and wellbeing
535
+
536
+ **Monthly:**
537
+ - [ ] Skills development and learning
538
+ - [ ] Career goals and progression
539
+ - [ ] Feedback (both directions)
540
+ - [ ] Team culture and belonging
541
+
542
+ **Quarterly:**
543
+ - [ ] Long-term career vision
544
+ - [ ] Promotion readiness discussion
545
+ - [ ] Company/org strategy and alignment
546
+ - [ ] Personal development goals
547
+
548
+ **As needed:**
549
+ - [ ] Performance issues
550
+ - [ ] Conflict resolution
551
+ - [ ] Compensation and recognition
552
+ - [ ] Work-life balance concerns
553
+ - [ ] Major life events (personal context)
554
+
555
+ ---
556
+
557
+ ## Questions Bank (Keep Fresh)
558
+
559
+ **Bookmark these for variety:**
560
+
561
+ **Energy & Motivation:**
562
+ - "What part of your work energizes you most?"
563
+ - "What drains you?"
564
+ - "What would you do more of if you could?"
565
+ - "What would you do less of?"
566
+
567
+ **Impact & Recognition:**
568
+ - "What impact are you most proud of?"
569
+ - "Do you feel your work is recognized?"
570
+ - "What contributions feel undervalued?"
571
+
572
+ **Team & Collaboration:**
573
+ - "Who on the team inspires you?"
574
+ - "Who would you like to work with more?"
575
+ - "How can we improve team collaboration?"
576
+
577
+ **Growth & Challenge:**
578
+ - "What's the right level of challenge for you right now?"
579
+ - "Where do you feel like you're coasting?"
580
+ - "Where do you feel stretched?"
581
+
582
+ **Manager Support:**
583
+ - "What can I do more of?"
584
+ - "What can I do less of?"
585
+ - "What's one thing I could change that would help you?"
586
+
587
+ **Career & Future:**
588
+ - "What role do you aspire to?"
589
+ - "What skills do you want to be known for?"
590
+ - "What would make this your dream job?"
591
+
592
+ ---
593
+
594
+ ## Key Takeaways
595
+
596
+ 1. **Never cancel** - 1-on-1s are highest priority meeting
597
+ 2. **Their meeting, their agenda** - First half is theirs
598
+ 3. **Listen 70%, talk 30%** - You should be listening most of the time
599
+ 4. **Take notes** - In shared doc, track action items
600
+ 5. **Follow up** - Always close the loop on commitments
601
+ 6. **Be consistent** - Same day/time each week
602
+ 7. **Go deep** - Skip status updates, focus on growth and challenges
603
+ 8. **Ask for feedback** - Model vulnerability and continuous improvement
604
+ 9. **Build psychological safety** - Make it safe to share bad news
605
+ 10. **Vary topics** - Use checklist to ensure coverage over time
606
+
607
+ **Remember:** 1-on-1s are your most powerful tool as a manager. Done well, they build trust, prevent problems, and help people grow. Done poorly or skipped, they signal that you don't care.
608
+
609
+ Make them count.