@defai.digital/ax-cli 3.8.6 → 3.8.7

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 (108) hide show
  1. package/.ax-cli/CUSTOM.md +97 -0
  2. package/.ax-cli/auto-accept-audit.json +1302 -0
  3. package/.ax-cli/index.json +43 -0
  4. package/.ax-cli/memory.json +55 -0
  5. package/.ax-cli/settings.json +12 -0
  6. package/ax.config.json +303 -0
  7. package/config-defaults/models.yaml +0 -24
  8. package/config-defaults/settings.yaml +13 -16
  9. package/dist/agent/dependency-resolver.js +22 -1
  10. package/dist/agent/dependency-resolver.js.map +1 -1
  11. package/dist/agent/llm-agent.d.ts +12 -0
  12. package/dist/agent/llm-agent.js +64 -29
  13. package/dist/agent/llm-agent.js.map +1 -1
  14. package/dist/agent/subagent.js +4 -0
  15. package/dist/agent/subagent.js.map +1 -1
  16. package/dist/analyzers/architecture/project-structure-scanner.js +6 -2
  17. package/dist/analyzers/architecture/project-structure-scanner.js.map +1 -1
  18. package/dist/checkpoint/manager.js +18 -4
  19. package/dist/checkpoint/manager.js.map +1 -1
  20. package/dist/checkpoint/storage.d.ts +6 -0
  21. package/dist/checkpoint/storage.js +90 -45
  22. package/dist/checkpoint/storage.js.map +1 -1
  23. package/dist/commands/mcp.js +14 -2
  24. package/dist/commands/mcp.js.map +1 -1
  25. package/dist/commands/setup.js +2 -2
  26. package/dist/commands/setup.js.map +1 -1
  27. package/dist/commands/status.js +36 -10
  28. package/dist/commands/status.js.map +1 -1
  29. package/dist/index.js +2 -2
  30. package/dist/index.js.map +1 -1
  31. package/dist/llm/client.d.ts +9 -0
  32. package/dist/llm/client.js +306 -45
  33. package/dist/llm/client.js.map +1 -1
  34. package/dist/llm/types.d.ts +1 -47
  35. package/dist/llm/types.js +0 -18
  36. package/dist/llm/types.js.map +1 -1
  37. package/dist/mcp/client-v2.d.ts +3 -0
  38. package/dist/mcp/client-v2.js +85 -19
  39. package/dist/mcp/client-v2.js.map +1 -1
  40. package/dist/mcp/health.js +1 -1
  41. package/dist/mcp/health.js.map +1 -1
  42. package/dist/planner/plan-storage.js +3 -2
  43. package/dist/planner/plan-storage.js.map +1 -1
  44. package/dist/planner/types.d.ts +6 -6
  45. package/dist/schemas/index.d.ts +2 -2
  46. package/dist/tools/bash.js +30 -6
  47. package/dist/tools/bash.js.map +1 -1
  48. package/dist/tools/search.js +12 -13
  49. package/dist/tools/search.js.map +1 -1
  50. package/dist/tools/text-editor.d.ts +46 -0
  51. package/dist/tools/text-editor.js +455 -11
  52. package/dist/tools/text-editor.js.map +1 -1
  53. package/dist/tools/todo-tool.js +2 -2
  54. package/dist/tools/todo-tool.js.map +1 -1
  55. package/dist/tools/web-search/cache.js +1 -1
  56. package/dist/tools/web-search/cache.js.map +1 -1
  57. package/dist/tools/web-search/engines/stackoverflow.d.ts +30 -0
  58. package/dist/tools/web-search/engines/stackoverflow.js +130 -0
  59. package/dist/tools/web-search/engines/stackoverflow.js.map +1 -0
  60. package/dist/tools/web-search/engines/wikipedia.d.ts +27 -0
  61. package/dist/tools/web-search/engines/wikipedia.js +112 -0
  62. package/dist/tools/web-search/engines/wikipedia.js.map +1 -0
  63. package/dist/tools/web-search/router.d.ts +2 -0
  64. package/dist/tools/web-search/router.js +29 -4
  65. package/dist/tools/web-search/router.js.map +1 -1
  66. package/dist/tools/web-search/web-search-tool.js +17 -1
  67. package/dist/tools/web-search/web-search-tool.js.map +1 -1
  68. package/dist/ui/components/chat-input.js +10 -1
  69. package/dist/ui/components/chat-input.js.map +1 -1
  70. package/dist/ui/components/chat-interface.js +1 -0
  71. package/dist/ui/components/chat-interface.js.map +1 -1
  72. package/dist/ui/hooks/use-input-history.js +20 -12
  73. package/dist/ui/hooks/use-input-history.js.map +1 -1
  74. package/dist/utils/api-error.d.ts +61 -0
  75. package/dist/utils/api-error.js +176 -0
  76. package/dist/utils/api-error.js.map +1 -0
  77. package/dist/utils/auto-accept-logger.js +3 -3
  78. package/dist/utils/auto-accept-logger.js.map +1 -1
  79. package/dist/utils/config-loader.js +27 -2
  80. package/dist/utils/config-loader.js.map +1 -1
  81. package/dist/utils/history-migration.js +5 -4
  82. package/dist/utils/history-migration.js.map +1 -1
  83. package/dist/utils/path-helpers.d.ts +8 -0
  84. package/dist/utils/path-helpers.js +34 -0
  85. package/dist/utils/path-helpers.js.map +1 -0
  86. package/dist/utils/retry-helper.d.ts +61 -0
  87. package/dist/utils/retry-helper.js +206 -0
  88. package/dist/utils/retry-helper.js.map +1 -0
  89. package/dist/utils/token-counter.d.ts +5 -0
  90. package/dist/utils/token-counter.js +17 -1
  91. package/dist/utils/token-counter.js.map +1 -1
  92. package/package.json +1 -1
  93. package/packages/schemas/dist/index.d.ts +14 -0
  94. package/packages/schemas/dist/index.d.ts.map +1 -0
  95. package/packages/schemas/dist/index.js +19 -0
  96. package/packages/schemas/dist/index.js.map +1 -0
  97. package/packages/schemas/dist/public/core/brand-types.d.ts +308 -0
  98. package/packages/schemas/dist/public/core/brand-types.d.ts.map +1 -0
  99. package/packages/schemas/dist/public/core/brand-types.js +243 -0
  100. package/packages/schemas/dist/public/core/brand-types.js.map +1 -0
  101. package/packages/schemas/dist/public/core/enums.d.ts +227 -0
  102. package/packages/schemas/dist/public/core/enums.d.ts.map +1 -0
  103. package/packages/schemas/dist/public/core/enums.js +222 -0
  104. package/packages/schemas/dist/public/core/enums.js.map +1 -0
  105. package/packages/schemas/dist/public/core/id-types.d.ts +286 -0
  106. package/packages/schemas/dist/public/core/id-types.d.ts.map +1 -0
  107. package/packages/schemas/dist/public/core/id-types.js +136 -0
  108. package/packages/schemas/dist/public/core/id-types.js.map +1 -0
