moflo 4.8.19 → 4.8.20

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 (241) hide show
  1. package/.claude/guidance/shipped/moflo.md +45 -0
  2. package/.claude/helpers/statusline.cjs +1 -1
  3. package/.claude/workflow-state.json +9 -0
  4. package/package.json +2 -2
  5. package/src/@claude-flow/cli/dist/src/init/statusline-generator.js +1 -1
  6. package/src/@claude-flow/cli/dist/src/services/agentic-flow-bridge.js +5 -3
  7. package/src/@claude-flow/cli/package.json +1 -1
  8. package/src/@claude-flow/memory/dist/agent-memory-scope.d.ts +131 -0
  9. package/src/@claude-flow/memory/dist/agent-memory-scope.js +223 -0
  10. package/src/@claude-flow/memory/dist/agent-memory-scope.test.d.ts +8 -0
  11. package/src/@claude-flow/memory/dist/agent-memory-scope.test.js +466 -0
  12. package/src/@claude-flow/memory/dist/agentdb-adapter.d.ts +165 -0
  13. package/src/@claude-flow/memory/dist/agentdb-adapter.js +806 -0
  14. package/src/@claude-flow/memory/dist/agentdb-backend.d.ts +212 -0
  15. package/src/@claude-flow/memory/dist/agentdb-backend.js +842 -0
  16. package/src/@claude-flow/memory/dist/agentdb-backend.test.d.ts +7 -0
  17. package/src/@claude-flow/memory/dist/agentdb-backend.test.js +258 -0
  18. package/src/@claude-flow/memory/dist/application/commands/delete-memory.command.d.ts +65 -0
  19. package/src/@claude-flow/memory/dist/application/commands/delete-memory.command.js +129 -0
  20. package/src/@claude-flow/memory/dist/application/commands/store-memory.command.d.ts +48 -0
  21. package/src/@claude-flow/memory/dist/application/commands/store-memory.command.js +72 -0
  22. package/src/@claude-flow/memory/dist/application/index.d.ts +12 -0
  23. package/src/@claude-flow/memory/dist/application/index.js +15 -0
  24. package/src/@claude-flow/memory/dist/application/queries/search-memory.query.d.ts +72 -0
  25. package/src/@claude-flow/memory/dist/application/queries/search-memory.query.js +143 -0
  26. package/src/@claude-flow/memory/dist/application/services/memory-application-service.d.ts +121 -0
  27. package/src/@claude-flow/memory/dist/application/services/memory-application-service.js +190 -0
  28. package/src/@claude-flow/memory/dist/auto-memory-bridge.d.ts +226 -0
  29. package/src/@claude-flow/memory/dist/auto-memory-bridge.js +709 -0
  30. package/src/@claude-flow/memory/dist/auto-memory-bridge.test.d.ts +8 -0
  31. package/src/@claude-flow/memory/dist/auto-memory-bridge.test.js +757 -0
  32. package/src/@claude-flow/memory/dist/benchmark.test.d.ts +2 -0
  33. package/src/@claude-flow/memory/dist/benchmark.test.js +277 -0
  34. package/src/@claude-flow/memory/dist/cache-manager.d.ts +134 -0
  35. package/src/@claude-flow/memory/dist/cache-manager.js +407 -0
  36. package/src/@claude-flow/memory/dist/controller-registry.d.ts +216 -0
  37. package/src/@claude-flow/memory/dist/controller-registry.js +893 -0
  38. package/src/@claude-flow/memory/dist/controller-registry.test.d.ts +14 -0
  39. package/src/@claude-flow/memory/dist/controller-registry.test.js +593 -0
  40. package/src/@claude-flow/memory/dist/database-provider.d.ts +87 -0
  41. package/src/@claude-flow/memory/dist/database-provider.js +372 -0
  42. package/src/@claude-flow/memory/dist/database-provider.test.d.ts +7 -0
  43. package/src/@claude-flow/memory/dist/database-provider.test.js +287 -0
  44. package/src/@claude-flow/memory/dist/domain/entities/memory-entry.d.ts +143 -0
  45. package/src/@claude-flow/memory/dist/domain/entities/memory-entry.js +226 -0
  46. package/src/@claude-flow/memory/dist/domain/index.d.ts +11 -0
  47. package/src/@claude-flow/memory/dist/domain/index.js +12 -0
  48. package/src/@claude-flow/memory/dist/domain/repositories/memory-repository.interface.d.ts +102 -0
  49. package/src/@claude-flow/memory/dist/domain/repositories/memory-repository.interface.js +11 -0
  50. package/src/@claude-flow/memory/dist/domain/services/memory-domain-service.d.ts +105 -0
  51. package/src/@claude-flow/memory/dist/domain/services/memory-domain-service.js +297 -0
  52. package/src/@claude-flow/memory/dist/hnsw-index.d.ts +111 -0
  53. package/src/@claude-flow/memory/dist/hnsw-index.js +781 -0
  54. package/src/@claude-flow/memory/dist/hnsw-lite.d.ts +23 -0
  55. package/src/@claude-flow/memory/dist/hnsw-lite.js +168 -0
  56. package/src/@claude-flow/memory/dist/index.d.ts +204 -0
  57. package/src/@claude-flow/memory/dist/index.js +358 -0
  58. package/src/@claude-flow/memory/dist/infrastructure/index.d.ts +17 -0
  59. package/src/@claude-flow/memory/dist/infrastructure/index.js +16 -0
  60. package/src/@claude-flow/memory/dist/infrastructure/repositories/hybrid-memory-repository.d.ts +66 -0
  61. package/src/@claude-flow/memory/dist/infrastructure/repositories/hybrid-memory-repository.js +409 -0
  62. package/src/@claude-flow/memory/dist/learning-bridge.d.ts +137 -0
  63. package/src/@claude-flow/memory/dist/learning-bridge.js +335 -0
  64. package/src/@claude-flow/memory/dist/learning-bridge.test.d.ts +8 -0
  65. package/src/@claude-flow/memory/dist/learning-bridge.test.js +578 -0
  66. package/src/@claude-flow/memory/dist/memory-graph.d.ts +100 -0
  67. package/src/@claude-flow/memory/dist/memory-graph.js +333 -0
  68. package/src/@claude-flow/memory/dist/memory-graph.test.d.ts +8 -0
  69. package/src/@claude-flow/memory/dist/memory-graph.test.js +609 -0
  70. package/src/@claude-flow/memory/dist/migration.d.ts +68 -0
  71. package/src/@claude-flow/memory/dist/migration.js +513 -0
  72. package/src/@claude-flow/memory/dist/persistent-sona.d.ts +144 -0
  73. package/src/@claude-flow/memory/dist/persistent-sona.js +332 -0
  74. package/src/@claude-flow/memory/dist/query-builder.d.ts +211 -0
  75. package/src/@claude-flow/memory/dist/query-builder.js +438 -0
  76. package/src/@claude-flow/memory/dist/rvf-backend.d.ts +51 -0
  77. package/src/@claude-flow/memory/dist/rvf-backend.js +481 -0
  78. package/src/@claude-flow/memory/dist/rvf-learning-store.d.ts +139 -0
  79. package/src/@claude-flow/memory/dist/rvf-learning-store.js +295 -0
  80. package/src/@claude-flow/memory/dist/rvf-migration.d.ts +45 -0
  81. package/src/@claude-flow/memory/dist/rvf-migration.js +234 -0
  82. package/src/@claude-flow/memory/dist/sqljs-backend.d.ts +127 -0
  83. package/src/@claude-flow/memory/dist/sqljs-backend.js +600 -0
  84. package/src/@claude-flow/memory/dist/types.d.ts +484 -0
  85. package/src/@claude-flow/memory/dist/types.js +58 -0
  86. package/src/@claude-flow/shared/dist/core/config/defaults.d.ts +41 -0
  87. package/src/@claude-flow/shared/dist/core/config/defaults.js +186 -0
  88. package/src/@claude-flow/shared/dist/core/config/index.d.ts +8 -0
  89. package/src/@claude-flow/shared/dist/core/config/index.js +12 -0
  90. package/src/@claude-flow/shared/dist/core/config/loader.d.ts +45 -0
  91. package/src/@claude-flow/shared/dist/core/config/loader.js +222 -0
  92. package/src/@claude-flow/shared/dist/core/config/schema.d.ts +1134 -0
  93. package/src/@claude-flow/shared/dist/core/config/schema.js +158 -0
  94. package/src/@claude-flow/shared/dist/core/config/validator.d.ts +92 -0
  95. package/src/@claude-flow/shared/dist/core/config/validator.js +147 -0
  96. package/src/@claude-flow/shared/dist/core/event-bus.d.ts +31 -0
  97. package/src/@claude-flow/shared/dist/core/event-bus.js +197 -0
  98. package/src/@claude-flow/shared/dist/core/index.d.ts +15 -0
  99. package/src/@claude-flow/shared/dist/core/index.js +19 -0
  100. package/src/@claude-flow/shared/dist/core/interfaces/agent.interface.d.ts +200 -0
  101. package/src/@claude-flow/shared/dist/core/interfaces/agent.interface.js +6 -0
  102. package/src/@claude-flow/shared/dist/core/interfaces/coordinator.interface.d.ts +310 -0
  103. package/src/@claude-flow/shared/dist/core/interfaces/coordinator.interface.js +7 -0
  104. package/src/@claude-flow/shared/dist/core/interfaces/event.interface.d.ts +224 -0
  105. package/src/@claude-flow/shared/dist/core/interfaces/event.interface.js +46 -0
  106. package/src/@claude-flow/shared/dist/core/interfaces/index.d.ts +10 -0
  107. package/src/@claude-flow/shared/dist/core/interfaces/index.js +15 -0
  108. package/src/@claude-flow/shared/dist/core/interfaces/memory.interface.d.ts +298 -0
  109. package/src/@claude-flow/shared/dist/core/interfaces/memory.interface.js +7 -0
  110. package/src/@claude-flow/shared/dist/core/interfaces/task.interface.d.ts +185 -0
  111. package/src/@claude-flow/shared/dist/core/interfaces/task.interface.js +6 -0
  112. package/src/@claude-flow/shared/dist/core/orchestrator/event-coordinator.d.ts +35 -0
  113. package/src/@claude-flow/shared/dist/core/orchestrator/event-coordinator.js +101 -0
  114. package/src/@claude-flow/shared/dist/core/orchestrator/health-monitor.d.ts +60 -0
  115. package/src/@claude-flow/shared/dist/core/orchestrator/health-monitor.js +166 -0
  116. package/src/@claude-flow/shared/dist/core/orchestrator/index.d.ts +46 -0
  117. package/src/@claude-flow/shared/dist/core/orchestrator/index.js +64 -0
  118. package/src/@claude-flow/shared/dist/core/orchestrator/lifecycle-manager.d.ts +56 -0
  119. package/src/@claude-flow/shared/dist/core/orchestrator/lifecycle-manager.js +195 -0
  120. package/src/@claude-flow/shared/dist/core/orchestrator/session-manager.d.ts +83 -0
  121. package/src/@claude-flow/shared/dist/core/orchestrator/session-manager.js +193 -0
  122. package/src/@claude-flow/shared/dist/core/orchestrator/task-manager.d.ts +49 -0
  123. package/src/@claude-flow/shared/dist/core/orchestrator/task-manager.js +253 -0
  124. package/src/@claude-flow/shared/dist/events/domain-events.d.ts +282 -0
  125. package/src/@claude-flow/shared/dist/events/domain-events.js +165 -0
  126. package/src/@claude-flow/shared/dist/events/event-store.d.ts +126 -0
  127. package/src/@claude-flow/shared/dist/events/event-store.js +432 -0
  128. package/src/@claude-flow/shared/dist/events/event-store.test.d.ts +8 -0
  129. package/src/@claude-flow/shared/dist/events/event-store.test.js +297 -0
  130. package/src/@claude-flow/shared/dist/events/example-usage.d.ts +10 -0
  131. package/src/@claude-flow/shared/dist/events/example-usage.js +193 -0
  132. package/src/@claude-flow/shared/dist/events/index.d.ts +21 -0
  133. package/src/@claude-flow/shared/dist/events/index.js +22 -0
  134. package/src/@claude-flow/shared/dist/events/projections.d.ts +177 -0
  135. package/src/@claude-flow/shared/dist/events/projections.js +421 -0
  136. package/src/@claude-flow/shared/dist/events/rvf-event-log.d.ts +82 -0
  137. package/src/@claude-flow/shared/dist/events/rvf-event-log.js +340 -0
  138. package/src/@claude-flow/shared/dist/events/state-reconstructor.d.ts +101 -0
  139. package/src/@claude-flow/shared/dist/events/state-reconstructor.js +263 -0
  140. package/src/@claude-flow/shared/dist/events.d.ts +80 -0
  141. package/src/@claude-flow/shared/dist/events.js +249 -0
  142. package/src/@claude-flow/shared/dist/hooks/example-usage.d.ts +42 -0
  143. package/src/@claude-flow/shared/dist/hooks/example-usage.js +351 -0
  144. package/src/@claude-flow/shared/dist/hooks/executor.d.ts +100 -0
  145. package/src/@claude-flow/shared/dist/hooks/executor.js +267 -0
  146. package/src/@claude-flow/shared/dist/hooks/hooks.test.d.ts +9 -0
  147. package/src/@claude-flow/shared/dist/hooks/hooks.test.js +322 -0
  148. package/src/@claude-flow/shared/dist/hooks/index.d.ts +52 -0
  149. package/src/@claude-flow/shared/dist/hooks/index.js +51 -0
  150. package/src/@claude-flow/shared/dist/hooks/registry.d.ts +133 -0
  151. package/src/@claude-flow/shared/dist/hooks/registry.js +277 -0
  152. package/src/@claude-flow/shared/dist/hooks/safety/bash-safety.d.ts +105 -0
  153. package/src/@claude-flow/shared/dist/hooks/safety/bash-safety.js +481 -0
  154. package/src/@claude-flow/shared/dist/hooks/safety/file-organization.d.ts +144 -0
  155. package/src/@claude-flow/shared/dist/hooks/safety/file-organization.js +328 -0
  156. package/src/@claude-flow/shared/dist/hooks/safety/git-commit.d.ts +158 -0
  157. package/src/@claude-flow/shared/dist/hooks/safety/git-commit.js +450 -0
  158. package/src/@claude-flow/shared/dist/hooks/safety/index.d.ts +17 -0
  159. package/src/@claude-flow/shared/dist/hooks/safety/index.js +17 -0
  160. package/src/@claude-flow/shared/dist/hooks/session-hooks.d.ts +234 -0
  161. package/src/@claude-flow/shared/dist/hooks/session-hooks.js +334 -0
  162. package/src/@claude-flow/shared/dist/hooks/task-hooks.d.ts +163 -0
  163. package/src/@claude-flow/shared/dist/hooks/task-hooks.js +326 -0
  164. package/src/@claude-flow/shared/dist/hooks/types.d.ts +267 -0
  165. package/src/@claude-flow/shared/dist/hooks/types.js +62 -0
  166. package/src/@claude-flow/shared/dist/hooks/verify-exports.test.d.ts +9 -0
  167. package/src/@claude-flow/shared/dist/hooks/verify-exports.test.js +93 -0
  168. package/src/@claude-flow/shared/dist/index.d.ts +20 -0
  169. package/src/@claude-flow/shared/dist/index.js +50 -0
  170. package/src/@claude-flow/shared/dist/mcp/connection-pool.d.ts +98 -0
  171. package/src/@claude-flow/shared/dist/mcp/connection-pool.js +364 -0
  172. package/src/@claude-flow/shared/dist/mcp/index.d.ts +69 -0
  173. package/src/@claude-flow/shared/dist/mcp/index.js +84 -0
  174. package/src/@claude-flow/shared/dist/mcp/server.d.ts +166 -0
  175. package/src/@claude-flow/shared/dist/mcp/server.js +593 -0
  176. package/src/@claude-flow/shared/dist/mcp/session-manager.d.ts +136 -0
  177. package/src/@claude-flow/shared/dist/mcp/session-manager.js +335 -0
  178. package/src/@claude-flow/shared/dist/mcp/tool-registry.d.ts +178 -0
  179. package/src/@claude-flow/shared/dist/mcp/tool-registry.js +439 -0
  180. package/src/@claude-flow/shared/dist/mcp/transport/http.d.ts +104 -0
  181. package/src/@claude-flow/shared/dist/mcp/transport/http.js +476 -0
  182. package/src/@claude-flow/shared/dist/mcp/transport/index.d.ts +102 -0
  183. package/src/@claude-flow/shared/dist/mcp/transport/index.js +238 -0
  184. package/src/@claude-flow/shared/dist/mcp/transport/stdio.d.ts +104 -0
  185. package/src/@claude-flow/shared/dist/mcp/transport/stdio.js +263 -0
  186. package/src/@claude-flow/shared/dist/mcp/transport/websocket.d.ts +133 -0
  187. package/src/@claude-flow/shared/dist/mcp/transport/websocket.js +396 -0
  188. package/src/@claude-flow/shared/dist/mcp/types.d.ts +438 -0
  189. package/src/@claude-flow/shared/dist/mcp/types.js +54 -0
  190. package/src/@claude-flow/shared/dist/plugin-interface.d.ts +544 -0
  191. package/src/@claude-flow/shared/dist/plugin-interface.js +23 -0
  192. package/src/@claude-flow/shared/dist/plugin-loader.d.ts +139 -0
  193. package/src/@claude-flow/shared/dist/plugin-loader.js +434 -0
  194. package/src/@claude-flow/shared/dist/plugin-registry.d.ts +183 -0
  195. package/src/@claude-flow/shared/dist/plugin-registry.js +457 -0
  196. package/src/@claude-flow/shared/dist/plugins/index.d.ts +10 -0
  197. package/src/@claude-flow/shared/dist/plugins/index.js +10 -0
  198. package/src/@claude-flow/shared/dist/plugins/official/hive-mind-plugin.d.ts +106 -0
  199. package/src/@claude-flow/shared/dist/plugins/official/hive-mind-plugin.js +241 -0
  200. package/src/@claude-flow/shared/dist/plugins/official/index.d.ts +10 -0
  201. package/src/@claude-flow/shared/dist/plugins/official/index.js +10 -0
  202. package/src/@claude-flow/shared/dist/plugins/official/maestro-plugin.d.ts +121 -0
  203. package/src/@claude-flow/shared/dist/plugins/official/maestro-plugin.js +355 -0
  204. package/src/@claude-flow/shared/dist/plugins/types.d.ts +93 -0
  205. package/src/@claude-flow/shared/dist/plugins/types.js +9 -0
  206. package/src/@claude-flow/shared/dist/resilience/bulkhead.d.ts +105 -0
  207. package/src/@claude-flow/shared/dist/resilience/bulkhead.js +206 -0
  208. package/src/@claude-flow/shared/dist/resilience/circuit-breaker.d.ts +132 -0
  209. package/src/@claude-flow/shared/dist/resilience/circuit-breaker.js +233 -0
  210. package/src/@claude-flow/shared/dist/resilience/index.d.ts +19 -0
  211. package/src/@claude-flow/shared/dist/resilience/index.js +19 -0
  212. package/src/@claude-flow/shared/dist/resilience/rate-limiter.d.ts +168 -0
  213. package/src/@claude-flow/shared/dist/resilience/rate-limiter.js +314 -0
  214. package/src/@claude-flow/shared/dist/resilience/retry.d.ts +91 -0
  215. package/src/@claude-flow/shared/dist/resilience/retry.js +159 -0
  216. package/src/@claude-flow/shared/dist/security/index.d.ts +10 -0
  217. package/src/@claude-flow/shared/dist/security/index.js +12 -0
  218. package/src/@claude-flow/shared/dist/security/input-validation.d.ts +73 -0
  219. package/src/@claude-flow/shared/dist/security/input-validation.js +201 -0
  220. package/src/@claude-flow/shared/dist/security/secure-random.d.ts +92 -0
  221. package/src/@claude-flow/shared/dist/security/secure-random.js +142 -0
  222. package/src/@claude-flow/shared/dist/services/index.d.ts +7 -0
  223. package/src/@claude-flow/shared/dist/services/index.js +7 -0
  224. package/src/@claude-flow/shared/dist/services/v3-progress.service.d.ts +124 -0
  225. package/src/@claude-flow/shared/dist/services/v3-progress.service.js +402 -0
  226. package/src/@claude-flow/shared/dist/types/agent.types.d.ts +137 -0
  227. package/src/@claude-flow/shared/dist/types/agent.types.js +6 -0
  228. package/src/@claude-flow/shared/dist/types/index.d.ts +11 -0
  229. package/src/@claude-flow/shared/dist/types/index.js +17 -0
  230. package/src/@claude-flow/shared/dist/types/mcp.types.d.ts +266 -0
  231. package/src/@claude-flow/shared/dist/types/mcp.types.js +7 -0
  232. package/src/@claude-flow/shared/dist/types/memory.types.d.ts +236 -0
  233. package/src/@claude-flow/shared/dist/types/memory.types.js +7 -0
  234. package/src/@claude-flow/shared/dist/types/swarm.types.d.ts +186 -0
  235. package/src/@claude-flow/shared/dist/types/swarm.types.js +65 -0
  236. package/src/@claude-flow/shared/dist/types/task.types.d.ts +178 -0
  237. package/src/@claude-flow/shared/dist/types/task.types.js +32 -0
  238. package/src/@claude-flow/shared/dist/types.d.ts +197 -0
  239. package/src/@claude-flow/shared/dist/types.js +21 -0
  240. package/src/@claude-flow/shared/dist/utils/secure-logger.d.ts +69 -0
  241. package/src/@claude-flow/shared/dist/utils/secure-logger.js +208 -0