@@ -0,0 +1,1302 @@
1
+ [
2
+ {
3
+ "operation": "bash",
4
+ "command": "command 0",
5
+ "details": "Executed bash command: command 0",
6
+ "destructive": false,
7
+ "matchedRules": [],
8
+ "ruleDetails": [],
9
+ "userConfirmed": false,
10
+ "autoAccepted": true,
11
+ "scope": "session",
12
+ "timestamp": "2025-11-24T14:52:43.849Z",
13
+ "sessionId": "session-1763995963849-3vjd26q"
14
+ },
15
+ {
16
+ "operation": "bash",
17
+ "command": "command 1",
18
+ "details": "Executed bash command: command 1",
19
+ "destructive": false,
20
+ "matchedRules": [],
21
+ "ruleDetails": [],
22
+ "userConfirmed": false,
23
+ "autoAccepted": true,
24
+ "scope": "session",
25
+ "timestamp": "2025-11-24T14:52:43.849Z",
26
+ "sessionId": "session-1763995963849-3vjd26q"
27
+ },
28
+ {
29
+ "operation": "bash",
30
+ "command": "command 2",
31
+ "details": "Executed bash command: command 2",
32
+ "destructive": false,
33
+ "matchedRules": [],
34
+ "ruleDetails": [],
35
+ "userConfirmed": false,
36
+ "autoAccepted": true,
37
+ "scope": "session",
38
+ "timestamp": "2025-11-24T14:52:43.849Z",
39
+ "sessionId": "session-1763995963849-3vjd26q"
40
+ },
41
+ {
42
+ "operation": "bash",
43
+ "command": "command 3",
44
+ "details": "Executed bash command: command 3",
45
+ "destructive": false,
46
+ "matchedRules": [],
47
+ "ruleDetails": [],
48
+ "userConfirmed": false,
49
+ "autoAccepted": true,
50
+ "scope": "session",
51
+ "timestamp": "2025-11-24T14:52:43.849Z",
52
+ "sessionId": "session-1763995963849-3vjd26q"
53
+ },
54
+ {
55
+ "operation": "bash",
56
+ "command": "command 4",
57
+ "details": "Executed bash command: command 4",
58
+ "destructive": false,
59
+ "matchedRules": [],
60
+ "ruleDetails": [],
61
+ "userConfirmed": false,
62
+ "autoAccepted": true,
63
+ "scope": "session",
64
+ "timestamp": "2025-11-24T14:52:43.849Z",
65
+ "sessionId": "session-1763995963849-3vjd26q"
66
+ },
67
+ {
68
+ "operation": "bash",
69
+ "command": "command 5",
70
+ "details": "Executed bash command: command 5",
71
+ "destructive": false,
72
+ "matchedRules": [],
73
+ "ruleDetails": [],
74
+ "userConfirmed": false,
75
+ "autoAccepted": true,
76
+ "scope": "session",
77
+ "timestamp": "2025-11-24T14:52:43.849Z",
78
+ "sessionId": "session-1763995963849-3vjd26q"
79
+ },
80
+ {
81
+ "operation": "bash",
82
+ "command": "command 6",
83
+ "details": "Executed bash command: command 6",
84
+ "destructive": false,
85
+ "matchedRules": [],
86
+ "ruleDetails": [],
87
+ "userConfirmed": false,
88
+ "autoAccepted": true,
89
+ "scope": "session",
90
+ "timestamp": "2025-11-24T14:52:43.849Z",
91
+ "sessionId": "session-1763995963849-3vjd26q"
92
+ },
93
+ {
94
+ "operation": "bash",
95
+ "command": "command 7",
96
+ "details": "Executed bash command: command 7",
97
+ "destructive": false,
98
+ "matchedRules": [],
99
+ "ruleDetails": [],
100
+ "userConfirmed": false,
101
+ "autoAccepted": true,
102
+ "scope": "session",
103
+ "timestamp": "2025-11-24T14:52:43.849Z",
104
+ "sessionId": "session-1763995963849-3vjd26q"
105
+ },
106
+ {
107
+ "operation": "bash",
108
+ "command": "command 8",
109
+ "details": "Executed bash command: command 8",
110
+ "destructive": false,
111
+ "matchedRules": [],
112
+ "ruleDetails": [],
113
+ "userConfirmed": false,
114
+ "autoAccepted": true,
115
+ "scope": "session",
116
+ "timestamp": "2025-11-24T14:52:43.849Z",
117
+ "sessionId": "session-1763995963849-3vjd26q"
118
+ },
119
+ {
120
+ "operation": "bash",
121
+ "command": "command 9",
122
+ "details": "Executed bash command: command 9",
123
+ "destructive": false,
124
+ "matchedRules": [],
125
+ "ruleDetails": [],
126
+ "userConfirmed": false,
127
+ "autoAccepted": true,
128
+ "scope": "session",
129
+ "timestamp": "2025-11-24T14:52:43.849Z",
130
+ "sessionId": "session-1763995963849-3vjd26q"
131
+ },
132
+ {
133
+ "operation": "bash",
134
+ "command": "command 10",
135
+ "details": "Executed bash command: command 10",
136
+ "destructive": false,
137
+ "matchedRules": [],
138
+ "ruleDetails": [],
139
+ "userConfirmed": false,
140
+ "autoAccepted": true,
141
+ "scope": "session",
142
+ "timestamp": "2025-11-24T14:52:43.849Z",
143
+ "sessionId": "session-1763995963849-3vjd26q"
144
+ },
145
+ {
146
+ "operation": "bash",
147
+ "command": "command 11",
148
+ "details": "Executed bash command: command 11",
149
+ "destructive": false,
150
+ "matchedRules": [],
151
+ "ruleDetails": [],
152
+ "userConfirmed": false,
153
+ "autoAccepted": true,
154
+ "scope": "session",
155
+ "timestamp": "2025-11-24T14:52:43.849Z",
156
+ "sessionId": "session-1763995963849-3vjd26q"
157
+ },
158
+ {
159
+ "operation": "bash",
160
+ "command": "command 12",
161
+ "details": "Executed bash command: command 12",
162
+ "destructive": false,
163
+ "matchedRules": [],
164
+ "ruleDetails": [],
165
+ "userConfirmed": false,
166
+ "autoAccepted": true,
167
+ "scope": "session",
168
+ "timestamp": "2025-11-24T14:52:43.849Z",
169
+ "sessionId": "session-1763995963849-3vjd26q"
170
+ },
171
+ {
172
+ "operation": "bash",
173
+ "command": "command 13",
174
+ "details": "Executed bash command: command 13",
175
+ "destructive": false,
176
+ "matchedRules": [],
177
+ "ruleDetails": [],
178
+ "userConfirmed": false,
179
+ "autoAccepted": true,
180
+ "scope": "session",
181
+ "timestamp": "2025-11-24T14:52:43.850Z",
182
+ "sessionId": "session-1763995963849-3vjd26q"
183
+ },
184
+ {
185
+ "operation": "bash",
186
+ "command": "command 14",
187
+ "details": "Executed bash command: command 14",
188
+ "destructive": false,
189
+ "matchedRules": [],
190
+ "ruleDetails": [],
191
+ "userConfirmed": false,
192
+ "autoAccepted": true,
193
+ "scope": "session",
194
+ "timestamp": "2025-11-24T14:52:43.850Z",
195
+ "sessionId": "session-1763995963849-3vjd26q"
196
+ },
197
+ {
198
+ "operation": "bash",
199
+ "command": "command 15",
200
+ "details": "Executed bash command: command 15",
201
+ "destructive": false,
202
+ "matchedRules": [],
203
+ "ruleDetails": [],
204
+ "userConfirmed": false,
205
+ "autoAccepted": true,
206
+ "scope": "session",
207
+ "timestamp": "2025-11-24T14:52:43.850Z",
208
+ "sessionId": "session-1763995963849-3vjd26q"
209
+ },
210
+ {
211
+ "operation": "bash",
212
+ "command": "command 16",
213
+ "details": "Executed bash command: command 16",
214
+ "destructive": false,
215
+ "matchedRules": [],
216
+ "ruleDetails": [],
217
+ "userConfirmed": false,
218
+ "autoAccepted": true,
219
+ "scope": "session",
220
+ "timestamp": "2025-11-24T14:52:43.850Z",
221
+ "sessionId": "session-1763995963849-3vjd26q"
222
+ },
223
+ {
224
+ "operation": "bash",
225
+ "command": "command 17",
226
+ "details": "Executed bash command: command 17",
227
+ "destructive": false,
228
+ "matchedRules": [],
229
+ "ruleDetails": [],
230
+ "userConfirmed": false,
231
+ "autoAccepted": true,
232
+ "scope": "session",
233
+ "timestamp": "2025-11-24T14:52:43.850Z",
234
+ "sessionId": "session-1763995963849-3vjd26q"
235
+ },
236
+ {
237
+ "operation": "bash",
238
+ "command": "command 18",
239
+ "details": "Executed bash command: command 18",
240
+ "destructive": false,
241
+ "matchedRules": [],
242
+ "ruleDetails": [],
243
+ "userConfirmed": false,
244
+ "autoAccepted": true,
245
+ "scope": "session",
246
+ "timestamp": "2025-11-24T14:52:43.850Z",
247
+ "sessionId": "session-1763995963849-3vjd26q"
248
+ },
249
+ {
250
+ "operation": "bash",
251
+ "command": "command 19",
252
+ "details": "Executed bash command: command 19",
253
+ "destructive": false,
254
+ "matchedRules": [],
255
+ "ruleDetails": [],
256
+ "userConfirmed": false,
257
+ "autoAccepted": true,
258
+ "scope": "session",
259
+ "timestamp": "2025-11-24T14:52:43.850Z",
260
+ "sessionId": "session-1763995963849-3vjd26q"
261
+ },
262
+ {
263
+ "operation": "bash",
264
+ "command": "command 20",
265
+ "details": "Executed bash command: command 20",
266
+ "destructive": false,
267
+ "matchedRules": [],
268
+ "ruleDetails": [],
269
+ "userConfirmed": false,
270
+ "autoAccepted": true,
271
+ "scope": "session",
272
+ "timestamp": "2025-11-24T14:52:43.850Z",
273
+ "sessionId": "session-1763995963849-3vjd26q"
274
+ },
275
+ {
276
+ "operation": "bash",
277
+ "command": "command 21",
278
+ "details": "Executed bash command: command 21",
279
+ "destructive": false,
280
+ "matchedRules": [],
281
+ "ruleDetails": [],
282
+ "userConfirmed": false,
283
+ "autoAccepted": true,
284
+ "scope": "session",
285
+ "timestamp": "2025-11-24T14:52:43.851Z",
286
+ "sessionId": "session-1763995963849-3vjd26q"
287
+ },
288
+ {
289
+ "operation": "bash",
290
+ "command": "command 22",
291
+ "details": "Executed bash command: command 22",
292
+ "destructive": false,
293
+ "matchedRules": [],
294
+ "ruleDetails": [],
295
+ "userConfirmed": false,
296
+ "autoAccepted": true,
297
+ "scope": "session",
298
+ "timestamp": "2025-11-24T14:52:43.851Z",
299
+ "sessionId": "session-1763995963849-3vjd26q"
300
+ },
301
+ {
302
+ "operation": "bash",
303
+ "command": "command 23",
304
+ "details": "Executed bash command: command 23",
305
+ "destructive": false,
306
+ "matchedRules": [],
307
+ "ruleDetails": [],
308
+ "userConfirmed": false,
309
+ "autoAccepted": true,
310
+ "scope": "session",
311
+ "timestamp": "2025-11-24T14:52:43.851Z",
312
+ "sessionId": "session-1763995963849-3vjd26q"
313
+ },
314
+ {
315
+ "operation": "bash",
316
+ "command": "command 24",
317
+ "details": "Executed bash command: command 24",
318
+ "destructive": false,
319
+ "matchedRules": [],
320
+ "ruleDetails": [],
321
+ "userConfirmed": false,
322
+ "autoAccepted": true,
323
+ "scope": "session",
324
+ "timestamp": "2025-11-24T14:52:43.851Z",
325
+ "sessionId": "session-1763995963849-3vjd26q"
326
+ },
327
+ {
328
+ "operation": "bash",
329
+ "command": "command 25",
330
+ "details": "Executed bash command: command 25",
331
+ "destructive": false,
332
+ "matchedRules": [],
333
+ "ruleDetails": [],
334
+ "userConfirmed": false,
335
+ "autoAccepted": true,
336
+ "scope": "session",
337
+ "timestamp": "2025-11-24T14:52:43.851Z",
338
+ "sessionId": "session-1763995963849-3vjd26q"
339
+ },
340
+ {
341
+ "operation": "bash",
342
+ "command": "command 26",
343
+ "details": "Executed bash command: command 26",
344
+ "destructive": false,
345
+ "matchedRules": [],
346
+ "ruleDetails": [],
347
+ "userConfirmed": false,
348
+ "autoAccepted": true,
349
+ "scope": "session",
350
+ "timestamp": "2025-11-24T14:52:43.851Z",
351
+ "sessionId": "session-1763995963849-3vjd26q"
352
+ },
353
+ {
354
+ "operation": "bash",
355
+ "command": "command 27",
356
+ "details": "Executed bash command: command 27",
357
+ "destructive": false,
358
+ "matchedRules": [],
359
+ "ruleDetails": [],
360
+ "userConfirmed": false,
361
+ "autoAccepted": true,
362
+ "scope": "session",
363
+ "timestamp": "2025-11-24T14:52:43.851Z",
364
+ "sessionId": "session-1763995963849-3vjd26q"
365
+ },
366
+ {
367
+ "operation": "bash",
368
+ "command": "command 28",
369
+ "details": "Executed bash command: command 28",
370
+ "destructive": false,
371
+ "matchedRules": [],
372
+ "ruleDetails": [],
373
+ "userConfirmed": false,
374
+ "autoAccepted": true,
375
+ "scope": "session",
376
+ "timestamp": "2025-11-24T14:52:43.851Z",
377
+ "sessionId": "session-1763995963849-3vjd26q"
378
+ },
379
+ {
380
+ "operation": "bash",
381
+ "command": "command 29",
382
+ "details": "Executed bash command: command 29",
383
+ "destructive": false,
384
+ "matchedRules": [],
385
+ "ruleDetails": [],
386
+ "userConfirmed": false,
387
+ "autoAccepted": true,
388
+ "scope": "session",
389
+ "timestamp": "2025-11-24T14:52:43.851Z",
390
+ "sessionId": "session-1763995963849-3vjd26q"
391
+ },
392
+ {
393
+ "operation": "bash",
394
+ "command": "command 30",
395
+ "details": "Executed bash command: command 30",
396
+ "destructive": false,
397
+ "matchedRules": [],
398
+ "ruleDetails": [],
399
+ "userConfirmed": false,
400
+ "autoAccepted": true,
401
+ "scope": "session",
402
+ "timestamp": "2025-11-24T14:52:43.851Z",
403
+ "sessionId": "session-1763995963849-3vjd26q"
404
+ },
405
+ {
406
+ "operation": "bash",
407
+ "command": "command 31",
408
+ "details": "Executed bash command: command 31",
409
+ "destructive": false,
410
+ "matchedRules": [],
411
+ "ruleDetails": [],
412
+ "userConfirmed": false,
413
+ "autoAccepted": true,
414
+ "scope": "session",
415
+ "timestamp": "2025-11-24T14:52:43.851Z",
416
+ "sessionId": "session-1763995963849-3vjd26q"
417
+ },
418
+ {
419
+ "operation": "bash",
420
+ "command": "command 32",
421
+ "details": "Executed bash command: command 32",
422
+ "destructive": false,
423
+ "matchedRules": [],
424
+ "ruleDetails": [],
425
+ "userConfirmed": false,
426
+ "autoAccepted": true,
427
+ "scope": "session",
428
+ "timestamp": "2025-11-24T14:52:43.851Z",
429
+ "sessionId": "session-1763995963849-3vjd26q"
430
+ },
431
+ {
432
+ "operation": "bash",
433
+ "command": "command 33",
434
+ "details": "Executed bash command: command 33",
435
+ "destructive": false,
436
+ "matchedRules": [],
437
+ "ruleDetails": [],
438
+ "userConfirmed": false,
439
+ "autoAccepted": true,
440
+ "scope": "session",
441
+ "timestamp": "2025-11-24T14:52:43.851Z",
442
+ "sessionId": "session-1763995963849-3vjd26q"
443
+ },
444
+ {
445
+ "operation": "bash",
446
+ "command": "command 34",
447
+ "details": "Executed bash command: command 34",
448
+ "destructive": false,
449
+ "matchedRules": [],
450
+ "ruleDetails": [],
451
+ "userConfirmed": false,
452
+ "autoAccepted": true,
453
+ "scope": "session",
454
+ "timestamp": "2025-11-24T14:52:43.852Z",
455
+ "sessionId": "session-1763995963849-3vjd26q"
456
+ },
457
+ {
458
+ "operation": "bash",
459
+ "command": "command 35",
460
+ "details": "Executed bash command: command 35",
461
+ "destructive": false,
462
+ "matchedRules": [],
463
+ "ruleDetails": [],
464
+ "userConfirmed": false,
465
+ "autoAccepted": true,
466
+ "scope": "session",
467
+ "timestamp": "2025-11-24T14:52:43.852Z",
468
+ "sessionId": "session-1763995963849-3vjd26q"
469
+ },
470
+ {
471
+ "operation": "bash",
472
+ "command": "command 36",
473
+ "details": "Executed bash command: command 36",
474
+ "destructive": false,
475
+ "matchedRules": [],
476
+ "ruleDetails": [],
477
+ "userConfirmed": false,
478
+ "autoAccepted": true,
479
+ "scope": "session",
480
+ "timestamp": "2025-11-24T14:52:43.852Z",
481
+ "sessionId": "session-1763995963849-3vjd26q"
482
+ },
483
+ {
484
+ "operation": "bash",
485
+ "command": "command 37",
486
+ "details": "Executed bash command: command 37",
487
+ "destructive": false,
488
+ "matchedRules": [],
489
+ "ruleDetails": [],
490
+ "userConfirmed": false,
491
+ "autoAccepted": true,
492
+ "scope": "session",
493
+ "timestamp": "2025-11-24T14:52:43.852Z",
494
+ "sessionId": "session-1763995963849-3vjd26q"
495
+ },
496
+ {
497
+ "operation": "bash",
498
+ "command": "command 38",
499
+ "details": "Executed bash command: command 38",
500
+ "destructive": false,
501
+ "matchedRules": [],
502
+ "ruleDetails": [],
503
+ "userConfirmed": false,
504
+ "autoAccepted": true,
505
+ "scope": "session",
506
+ "timestamp": "2025-11-24T14:52:43.852Z",
507
+ "sessionId": "session-1763995963849-3vjd26q"
508
+ },
509
+ {
510
+ "operation": "bash",
511
+ "command": "command 39",
512
+ "details": "Executed bash command: command 39",
513
+ "destructive": false,
514
+ "matchedRules": [],
515
+ "ruleDetails": [],
516
+ "userConfirmed": false,
517
+ "autoAccepted": true,
518
+ "scope": "session",
519
+ "timestamp": "2025-11-24T14:52:43.852Z",
520
+ "sessionId": "session-1763995963849-3vjd26q"
521
+ },
522
+ {
523
+ "operation": "bash",
524
+ "command": "command 40",
525
+ "details": "Executed bash command: command 40",
526
+ "destructive": false,
527
+ "matchedRules": [],
528
+ "ruleDetails": [],
529
+ "userConfirmed": false,
530
+ "autoAccepted": true,
531
+ "scope": "session",
532
+ "timestamp": "2025-11-24T14:52:43.852Z",
533
+ "sessionId": "session-1763995963849-3vjd26q"
534
+ },
535
+ {
536
+ "operation": "bash",
537
+ "command": "command 41",
538
+ "details": "Executed bash command: command 41",
539
+ "destructive": false,
540
+ "matchedRules": [],
541
+ "ruleDetails": [],
542
+ "userConfirmed": false,
543
+ "autoAccepted": true,
544
+ "scope": "session",
545
+ "timestamp": "2025-11-24T14:52:43.852Z",
546
+ "sessionId": "session-1763995963849-3vjd26q"
547
+ },
548
+ {
549
+ "operation": "bash",
550
+ "command": "command 42",
551
+ "details": "Executed bash command: command 42",
552
+ "destructive": false,
553
+ "matchedRules": [],
554
+ "ruleDetails": [],
555
+ "userConfirmed": false,
556
+ "autoAccepted": true,
557
+ "scope": "session",
558
+ "timestamp": "2025-11-24T14:52:43.852Z",
559
+ "sessionId": "session-1763995963849-3vjd26q"
560
+ },
561
+ {
562
+ "operation": "bash",
563
+ "command": "command 43",
564
+ "details": "Executed bash command: command 43",
565
+ "destructive": false,
566
+ "matchedRules": [],
567
+ "ruleDetails": [],
568
+ "userConfirmed": false,
569
+ "autoAccepted": true,
570
+ "scope": "session",
571
+ "timestamp": "2025-11-24T14:52:43.852Z",
572
+ "sessionId": "session-1763995963849-3vjd26q"
573
+ },
574
+ {
575
+ "operation": "bash",
576
+ "command": "command 44",
577
+ "details": "Executed bash command: command 44",
578
+ "destructive": false,
579
+ "matchedRules": [],
580
+ "ruleDetails": [],
581
+ "userConfirmed": false,
582
+ "autoAccepted": true,
583
+ "scope": "session",
584
+ "timestamp": "2025-11-24T14:52:43.852Z",
585
+ "sessionId": "session-1763995963849-3vjd26q"
586
+ },
587
+ {
588
+ "operation": "bash",
589
+ "command": "command 45",
590
+ "details": "Executed bash command: command 45",
591
+ "destructive": false,
592
+ "matchedRules": [],
593
+ "ruleDetails": [],
594
+ "userConfirmed": false,
595
+ "autoAccepted": true,
596
+ "scope": "session",
597
+ "timestamp": "2025-11-24T14:52:43.852Z",
598
+ "sessionId": "session-1763995963849-3vjd26q"
599
+ },
600
+ {
601
+ "operation": "bash",
602
+ "command": "command 46",
603
+ "details": "Executed bash command: command 46",
604
+ "destructive": false,
605
+ "matchedRules": [],
606
+ "ruleDetails": [],
607
+ "userConfirmed": false,
608
+ "autoAccepted": true,
609
+ "scope": "session",
610
+ "timestamp": "2025-11-24T14:52:43.852Z",
611
+ "sessionId": "session-1763995963849-3vjd26q"
612
+ },
613
+ {
614
+ "operation": "bash",
615
+ "command": "command 47",
616
+ "details": "Executed bash command: command 47",
617
+ "destructive": false,
618
+ "matchedRules": [],
619
+ "ruleDetails": [],
620
+ "userConfirmed": false,
621
+ "autoAccepted": true,
622
+ "scope": "session",
623
+ "timestamp": "2025-11-24T14:52:43.853Z",
624
+ "sessionId": "session-1763995963849-3vjd26q"
625
+ },
626
+ {
627
+ "operation": "bash",
628
+ "command": "command 48",
629
+ "details": "Executed bash command: command 48",
630
+ "destructive": false,
631
+ "matchedRules": [],
632
+ "ruleDetails": [],
633
+ "userConfirmed": false,
634
+ "autoAccepted": true,
635
+ "scope": "session",
636
+ "timestamp": "2025-11-24T14:52:43.853Z",
637
+ "sessionId": "session-1763995963849-3vjd26q"
638
+ },
639
+ {
640
+ "operation": "bash",
641
+ "command": "command 49",
642
+ "details": "Executed bash command: command 49",
643
+ "destructive": false,
644
+ "matchedRules": [],
645
+ "ruleDetails": [],
646
+ "userConfirmed": false,
647
+ "autoAccepted": true,
648
+ "scope": "session",
649
+ "timestamp": "2025-11-24T14:52:43.853Z",
650
+ "sessionId": "session-1763995963849-3vjd26q"
651
+ },
652
+ {
653
+ "operation": "bash",
654
+ "command": "command 50",
655
+ "details": "Executed bash command: command 50",
656
+ "destructive": false,
657
+ "matchedRules": [],
658
+ "ruleDetails": [],
659
+ "userConfirmed": false,
660
+ "autoAccepted": true,
661
+ "scope": "session",
662
+ "timestamp": "2025-11-24T14:52:43.853Z",
663
+ "sessionId": "session-1763995963849-3vjd26q"
664
+ },
665
+ {
666
+ "operation": "bash",
667
+ "command": "command 51",
668
+ "details": "Executed bash command: command 51",
669
+ "destructive": false,
670
+ "matchedRules": [],
671
+ "ruleDetails": [],
672
+ "userConfirmed": false,
673
+ "autoAccepted": true,
674
+ "scope": "session",
675
+ "timestamp": "2025-11-24T14:52:43.853Z",
676
+ "sessionId": "session-1763995963849-3vjd26q"
677
+ },
678
+ {
679
+ "operation": "bash",
680
+ "command": "command 52",
681
+ "details": "Executed bash command: command 52",
682
+ "destructive": false,
683
+ "matchedRules": [],
684
+ "ruleDetails": [],
685
+ "userConfirmed": false,
686
+ "autoAccepted": true,
687
+ "scope": "session",
688
+ "timestamp": "2025-11-24T14:52:43.853Z",
689
+ "sessionId": "session-1763995963849-3vjd26q"
690
+ },
691
+ {
692
+ "operation": "bash",
693
+ "command": "command 53",
694
+ "details": "Executed bash command: command 53",
695
+ "destructive": false,
696
+ "matchedRules": [],
697
+ "ruleDetails": [],
698
+ "userConfirmed": false,
699
+ "autoAccepted": true,
700
+ "scope": "session",
701
+ "timestamp": "2025-11-24T14:52:43.853Z",
702
+ "sessionId": "session-1763995963849-3vjd26q"
703
+ },
704
+ {
705
+ "operation": "bash",
706
+ "command": "command 54",
707
+ "details": "Executed bash command: command 54",
708
+ "destructive": false,
709
+ "matchedRules": [],
710
+ "ruleDetails": [],
711
+ "userConfirmed": false,
712
+ "autoAccepted": true,
713
+ "scope": "session",
714
+ "timestamp": "2025-11-24T14:52:43.853Z",
715
+ "sessionId": "session-1763995963849-3vjd26q"
716
+ },
717
+ {
718
+ "operation": "bash",
719
+ "command": "command 55",
720
+ "details": "Executed bash command: command 55",
721
+ "destructive": false,
722
+ "matchedRules": [],
723
+ "ruleDetails": [],
724
+ "userConfirmed": false,
725
+ "autoAccepted": true,
726
+ "scope": "session",
727
+ "timestamp": "2025-11-24T14:52:43.853Z",
728
+ "sessionId": "session-1763995963849-3vjd26q"
729
+ },
730
+ {
731
+ "operation": "bash",
732
+ "command": "command 56",
733
+ "details": "Executed bash command: command 56",
734
+ "destructive": false,
735
+ "matchedRules": [],
736
+ "ruleDetails": [],
737
+ "userConfirmed": false,
738
+ "autoAccepted": true,
739
+ "scope": "session",
740
+ "timestamp": "2025-11-24T14:52:43.853Z",
741
+ "sessionId": "session-1763995963849-3vjd26q"
742
+ },
743
+ {
744
+ "operation": "bash",
745
+ "command": "command 57",
746
+ "details": "Executed bash command: command 57",
747
+ "destructive": false,
748
+ "matchedRules": [],
749
+ "ruleDetails": [],
750
+ "userConfirmed": false,
751
+ "autoAccepted": true,
752
+ "scope": "session",
753
+ "timestamp": "2025-11-24T14:52:43.853Z",
754
+ "sessionId": "session-1763995963849-3vjd26q"
755
+ },
756
+ {
757
+ "operation": "bash",
758
+ "command": "command 58",
759
+ "details": "Executed bash command: command 58",
760
+ "destructive": false,
761
+ "matchedRules": [],
762
+ "ruleDetails": [],
763
+ "userConfirmed": false,
764
+ "autoAccepted": true,
765
+ "scope": "session",
766
+ "timestamp": "2025-11-24T14:52:43.854Z",
767
+ "sessionId": "session-1763995963849-3vjd26q"
768
+ },
769
+ {
770
+ "operation": "bash",
771
+ "command": "command 59",
772
+ "details": "Executed bash command: command 59",
773
+ "destructive": false,
774
+ "matchedRules": [],
775
+ "ruleDetails": [],
776
+ "userConfirmed": false,
777
+ "autoAccepted": true,
778
+ "scope": "session",
779
+ "timestamp": "2025-11-24T14:52:43.854Z",
780
+ "sessionId": "session-1763995963849-3vjd26q"
781
+ },
782
+ {
783
+ "operation": "bash",
784
+ "command": "command 60",
785
+ "details": "Executed bash command: command 60",
786
+ "destructive": false,
787
+ "matchedRules": [],
788
+ "ruleDetails": [],
789
+ "userConfirmed": false,
790
+ "autoAccepted": true,
791
+ "scope": "session",
792
+ "timestamp": "2025-11-24T14:52:43.854Z",
793
+ "sessionId": "session-1763995963849-3vjd26q"
794
+ },
795
+ {
796
+ "operation": "bash",
797
+ "command": "command 61",
798
+ "details": "Executed bash command: command 61",
799
+ "destructive": false,
800
+ "matchedRules": [],
801
+ "ruleDetails": [],
802
+ "userConfirmed": false,
803
+ "autoAccepted": true,
804
+ "scope": "session",
805
+ "timestamp": "2025-11-24T14:52:43.854Z",
806
+ "sessionId": "session-1763995963849-3vjd26q"
807
+ },
808
+ {
809
+ "operation": "bash",
810
+ "command": "command 62",
811
+ "details": "Executed bash command: command 62",
812
+ "destructive": false,
813
+ "matchedRules": [],
814
+ "ruleDetails": [],
815
+ "userConfirmed": false,
816
+ "autoAccepted": true,
817
+ "scope": "session",
818
+ "timestamp": "2025-11-24T14:52:43.854Z",
819
+ "sessionId": "session-1763995963849-3vjd26q"
820
+ },
821
+ {
822
+ "operation": "bash",
823
+ "command": "command 63",
824
+ "details": "Executed bash command: command 63",
825
+ "destructive": false,
826
+ "matchedRules": [],
827
+ "ruleDetails": [],
828
+ "userConfirmed": false,
829
+ "autoAccepted": true,
830
+ "scope": "session",
831
+ "timestamp": "2025-11-24T14:52:43.854Z",
832
+ "sessionId": "session-1763995963849-3vjd26q"
833
+ },
834
+ {
835
+ "operation": "bash",
836
+ "command": "command 64",
837
+ "details": "Executed bash command: command 64",
838
+ "destructive": false,
839
+ "matchedRules": [],
840
+ "ruleDetails": [],
841
+ "userConfirmed": false,
842
+ "autoAccepted": true,
843
+ "scope": "session",
844
+ "timestamp": "2025-11-24T14:52:43.854Z",
845
+ "sessionId": "session-1763995963849-3vjd26q"
846
+ },
847
+ {
848
+ "operation": "bash",
849
+ "command": "command 65",
850
+ "details": "Executed bash command: command 65",
851
+ "destructive": false,
852
+ "matchedRules": [],
853
+ "ruleDetails": [],
854
+ "userConfirmed": false,
855
+ "autoAccepted": true,
856
+ "scope": "session",
857
+ "timestamp": "2025-11-24T14:52:43.854Z",
858
+ "sessionId": "session-1763995963849-3vjd26q"
859
+ },
860
+ {
861
+ "operation": "bash",
862
+ "command": "command 66",
863
+ "details": "Executed bash command: command 66",
864
+ "destructive": false,
865
+ "matchedRules": [],
866
+ "ruleDetails": [],
867
+ "userConfirmed": false,
868
+ "autoAccepted": true,
869
+ "scope": "session",
870
+ "timestamp": "2025-11-24T14:52:43.854Z",
871
+ "sessionId": "session-1763995963849-3vjd26q"
872
+ },
873
+ {
874
+ "operation": "bash",
875
+ "command": "command 67",
876
+ "details": "Executed bash command: command 67",
877
+ "destructive": false,
878
+ "matchedRules": [],
879
+ "ruleDetails": [],
880
+ "userConfirmed": false,
881
+ "autoAccepted": true,
882
+ "scope": "session",
883
+ "timestamp": "2025-11-24T14:52:43.854Z",
884
+ "sessionId": "session-1763995963849-3vjd26q"
885
+ },
886
+ {
887
+ "operation": "bash",
888
+ "command": "command 68",
889
+ "details": "Executed bash command: command 68",
890
+ "destructive": false,
891
+ "matchedRules": [],
892
+ "ruleDetails": [],
893
+ "userConfirmed": false,
894
+ "autoAccepted": true,
895
+ "scope": "session",
896
+ "timestamp": "2025-11-24T14:52:43.854Z",
897
+ "sessionId": "session-1763995963849-3vjd26q"
898
+ },
899
+ {
900
+ "operation": "bash",
901
+ "command": "command 69",
902
+ "details": "Executed bash command: command 69",
903
+ "destructive": false,
904
+ "matchedRules": [],
905
+ "ruleDetails": [],
906
+ "userConfirmed": false,
907
+ "autoAccepted": true,
908
+ "scope": "session",
909
+ "timestamp": "2025-11-24T14:52:43.854Z",
910
+ "sessionId": "session-1763995963849-3vjd26q"
911
+ },
912
+ {
913
+ "operation": "bash",
914
+ "command": "command 70",
915
+ "details": "Executed bash command: command 70",
916
+ "destructive": false,
917
+ "matchedRules": [],
918
+ "ruleDetails": [],
919
+ "userConfirmed": false,
920
+ "autoAccepted": true,
921
+ "scope": "session",
922
+ "timestamp": "2025-11-24T14:52:43.855Z",
923
+ "sessionId": "session-1763995963849-3vjd26q"
924
+ },
925
+ {
926
+ "operation": "bash",
927
+ "command": "command 71",
928
+ "details": "Executed bash command: command 71",
929
+ "destructive": false,
930
+ "matchedRules": [],
931
+ "ruleDetails": [],
932
+ "userConfirmed": false,
933
+ "autoAccepted": true,
934
+ "scope": "session",
935
+ "timestamp": "2025-11-24T14:52:43.855Z",
936
+ "sessionId": "session-1763995963849-3vjd26q"
937
+ },
938
+ {
939
+ "operation": "bash",
940
+ "command": "command 72",
941
+ "details": "Executed bash command: command 72",
942
+ "destructive": false,
943
+ "matchedRules": [],
944
+ "ruleDetails": [],
945
+ "userConfirmed": false,
946
+ "autoAccepted": true,
947
+ "scope": "session",
948
+ "timestamp": "2025-11-24T14:52:43.855Z",
949
+ "sessionId": "session-1763995963849-3vjd26q"
950
+ },
951
+ {
952
+ "operation": "bash",
953
+ "command": "command 73",
954
+ "details": "Executed bash command: command 73",
955
+ "destructive": false,
956
+ "matchedRules": [],
957
+ "ruleDetails": [],
958
+ "userConfirmed": false,
959
+ "autoAccepted": true,
960
+ "scope": "session",
961
+ "timestamp": "2025-11-24T14:52:43.855Z",
962
+ "sessionId": "session-1763995963849-3vjd26q"
963
+ },
964
+ {
965
+ "operation": "bash",
966
+ "command": "command 74",
967
+ "details": "Executed bash command: command 74",
968
+ "destructive": false,
969
+ "matchedRules": [],
970
+ "ruleDetails": [],
971
+ "userConfirmed": false,
972
+ "autoAccepted": true,
973
+ "scope": "session",
974
+ "timestamp": "2025-11-24T14:52:43.855Z",
975
+ "sessionId": "session-1763995963849-3vjd26q"
976
+ },
977
+ {
978
+ "operation": "bash",
979
+ "command": "command 75",
980
+ "details": "Executed bash command: command 75",
981
+ "destructive": false,
982
+ "matchedRules": [],
983
+ "ruleDetails": [],
984
+ "userConfirmed": false,
985
+ "autoAccepted": true,
986
+ "scope": "session",
987
+ "timestamp": "2025-11-24T14:52:43.855Z",
988
+ "sessionId": "session-1763995963849-3vjd26q"
989
+ },
990
+ {
991
+ "operation": "bash",
992
+ "command": "command 76",
993
+ "details": "Executed bash command: command 76",
994
+ "destructive": false,
995
+ "matchedRules": [],
996
+ "ruleDetails": [],
997
+ "userConfirmed": false,
998
+ "autoAccepted": true,
999
+ "scope": "session",
1000
+ "timestamp": "2025-11-24T14:52:43.855Z",
1001
+ "sessionId": "session-1763995963849-3vjd26q"
1002
+ },
1003
+ {
1004
+ "operation": "bash",
1005
+ "command": "command 77",
1006
+ "details": "Executed bash command: command 77",
1007
+ "destructive": false,
1008
+ "matchedRules": [],
1009
+ "ruleDetails": [],
1010
+ "userConfirmed": false,
1011
+ "autoAccepted": true,
1012
+ "scope": "session",
1013
+ "timestamp": "2025-11-24T14:52:43.855Z",
1014
+ "sessionId": "session-1763995963849-3vjd26q"
1015
+ },
1016
+ {
1017
+ "operation": "bash",
1018
+ "command": "command 78",
1019
+ "details": "Executed bash command: command 78",
1020
+ "destructive": false,
1021
+ "matchedRules": [],
1022
+ "ruleDetails": [],
1023
+ "userConfirmed": false,
1024
+ "autoAccepted": true,
1025
+ "scope": "session",
1026
+ "timestamp": "2025-11-24T14:52:43.855Z",
1027
+ "sessionId": "session-1763995963849-3vjd26q"
1028
+ },
1029
+ {
1030
+ "operation": "bash",
1031
+ "command": "command 79",
1032
+ "details": "Executed bash command: command 79",
1033
+ "destructive": false,
1034
+ "matchedRules": [],
1035
+ "ruleDetails": [],
1036
+ "userConfirmed": false,
1037
+ "autoAccepted": true,
1038
+ "scope": "session",
1039
+ "timestamp": "2025-11-24T14:52:43.855Z",
1040
+ "sessionId": "session-1763995963849-3vjd26q"
1041
+ },
1042
+ {
1043
+ "operation": "bash",
1044
+ "command": "command 80",
1045
+ "details": "Executed bash command: command 80",
1046
+ "destructive": false,
1047
+ "matchedRules": [],
1048
+ "ruleDetails": [],
1049
+ "userConfirmed": false,
1050
+ "autoAccepted": true,
1051
+ "scope": "session",
1052
+ "timestamp": "2025-11-24T14:52:43.856Z",
1053
+ "sessionId": "session-1763995963849-3vjd26q"
1054
+ },
1055
+ {
1056
+ "operation": "bash",
1057
+ "command": "command 81",
1058
+ "details": "Executed bash command: command 81",
1059
+ "destructive": false,
1060
+ "matchedRules": [],
1061
+ "ruleDetails": [],
1062
+ "userConfirmed": false,
1063
+ "autoAccepted": true,
1064
+ "scope": "session",
1065
+ "timestamp": "2025-11-24T14:52:43.856Z",
1066
+ "sessionId": "session-1763995963849-3vjd26q"
1067
+ },
1068
+ {
1069
+ "operation": "bash",
1070
+ "command": "command 82",
1071
+ "details": "Executed bash command: command 82",
1072
+ "destructive": false,
1073
+ "matchedRules": [],
1074
+ "ruleDetails": [],
1075
+ "userConfirmed": false,
1076
+ "autoAccepted": true,
1077
+ "scope": "session",
1078
+ "timestamp": "2025-11-24T14:52:43.856Z",
1079
+ "sessionId": "session-1763995963849-3vjd26q"
1080
+ },
1081
+ {
1082
+ "operation": "bash",
1083
+ "command": "command 83",
1084
+ "details": "Executed bash command: command 83",
1085
+ "destructive": false,
1086
+ "matchedRules": [],
1087
+ "ruleDetails": [],
1088
+ "userConfirmed": false,
1089
+ "autoAccepted": true,
1090
+ "scope": "session",
1091
+ "timestamp": "2025-11-24T14:52:43.856Z",
1092
+ "sessionId": "session-1763995963849-3vjd26q"
1093
+ },
1094
+ {
1095
+ "operation": "bash",
1096
+ "command": "command 84",
1097
+ "details": "Executed bash command: command 84",
1098
+ "destructive": false,
1099
+ "matchedRules": [],
1100
+ "ruleDetails": [],
1101
+ "userConfirmed": false,
1102
+ "autoAccepted": true,
1103
+ "scope": "session",
1104
+ "timestamp": "2025-11-24T14:52:43.856Z",
1105
+ "sessionId": "session-1763995963849-3vjd26q"
1106
+ },
1107
+ {
1108
+ "operation": "bash",
1109
+ "command": "command 85",
1110
+ "details": "Executed bash command: command 85",
1111
+ "destructive": false,
1112
+ "matchedRules": [],
1113
+ "ruleDetails": [],
1114
+ "userConfirmed": false,
1115
+ "autoAccepted": true,
1116
+ "scope": "session",
1117
+ "timestamp": "2025-11-24T14:52:43.856Z",
1118
+ "sessionId": "session-1763995963849-3vjd26q"
1119
+ },
1120
+ {
1121
+ "operation": "bash",
1122
+ "command": "command 86",
1123
+ "details": "Executed bash command: command 86",
1124
+ "destructive": false,
1125
+ "matchedRules": [],
1126
+ "ruleDetails": [],
1127
+ "userConfirmed": false,
1128
+ "autoAccepted": true,
1129
+ "scope": "session",
1130
+ "timestamp": "2025-11-24T14:52:43.856Z",
1131
+ "sessionId": "session-1763995963849-3vjd26q"
1132
+ },
1133
+ {
1134
+ "operation": "bash",
1135
+ "command": "command 87",
1136
+ "details": "Executed bash command: command 87",
1137
+ "destructive": false,
1138
+ "matchedRules": [],
1139
+ "ruleDetails": [],
1140
+ "userConfirmed": false,
1141
+ "autoAccepted": true,
1142
+ "scope": "session",
1143
+ "timestamp": "2025-11-24T14:52:43.856Z",
1144
+ "sessionId": "session-1763995963849-3vjd26q"
1145
+ },
1146
+ {
1147
+ "operation": "bash",
1148
+ "command": "command 88",
1149
+ "details": "Executed bash command: command 88",
1150
+ "destructive": false,
1151
+ "matchedRules": [],
1152
+ "ruleDetails": [],
1153
+ "userConfirmed": false,
1154
+ "autoAccepted": true,
1155
+ "scope": "session",
1156
+ "timestamp": "2025-11-24T14:52:43.856Z",
1157
+ "sessionId": "session-1763995963849-3vjd26q"
1158
+ },
1159
+ {
1160
+ "operation": "bash",
1161
+ "command": "command 89",
1162
+ "details": "Executed bash command: command 89",
1163
+ "destructive": false,
1164
+ "matchedRules": [],
1165
+ "ruleDetails": [],
1166
+ "userConfirmed": false,
1167
+ "autoAccepted": true,
1168
+ "scope": "session",
1169
+ "timestamp": "2025-11-24T14:52:43.856Z",
1170
+ "sessionId": "session-1763995963849-3vjd26q"
1171
+ },
1172
+ {
1173
+ "operation": "bash",
1174
+ "command": "command 90",
1175
+ "details": "Executed bash command: command 90",
1176
+ "destructive": false,
1177
+ "matchedRules": [],
1178
+ "ruleDetails": [],
1179
+ "userConfirmed": false,
1180
+ "autoAccepted": true,
1181
+ "scope": "session",
1182
+ "timestamp": "2025-11-24T14:52:43.856Z",
1183
+ "sessionId": "session-1763995963849-3vjd26q"
1184
+ },
1185
+ {
1186
+ "operation": "bash",
1187
+ "command": "command 91",
1188
+ "details": "Executed bash command: command 91",
1189
+ "destructive": false,
1190
+ "matchedRules": [],
1191
+ "ruleDetails": [],
1192
+ "userConfirmed": false,
1193
+ "autoAccepted": true,
1194
+ "scope": "session",
1195
+ "timestamp": "2025-11-24T14:52:43.857Z",
1196
+ "sessionId": "session-1763995963849-3vjd26q"
1197
+ },
1198
+ {
1199
+ "operation": "bash",
1200
+ "command": "command 92",
1201
+ "details": "Executed bash command: command 92",
1202
+ "destructive": false,
1203
+ "matchedRules": [],
1204
+ "ruleDetails": [],
1205
+ "userConfirmed": false,
1206
+ "autoAccepted": true,
1207
+ "scope": "session",
1208
+ "timestamp": "2025-11-24T14:52:43.857Z",
1209
+ "sessionId": "session-1763995963849-3vjd26q"
1210
+ },
1211
+ {
1212
+ "operation": "bash",
1213
+ "command": "command 93",
1214
+ "details": "Executed bash command: command 93",
1215
+ "destructive": false,
1216
+ "matchedRules": [],
1217
+ "ruleDetails": [],
1218
+ "userConfirmed": false,
1219
+ "autoAccepted": true,
1220
+ "scope": "session",
1221
+ "timestamp": "2025-11-24T14:52:43.857Z",
1222
+ "sessionId": "session-1763995963849-3vjd26q"
1223
+ },
1224
+ {
1225
+ "operation": "bash",
1226
+ "command": "command 94",
1227
+ "details": "Executed bash command: command 94",
1228
+ "destructive": false,
1229
+ "matchedRules": [],
1230
+ "ruleDetails": [],
1231
+ "userConfirmed": false,
1232
+ "autoAccepted": true,
1233
+ "scope": "session",
1234
+ "timestamp": "2025-11-24T14:52:43.857Z",
1235
+ "sessionId": "session-1763995963849-3vjd26q"
1236
+ },
1237
+ {
1238
+ "operation": "bash",
1239
+ "command": "command 95",
1240
+ "details": "Executed bash command: command 95",
1241
+ "destructive": false,
1242
+ "matchedRules": [],
1243
+ "ruleDetails": [],
1244
+ "userConfirmed": false,
1245
+ "autoAccepted": true,
1246
+ "scope": "session",
1247
+ "timestamp": "2025-11-24T14:52:43.857Z",
1248
+ "sessionId": "session-1763995963849-3vjd26q"
1249
+ },
1250
+ {
1251
+ "operation": "bash",
1252
+ "command": "command 96",
1253
+ "details": "Executed bash command: command 96",
1254
+ "destructive": false,
1255
+ "matchedRules": [],
1256
+ "ruleDetails": [],
1257
+ "userConfirmed": false,
1258
+ "autoAccepted": true,
1259
+ "scope": "session",
1260
+ "timestamp": "2025-11-24T14:52:43.857Z",
1261
+ "sessionId": "session-1763995963849-3vjd26q"
1262
+ },
1263
+ {
1264
+ "operation": "bash",
1265
+ "command": "command 97",
1266
+ "details": "Executed bash command: command 97",
1267
+ "destructive": false,
1268
+ "matchedRules": [],
1269
+ "ruleDetails": [],
1270
+ "userConfirmed": false,
1271
+ "autoAccepted": true,
1272
+ "scope": "session",
1273
+ "timestamp": "2025-11-24T14:52:43.857Z",
1274
+ "sessionId": "session-1763995963849-3vjd26q"
1275
+ },
1276
+ {
1277
+ "operation": "bash",
1278
+ "command": "command 98",
1279
+ "details": "Executed bash command: command 98",
1280
+ "destructive": false,
1281
+ "matchedRules": [],
1282
+ "ruleDetails": [],
1283
+ "userConfirmed": false,
1284
+ "autoAccepted": true,
1285
+ "scope": "session",
1286
+ "timestamp": "2025-11-24T14:52:43.857Z",
1287
+ "sessionId": "session-1763995963849-3vjd26q"
1288
+ },
1289
+ {
1290
+ "operation": "bash",
1291
+ "command": "command 99",
1292
+ "details": "Executed bash command: command 99",
1293
+ "destructive": false,
1294
+ "matchedRules": [],
1295
+ "ruleDetails": [],
1296
+ "userConfirmed": false,
1297
+ "autoAccepted": true,
1298
+ "scope": "session",
1299
+ "timestamp": "2025-11-24T14:52:43.857Z",
1300
+ "sessionId": "session-1763995963849-3vjd26q"
1301
+ }
1302
+ ]