@@ -0,0 +1,481 @@
1
+ /**
2
+ * V3 Bash Safety Hook
3
+ *
4
+ * TypeScript conversion of V2 bash-hook.sh.
5
+ * Provides command safety analysis, dangerous command detection,
6
+ * secret detection, and safe alternatives.
7
+ *
8
+ * @module v3/shared/hooks/safety/bash-safety
9
+ */
10
+ import { HookEvent, HookPriority, } from '../types.js';
11
+ /**
12
+ * Dangerous command patterns
13
+ */
14
+ const DANGEROUS_PATTERNS = [
15
+ // Critical - Always block
16
+ {
17
+ pattern: /rm\s+(-[rRf]+\s+)*\//,
18
+ type: 'destructive',
19
+ severity: 'critical',
20
+ description: 'Recursive deletion from root directory',
21
+ block: true,
22
+ },
23
+ {
24
+ pattern: /rm\s+-rf\s+\/\*/,
25
+ type: 'destructive',
26
+ severity: 'critical',
27
+ description: 'Recursive deletion of all root files',
28
+ block: true,
29
+ },
30
+ {
31
+ pattern: /dd\s+if=.*of=\/dev\/(sd|hd|nvme)/,
32
+ type: 'destructive',
33
+ severity: 'critical',
34
+ description: 'Direct disk write that can destroy data',
35
+ block: true,
36
+ },
37
+ {
38
+ pattern: /mkfs\./,
39
+ type: 'destructive',
40
+ severity: 'critical',
41
+ description: 'Filesystem formatting command',
42
+ block: true,
43
+ },
44
+ {
45
+ pattern: />\s*\/dev\/sd[a-z]/,
46
+ type: 'destructive',
47
+ severity: 'critical',
48
+ description: 'Direct write to disk device',
49
+ block: true,
50
+ },
51
+ {
52
+ // Fork bomb patterns - various formats (with flexible spacing)
53
+ pattern: /:\s*\(\s*\)\s*\{\s*:\s*\|\s*:\s*&\s*\}\s*;\s*:|bomb\s*\(\)|while\s+true.*fork/,
54
+ type: 'resource',
55
+ severity: 'critical',
56
+ description: 'Fork bomb detected',
57
+ block: true,
58
+ },
59
+ {
60
+ pattern: /chmod\s+(-R\s+)?777\s+\//,
61
+ type: 'privilege',
62
+ severity: 'critical',
63
+ description: 'Setting dangerous permissions on root',
64
+ block: true,
65
+ },
66
+ // High - Block but offer alternatives
67
+ {
68
+ pattern: /rm\s+-rf\s+\*/,
69
+ type: 'destructive',
70
+ severity: 'high',
71
+ description: 'Recursive deletion of all files in directory',
72
+ block: true,
73
+ },
74
+ {
75
+ pattern: /rm\s+-rf\s+\.\//,
76
+ type: 'destructive',
77
+ severity: 'high',
78
+ description: 'Recursive deletion of current directory',
79
+ block: true,
80
+ },
81
+ {
82
+ pattern: /rm\s+-rf\s+~/,
83
+ type: 'destructive',
84
+ severity: 'high',
85
+ description: 'Recursive deletion of home directory',
86
+ block: true,
87
+ },
88
+ {
89
+ pattern: /curl.*\|\s*(bash|sh|zsh)/,
90
+ type: 'dangerous',
91
+ severity: 'high',
92
+ description: 'Piping remote content directly to shell',
93
+ block: true,
94
+ },
95
+ {
96
+ pattern: /wget.*-O-\s*\|\s*(bash|sh|zsh)/,
97
+ type: 'dangerous',
98
+ severity: 'high',
99
+ description: 'Piping remote content directly to shell',
100
+ block: true,
101
+ },
102
+ {
103
+ pattern: /eval\s+.*\$\(/,
104
+ type: 'dangerous',
105
+ severity: 'high',
106
+ description: 'Dynamic code execution with command substitution',
107
+ block: true,
108
+ },
109
+ // Medium - Warn
110
+ {
111
+ pattern: /rm\s+(?!.*-i)/,
112
+ type: 'destructive',
113
+ severity: 'medium',
114
+ description: 'Remove command without interactive flag',
115
+ block: false,
116
+ },
117
+ {
118
+ pattern: /sudo\s+rm/,
119
+ type: 'privilege',
120
+ severity: 'medium',
121
+ description: 'Privileged file deletion',
122
+ block: false,
123
+ },
124
+ {
125
+ pattern: /sudo\s+chmod/,
126
+ type: 'privilege',
127
+ severity: 'medium',
128
+ description: 'Privileged permission change',
129
+ block: false,
130
+ },
131
+ {
132
+ pattern: /git\s+push\s+.*--force/,
133
+ type: 'destructive',
134
+ severity: 'medium',
135
+ description: 'Force push can overwrite remote history',
136
+ block: false,
137
+ },
138
+ {
139
+ pattern: /git\s+reset\s+--hard/,
140
+ type: 'destructive',
141
+ severity: 'medium',
142
+ description: 'Hard reset discards uncommitted changes',
143
+ block: false,
144
+ },
145
+ {
146
+ pattern: /DROP\s+(DATABASE|TABLE)/i,
147
+ type: 'destructive',
148
+ severity: 'high',
149
+ description: 'Database/table deletion command',
150
+ block: false,
151
+ },
152
+ {
153
+ pattern: /TRUNCATE\s+TABLE/i,
154
+ type: 'destructive',
155
+ severity: 'medium',
156
+ description: 'Table truncation command',
157
+ block: false,
158
+ },
159
+ // Low - Informational
160
+ {
161
+ pattern: /kill\s+-9/,
162
+ type: 'dangerous',
163
+ severity: 'low',
164
+ description: 'Force kill signal prevents graceful shutdown',
165
+ block: false,
166
+ },
167
+ {
168
+ pattern: /killall/,
169
+ type: 'dangerous',
170
+ severity: 'low',
171
+ description: 'Kills all processes by name',
172
+ block: false,
173
+ },
174
+ ];
175
+ /**
176
+ * Secret patterns to detect and redact
177
+ */
178
+ const SECRET_PATTERNS = [
179
+ { pattern: /(password|passwd|pwd)\s*[=:]\s*['"]?([^\s'"]+)/i, name: 'password', redactGroup: 2 },
180
+ { pattern: /(api[_-]?key)\s*[=:]\s*['"]?([^\s'"]+)/i, name: 'API key', redactGroup: 2 },
181
+ { pattern: /(secret[_-]?key)\s*[=:]\s*['"]?([^\s'"]+)/i, name: 'secret key', redactGroup: 2 },
182
+ { pattern: /(access[_-]?token)\s*[=:]\s*['"]?([^\s'"]+)/i, name: 'access token', redactGroup: 2 },
183
+ { pattern: /(auth[_-]?token)\s*[=:]\s*['"]?([^\s'"]+)/i, name: 'auth token', redactGroup: 2 },
184
+ { pattern: /(bearer)\s+([a-zA-Z0-9._-]+)/i, name: 'bearer token', redactGroup: 2 },
185
+ { pattern: /(private[_-]?key)\s*[=:]\s*['"]?([^\s'"]+)/i, name: 'private key', redactGroup: 2 },
186
+ { pattern: /(\bsk-[a-zA-Z0-9]{20,})/i, name: 'OpenAI API key' },
187
+ { pattern: /(\bghp_[a-zA-Z0-9]{36,})/i, name: 'GitHub token' },
188
+ { pattern: /(\bnpm_[a-zA-Z0-9]{36,})/i, name: 'npm token' },
189
+ { pattern: /(AKIA[0-9A-Z]{16})/i, name: 'AWS access key' },
190
+ ];
191
+ /**
192
+ * Common dependencies to check
193
+ */
194
+ const DEPENDENCY_CHECKS = [
195
+ { command: /\bjq\b/, dependency: 'jq' },
196
+ { command: /\byq\b/, dependency: 'yq' },
197
+ { command: /\bawk\b/, dependency: 'awk' },
198
+ { command: /\bsed\b/, dependency: 'sed' },
199
+ { command: /\bcurl\b/, dependency: 'curl' },
200
+ { command: /\bwget\b/, dependency: 'wget' },
201
+ { command: /\bgit\b/, dependency: 'git' },
202
+ { command: /\bdocker\b/, dependency: 'docker' },
203
+ { command: /\bkubectl\b/, dependency: 'kubectl' },
204
+ { command: /\bpython3?\b/, dependency: 'python' },
205
+ { command: /\bnode\b/, dependency: 'node' },
206
+ { command: /\bnpm\b/, dependency: 'npm' },
207
+ { command: /\byarn\b/, dependency: 'yarn' },
208
+ { command: /\bpnpm\b/, dependency: 'pnpm' },
209
+ ];
210
+ /**
211
+ * Safe alternatives for dangerous commands (with patterns for matching)
212
+ */
213
+ const SAFE_ALTERNATIVES = [
214
+ {
215
+ pattern: /rm\s+-rf\s+\*/,
216
+ alternatives: [
217
+ 'rm -ri * (interactive mode)',
218
+ 'find . -maxdepth 1 -type f -delete (only files)',
219
+ 'git clean -fd (for git repositories)',
220
+ ],
221
+ },
222
+ {
223
+ pattern: /rm\s+-rf/,
224
+ alternatives: [
225
+ 'rm -ri (interactive mode)',
226
+ 'trash-cli (move to trash instead)',
227
+ 'mv to backup directory first',
228
+ ],
229
+ },
230
+ {
231
+ pattern: /kill\s+-9/,
232
+ alternatives: [
233
+ 'kill (graceful termination first)',
234
+ 'kill -15 (SIGTERM)',
235
+ 'systemctl stop (for services)',
236
+ ],
237
+ },
238
+ {
239
+ pattern: /curl.*\|\s*(bash|sh|zsh)/,
240
+ alternatives: [
241
+ 'Download script first, review, then execute',
242
+ 'Use package managers when available',
243
+ 'Verify script hash before execution',
244
+ ],
245
+ },
246
+ {
247
+ pattern: /wget.*\|\s*(bash|sh|zsh)/,
248
+ alternatives: [
249
+ 'Download script first, review, then execute',
250
+ 'Use package managers when available',
251
+ 'Verify script hash before execution',
252
+ ],
253
+ },
254
+ {
255
+ pattern: /git\s+push.*--force/,
256
+ alternatives: [
257
+ 'git push --force-with-lease (safer)',
258
+ 'Create backup branch first',
259
+ 'git push --force-if-includes',
260
+ ],
261
+ },
262
+ {
263
+ pattern: /git\s+reset\s+--hard/,
264
+ alternatives: [
265
+ 'git stash (save changes first)',
266
+ 'git reset --soft (keep changes staged)',
267
+ 'Create backup branch first',
268
+ ],
269
+ },
270
+ ];
271
+ /**
272
+ * Bash Safety Hook Manager
273
+ */
274
+ export class BashSafetyHook {
275
+ registry;
276
+ blockedCommands = new Set();
277
+ availableDependencies = new Set();
278
+ constructor(registry) {
279
+ this.registry = registry;
280
+ this.registerHooks();
281
+ this.detectAvailableDependencies();
282
+ }
283
+ /**
284
+ * Register bash safety hooks
285
+ */
286
+ registerHooks() {
287
+ this.registry.register(HookEvent.PreCommand, this.analyzeCommand.bind(this), HookPriority.Critical, { name: 'bash-safety:pre-command' });
288
+ }
289
+ /**
290
+ * Detect available dependencies
291
+ */
292
+ async detectAvailableDependencies() {
293
+ // In a real implementation, this would check which commands are available
294
+ // For now, assume common ones are available
295
+ const commonDeps = ['git', 'node', 'npm', 'curl', 'sed', 'awk'];
296
+ commonDeps.forEach(dep => this.availableDependencies.add(dep));
297
+ }
298
+ /**
299
+ * Analyze a command for safety
300
+ */
301
+ async analyzeCommand(context) {
302
+ const commandInfo = context.command;
303
+ if (!commandInfo) {
304
+ return this.createResult('low', false, []);
305
+ }
306
+ const command = commandInfo.command;
307
+ const risks = [];
308
+ const warnings = [];
309
+ let blocked = false;
310
+ let blockReason;
311
+ let modifiedCommand;
312
+ let safeAlternatives;
313
+ // Check for dangerous patterns
314
+ for (const pattern of DANGEROUS_PATTERNS) {
315
+ if (pattern.pattern.test(command)) {
316
+ risks.push({
317
+ type: pattern.type,
318
+ severity: pattern.severity,
319
+ description: pattern.description,
320
+ pattern: pattern.pattern.toString(),
321
+ });
322
+ if (pattern.block) {
323
+ blocked = true;
324
+ blockReason = pattern.description;
325
+ }
326
+ // Find safe alternatives using pattern matching
327
+ for (const { pattern: altPattern, alternatives } of SAFE_ALTERNATIVES) {
328
+ if (altPattern.test(command)) {
329
+ safeAlternatives = alternatives;
330
+ break;
331
+ }
332
+ }
333
+ }
334
+ }
335
+ // Check for secrets
336
+ const { secrets, redactedCommand } = this.detectSecrets(command);
337
+ for (const secret of secrets) {
338
+ risks.push({
339
+ type: 'secret',
340
+ severity: 'high',
341
+ description: `Potential ${secret.name} detected in command`,
342
+ });
343
+ warnings.push(`Detected potential secret: ${secret.name}`);
344
+ }
345
+ // Check for missing dependencies
346
+ const missingDependencies = this.checkDependencies(command);
347
+ // Add -i flag to rm commands if not present
348
+ if (/\brm\s+/.test(command) && !/-i\b/.test(command) && !blocked) {
349
+ modifiedCommand = command.replace(/\brm\s+/, 'rm -i ');
350
+ warnings.push('Added -i flag for interactive confirmation');
351
+ }
352
+ // Calculate overall risk level
353
+ const riskLevel = this.calculateRiskLevel(risks);
354
+ // Determine if we should proceed
355
+ const shouldProceed = !blocked;
356
+ return {
357
+ success: true,
358
+ riskLevel,
359
+ blocked,
360
+ blockReason,
361
+ modifiedCommand,
362
+ risks,
363
+ safeAlternatives,
364
+ warnings: warnings.length > 0 ? warnings : undefined,
365
+ missingDependencies: missingDependencies.length > 0 ? missingDependencies : undefined,
366
+ redactedCommand: secrets.length > 0 ? redactedCommand : undefined,
367
+ abort: blocked,
368
+ data: blocked ? undefined : {
369
+ command: {
370
+ ...commandInfo,
371
+ command: modifiedCommand || command,
372
+ isDestructive: risks.some(r => r.type === 'destructive'),
373
+ },
374
+ },
375
+ };
376
+ }
377
+ /**
378
+ * Detect secrets in command
379
+ */
380
+ detectSecrets(command) {
381
+ const secrets = [];
382
+ let redactedCommand = command;
383
+ for (const { pattern, name, redactGroup } of SECRET_PATTERNS) {
384
+ const match = pattern.exec(command);
385
+ if (match) {
386
+ secrets.push({ name, position: match.index });
387
+ // Redact the secret value
388
+ if (redactGroup && match[redactGroup]) {
389
+ redactedCommand = redactedCommand.replace(match[redactGroup], '[REDACTED]');
390
+ }
391
+ else {
392
+ redactedCommand = redactedCommand.replace(match[0], `[REDACTED_${name.toUpperCase().replace(/\s/g, '_')}]`);
393
+ }
394
+ }
395
+ }
396
+ return { secrets, redactedCommand };
397
+ }
398
+ /**
399
+ * Check for missing dependencies
400
+ */
401
+ checkDependencies(command) {
402
+ const missing = [];
403
+ for (const { command: pattern, dependency } of DEPENDENCY_CHECKS) {
404
+ if (pattern.test(command) && !this.availableDependencies.has(dependency)) {
405
+ missing.push(dependency);
406
+ }
407
+ }
408
+ return missing;
409
+ }
410
+ /**
411
+ * Calculate overall risk level
412
+ */
413
+ calculateRiskLevel(risks) {
414
+ if (risks.length === 0) {
415
+ return 'low';
416
+ }
417
+ const severities = risks.map(r => r.severity);
418
+ if (severities.includes('critical')) {
419
+ return 'critical';
420
+ }
421
+ if (severities.includes('high')) {
422
+ return 'high';
423
+ }
424
+ if (severities.includes('medium')) {
425
+ return 'medium';
426
+ }
427
+ return 'low';
428
+ }
429
+ /**
430
+ * Create a result object
431
+ */
432
+ createResult(riskLevel, blocked, risks) {
433
+ return {
434
+ success: true,
435
+ riskLevel,
436
+ blocked,
437
+ risks,
438
+ };
439
+ }
440
+ /**
441
+ * Manually analyze a command
442
+ */
443
+ async analyze(command) {
444
+ const context = {
445
+ event: HookEvent.PreCommand,
446
+ timestamp: new Date(),
447
+ command: { command },
448
+ };
449
+ return this.analyzeCommand(context);
450
+ }
451
+ /**
452
+ * Add a custom dangerous pattern
453
+ */
454
+ addDangerousPattern(pattern, type, severity, description, block = true) {
455
+ DANGEROUS_PATTERNS.push({ pattern, type, severity, description, block });
456
+ }
457
+ /**
458
+ * Mark a dependency as available
459
+ */
460
+ markDependencyAvailable(dependency) {
461
+ this.availableDependencies.add(dependency);
462
+ }
463
+ /**
464
+ * Check if a command would be blocked
465
+ */
466
+ wouldBlock(command) {
467
+ for (const pattern of DANGEROUS_PATTERNS) {
468
+ if (pattern.block && pattern.pattern.test(command)) {
469
+ return true;
470
+ }
471
+ }
472
+ return false;
473
+ }
474
+ }
475
+ /**
476
+ * Create bash safety hook
477
+ */
478
+ export function createBashSafetyHook(registry) {
479
+ return new BashSafetyHook(registry);
480
+ }
481
+ //# sourceMappingURL=bash-safety.js.map
@@ -0,0 +1,144 @@
1
+ /**
2
+ * V3 File Organization Hook
3
+ *
4
+ * TypeScript conversion of V2 file-hook.sh.
5
+ * Enforces file organization, blocks writes to root folder,
6
+ * suggests proper directories, and recommends formatters.
7
+ *
8
+ * @module v3/shared/hooks/safety/file-organization
9
+ */
10
+ import { HookContext, HookResult } from '../types.js';
11
+ import { HookRegistry } from '../registry.js';
12
+ /**
13
+ * File organization hook result
14
+ */
15
+ export interface FileOrganizationResult extends HookResult {
16
+ /** Whether the file operation should be blocked */
17
+ blocked: boolean;
18
+ /** Reason for blocking */
19
+ blockReason?: string;
20
+ /** Suggested new path */
21
+ suggestedPath?: string;
22
+ /** Suggested directory */
23
+ suggestedDirectory?: string;
24
+ /** Formatter recommendation */
25
+ formatter?: FormatterRecommendation;
26
+ /** Linter recommendation */
27
+ linter?: LinterRecommendation;
28
+ /** File type detected */
29
+ fileType?: string;
30
+ /** Warnings */
31
+ warnings?: string[];
32
+ /** Organization issues detected */
33
+ issues?: OrganizationIssue[];
34
+ }
35
+ /**
36
+ * Formatter recommendation
37
+ */
38
+ export interface FormatterRecommendation {
39
+ /** Formatter name */
40
+ name: string;
41
+ /** Command to run */
42
+ command: string;
43
+ /** Config file to check for */
44
+ configFile?: string;
45
+ /** Whether config exists */
46
+ configExists?: boolean;
47
+ }
48
+ /**
49
+ * Linter recommendation
50
+ */
51
+ export interface LinterRecommendation {
52
+ /** Linter name */
53
+ name: string;
54
+ /** Command to run */
55
+ command: string;
56
+ /** Config file to check for */
57
+ configFile?: string;
58
+ }
59
+ /**
60
+ * Organization issue
61
+ */
62
+ export interface OrganizationIssue {
63
+ /** Issue type */
64
+ type: 'wrong-directory' | 'naming-convention' | 'missing-config' | 'root-write';
65
+ /** Issue severity */
66
+ severity: 'info' | 'warning' | 'error';
67
+ /** Issue description */
68
+ description: string;
69
+ /** Suggested fix */
70
+ suggestedFix?: string;
71
+ }
72
+ /**
73
+ * File Organization Hook Manager
74
+ */
75
+ export declare class FileOrganizationHook {
76
+ private registry;
77
+ private projectRoot;
78
+ constructor(registry: HookRegistry);
79
+ /**
80
+ * Register file organization hooks
81
+ */
82
+ private registerHooks;
83
+ /**
84
+ * Analyze file operation for organization issues
85
+ */
86
+ analyzeFileOperation(context: HookContext): Promise<FileOrganizationResult>;
87
+ /**
88
+ * Check if directory is root
89
+ */
90
+ private isRootDirectory;
91
+ /**
92
+ * Normalize path for comparison
93
+ */
94
+ private normalizePath;
95
+ /**
96
+ * Get file type information
97
+ */
98
+ private getFileTypeInfo;
99
+ /**
100
+ * Check naming convention
101
+ */
102
+ private checkNamingConvention;
103
+ /**
104
+ * Get formatter recommendation
105
+ */
106
+ private getFormatterRecommendation;
107
+ /**
108
+ * Get linter recommendation
109
+ */
110
+ private getLinterRecommendation;
111
+ /**
112
+ * Create result object
113
+ */
114
+ private createResult;
115
+ /**
116
+ * Manually analyze a file path
117
+ */
118
+ analyze(filePath: string): Promise<FileOrganizationResult>;
119
+ /**
120
+ * Get suggested directory for a file
121
+ */
122
+ getSuggestedDirectory(fileName: string): string | null;
123
+ /**
124
+ * Check if a file path would be blocked
125
+ */
126
+ wouldBlock(filePath: string): boolean;
127
+ /**
128
+ * Set project root directory
129
+ */
130
+ setProjectRoot(root: string): void;
131
+ /**
132
+ * Get all formatter recommendations
133
+ */
134
+ getAllFormatters(): Record<string, FormatterRecommendation>;
135
+ /**
136
+ * Get all linter recommendations
137
+ */
138
+ getAllLinters(): Record<string, LinterRecommendation>;
139
+ }
140
+ /**
141
+ * Create file organization hook
142
+ */
143
+ export declare function createFileOrganizationHook(registry: HookRegistry): FileOrganizationHook;
144
+ //# sourceMappingURL=file-organization.d.ts.map