aios-core 2.2.2 → 3.0.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 (107) hide show
  1. package/.aios-core/.session/current-session.json +14 -14
  2. package/.aios-core/cli/commands/migrate/validate.js +1 -1
  3. package/.aios-core/core/docs/session-update-pattern.md +17 -10
  4. package/.aios-core/core/elicitation/elicitation-engine.js +11 -6
  5. package/.aios-core/core/elicitation/session-manager.js +2 -1
  6. package/.aios-core/core/registry/registry-schema.json +166 -166
  7. package/.aios-core/core/registry/service-registry.json +6585 -6585
  8. package/.aios-core/core-config.yaml +66 -1
  9. package/.aios-core/data/agent-config-requirements.yaml +5 -5
  10. package/.aios-core/development/agents/devops.md +12 -0
  11. package/.aios-core/development/scripts/squad/README.md +112 -0
  12. package/.aios-core/development/scripts/squad/index.js +41 -0
  13. package/.aios-core/development/scripts/squad/squad-loader.js +359 -0
  14. package/.aios-core/development/scripts/squad/squad-validator.js +685 -0
  15. package/.aios-core/development/tasks/add-mcp.md +11 -5
  16. package/.aios-core/development/tasks/github-devops-github-pr-automation.md +240 -3
  17. package/.aios-core/development/tasks/search-mcp.md +309 -0
  18. package/.aios-core/development/tasks/setup-mcp-docker.md +11 -8
  19. package/.aios-core/development/tasks/squad-creator-validate.md +151 -0
  20. package/.aios-core/docs/standards/AGENT-PERSONALIZATION-STANDARD-V1.md +3 -3
  21. package/.aios-core/index.d.ts +7 -7
  22. package/.aios-core/index.js +1 -1
  23. package/.aios-core/infrastructure/scripts/batch-creator.js +1 -1
  24. package/.aios-core/infrastructure/scripts/component-generator.js +1 -1
  25. package/.aios-core/infrastructure/templates/coderabbit.yaml.template +279 -279
  26. package/.aios-core/infrastructure/templates/core-config/core-config-greenfield.tmpl.yaml +41 -0
  27. package/.aios-core/infrastructure/templates/github-workflows/ci.yml.template +169 -169
  28. package/.aios-core/infrastructure/templates/github-workflows/pr-automation.yml.template +330 -330
  29. package/.aios-core/infrastructure/templates/github-workflows/release.yml.template +196 -196
  30. package/.aios-core/infrastructure/templates/gitignore/gitignore-aios-base.tmpl +63 -63
  31. package/.aios-core/infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl +18 -18
  32. package/.aios-core/infrastructure/templates/gitignore/gitignore-node.tmpl +85 -85
  33. package/.aios-core/infrastructure/templates/gitignore/gitignore-python.tmpl +145 -145
  34. package/.aios-core/infrastructure/tests/utilities-audit-results.json +500 -500
  35. package/.aios-core/infrastructure/tools/README.md +1 -1
  36. package/.aios-core/install-manifest.yaml +4 -1
  37. package/.aios-core/manifests/schema/manifest-schema.json +190 -190
  38. package/.aios-core/manifests/workers.csv +203 -203
  39. package/.aios-core/package.json +102 -102
  40. package/.aios-core/product/templates/activation-instructions-template.md +7 -7
  41. package/.aios-core/product/templates/adr.hbs +125 -125
  42. package/.aios-core/product/templates/component-react-tmpl.tsx +98 -98
  43. package/.aios-core/product/templates/dbdr.hbs +241 -241
  44. package/.aios-core/product/templates/engine/schemas/adr.schema.json +102 -102
  45. package/.aios-core/product/templates/engine/schemas/dbdr.schema.json +205 -205
  46. package/.aios-core/product/templates/engine/schemas/epic.schema.json +175 -175
  47. package/.aios-core/product/templates/engine/schemas/pmdr.schema.json +175 -175
  48. package/.aios-core/product/templates/engine/schemas/prd-v2.schema.json +300 -300
  49. package/.aios-core/product/templates/engine/schemas/prd.schema.json +152 -152
  50. package/.aios-core/product/templates/engine/schemas/story.schema.json +222 -222
  51. package/.aios-core/product/templates/engine/schemas/task.schema.json +154 -154
  52. package/.aios-core/product/templates/epic.hbs +212 -212
  53. package/.aios-core/product/templates/eslintrc-security.json +32 -32
  54. package/.aios-core/product/templates/github-actions-cd.yml +212 -212
  55. package/.aios-core/product/templates/github-actions-ci.yml +172 -172
  56. package/.aios-core/product/templates/pmdr.hbs +186 -186
  57. package/.aios-core/product/templates/prd-v2.0.hbs +216 -216
  58. package/.aios-core/product/templates/prd.hbs +201 -201
  59. package/.aios-core/product/templates/shock-report-tmpl.html +502 -502
  60. package/.aios-core/product/templates/story.hbs +263 -263
  61. package/.aios-core/product/templates/task.hbs +170 -170
  62. package/.aios-core/product/templates/tmpl-comment-on-examples.sql +158 -158
  63. package/.aios-core/product/templates/tmpl-migration-script.sql +91 -91
  64. package/.aios-core/product/templates/tmpl-rls-granular-policies.sql +104 -104
  65. package/.aios-core/product/templates/tmpl-rls-kiss-policy.sql +10 -10
  66. package/.aios-core/product/templates/tmpl-rls-roles.sql +135 -135
  67. package/.aios-core/product/templates/tmpl-rls-simple.sql +77 -77
  68. package/.aios-core/product/templates/tmpl-rls-tenant.sql +152 -152
  69. package/.aios-core/product/templates/tmpl-rollback-script.sql +77 -77
  70. package/.aios-core/product/templates/tmpl-seed-data.sql +140 -140
  71. package/.aios-core/product/templates/tmpl-smoke-test.sql +16 -16
  72. package/.aios-core/product/templates/tmpl-staging-copy-merge.sql +139 -139
  73. package/.aios-core/product/templates/tmpl-stored-proc.sql +140 -140
  74. package/.aios-core/product/templates/tmpl-trigger.sql +152 -152
  75. package/.aios-core/product/templates/tmpl-view-materialized.sql +133 -133
  76. package/.aios-core/product/templates/tmpl-view.sql +177 -177
  77. package/.aios-core/product/templates/token-exports-css-tmpl.css +240 -240
  78. package/.aios-core/quality/schemas/quality-metrics.schema.json +233 -233
  79. package/.aios-core/schemas/squad-schema.json +185 -0
  80. package/.aios-core/scripts/README.md +90 -322
  81. package/.aios-core/scripts/migrate-framework-docs.sh +300 -300
  82. package/.claude/rules/mcp-usage.md +116 -100
  83. package/LICENSE +48 -48
  84. package/README.md +3 -4
  85. package/bin/aios.js +2 -1
  86. package/package.json +1 -3
  87. package/packages/installer/package.json +39 -39
  88. package/templates/squad/LICENSE +21 -21
  89. package/templates/squad/README.md +37 -37
  90. package/templates/squad/agents/example-agent.yaml +36 -36
  91. package/templates/squad/package.json +19 -19
  92. package/templates/squad/squad.yaml +25 -25
  93. package/templates/squad/tasks/example-task.yaml +46 -46
  94. package/templates/squad/templates/example-template.md +24 -24
  95. package/templates/squad/tests/example-agent.test.js +53 -53
  96. package/templates/squad/workflows/example-workflow.yaml +54 -54
  97. package/tools/diagnose-npx-issue.ps1 +96 -96
  98. package/tools/quick-diagnose.cmd +85 -85
  99. package/tools/quick-diagnose.ps1 +117 -117
  100. package/.aios-core/core/data/agent-config-requirements.yaml +0 -368
  101. package/.aios-core/core/data/aios-kb.md +0 -924
  102. package/.aios-core/core/data/workflow-patterns.yaml +0 -267
  103. package/.aios-core/product/templates/1mcp-config.yaml +0 -225
  104. package/.aios-core/scripts/context-detector.js +0 -226
  105. package/.aios-core/scripts/elicitation-engine.js +0 -385
  106. package/.aios-core/scripts/elicitation-session-manager.js +0 -300
  107. package/.claude/CLAUDE.md +0 -221
@@ -1,501 +1,501 @@
1
- [
2
- {
3
- "name": "aios-validator.js",
4
- "status": "WORKING",
5
- "loadable": true,
6
- "exports": [
7
- "validate",
8
- "validateStoryFile",
9
- "runESLint",
10
- "runTypeScript",
11
- "validateYAML"
12
- ],
13
- "errors": [],
14
- "recommendation": "Functional - verify integration"
15
- },
16
- {
17
- "name": "approval-workflow.js",
18
- "status": "FIXABLE",
19
- "loadable": true,
20
- "exports": [],
21
- "errors": [],
22
- "recommendation": "Loads but exports nothing"
23
- },
24
- {
25
- "name": "atomic-layer-classifier.js",
26
- "status": "WORKING",
27
- "loadable": true,
28
- "exports": [
29
- "classifyTask",
30
- "processTaskFile"
31
- ],
32
- "errors": [],
33
- "recommendation": "Functional - verify integration"
34
- },
35
- {
36
- "name": "backup-manager.js",
37
- "status": "FIXABLE",
38
- "loadable": false,
39
- "exports": [],
40
- "errors": [
41
- "Cannot find module 'tar'\nRequire stack:\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\backup-manager.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\test-utilities-fast.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\index.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\tests\\validate-module.js"
42
- ],
43
- "recommendation": "Missing dependencies - installable"
44
- },
45
- {
46
- "name": "batch-creator.js",
47
- "status": "FIXABLE",
48
- "loadable": true,
49
- "exports": [],
50
- "errors": [],
51
- "recommendation": "Loads but exports nothing"
52
- },
53
- {
54
- "name": "branch-manager.js",
55
- "status": "FIXABLE",
56
- "loadable": true,
57
- "exports": [],
58
- "errors": [],
59
- "recommendation": "Loads but exports nothing"
60
- },
61
- {
62
- "name": "capability-analyzer.js",
63
- "status": "FIXABLE",
64
- "loadable": true,
65
- "exports": [],
66
- "errors": [],
67
- "recommendation": "Loads but exports nothing"
68
- },
69
- {
70
- "name": "clickup-helpers.js",
71
- "status": "WORKING",
72
- "loadable": true,
73
- "exports": [
74
- "updateStoryStatus",
75
- "updateEpicStatus",
76
- "updateTaskDescription",
77
- "addTaskComment",
78
- "verifyEpicExists"
79
- ],
80
- "errors": [],
81
- "recommendation": "Functional - verify integration"
82
- },
83
- {
84
- "name": "code-quality-improver.js",
85
- "status": "FIXABLE",
86
- "loadable": false,
87
- "exports": [],
88
- "errors": [
89
- "Cannot find module 'jscodeshift'\nRequire stack:\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\code-quality-improver.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\test-utilities-fast.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\index.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\tests\\validate-module.js"
90
- ],
91
- "recommendation": "Missing dependencies - installable"
92
- },
93
- {
94
- "name": "commit-message-generator.js",
95
- "status": "FIXABLE",
96
- "loadable": true,
97
- "exports": [],
98
- "errors": [],
99
- "recommendation": "Loads but exports nothing"
100
- },
101
- {
102
- "name": "component-generator.js",
103
- "status": "FIXABLE",
104
- "loadable": true,
105
- "exports": [],
106
- "errors": [],
107
- "recommendation": "Loads but exports nothing"
108
- },
109
- {
110
- "name": "component-metadata.js",
111
- "status": "FIXABLE",
112
- "loadable": true,
113
- "exports": [],
114
- "errors": [],
115
- "recommendation": "Loads but exports nothing"
116
- },
117
- {
118
- "name": "component-search.js",
119
- "status": "FIXABLE",
120
- "loadable": true,
121
- "exports": [],
122
- "errors": [],
123
- "recommendation": "Loads but exports nothing"
124
- },
125
- {
126
- "name": "config-cache.js",
127
- "status": "WORKING",
128
- "loadable": true,
129
- "exports": [
130
- "ConfigCache",
131
- "globalConfigCache"
132
- ],
133
- "errors": [],
134
- "recommendation": "Functional - verify integration"
135
- },
136
- {
137
- "name": "config-loader.js",
138
- "status": "WORKING",
139
- "loadable": true,
140
- "exports": [
141
- "loadAgentConfig",
142
- "loadConfigSections",
143
- "loadMinimalConfig",
144
- "loadFullConfig",
145
- "preloadConfig",
146
- "clearCache",
147
- "getPerformanceMetrics",
148
- "validateAgentConfig",
149
- "getConfigSection",
150
- "agentRequirements",
151
- "ALWAYS_LOADED"
152
- ],
153
- "errors": [],
154
- "recommendation": "Functional - verify integration"
155
- },
156
- {
157
- "name": "conflict-resolver.js",
158
- "status": "FIXABLE",
159
- "loadable": false,
160
- "exports": [],
161
- "errors": [
162
- "Cannot find module 'diff'\nRequire stack:\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\conflict-resolver.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\test-utilities-fast.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\index.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\tests\\validate-module.js"
163
- ],
164
- "recommendation": "Missing dependencies - installable"
165
- },
166
- {
167
- "name": "coverage-analyzer.js",
168
- "status": "FIXABLE",
169
- "loadable": true,
170
- "exports": [],
171
- "errors": [],
172
- "recommendation": "Loads but exports nothing"
173
- },
174
- {
175
- "name": "dependency-analyzer.js",
176
- "status": "FIXABLE",
177
- "loadable": true,
178
- "exports": [],
179
- "errors": [],
180
- "recommendation": "Loads but exports nothing"
181
- },
182
- {
183
- "name": "dependency-impact-analyzer.js",
184
- "status": "FIXABLE",
185
- "loadable": true,
186
- "exports": [],
187
- "errors": [],
188
- "recommendation": "Loads but exports nothing"
189
- },
190
- {
191
- "name": "diff-generator.js",
192
- "status": "FIXABLE",
193
- "loadable": true,
194
- "exports": [],
195
- "errors": [],
196
- "recommendation": "Loads but exports nothing"
197
- },
198
- {
199
- "name": "documentation-synchronizer.js",
200
- "status": "FIXABLE",
201
- "loadable": true,
202
- "exports": [],
203
- "errors": [],
204
- "recommendation": "Loads but exports nothing"
205
- },
206
- {
207
- "name": "framework-analyzer.js",
208
- "status": "FIXABLE",
209
- "loadable": true,
210
- "exports": [],
211
- "errors": [],
212
- "recommendation": "Loads but exports nothing"
213
- },
214
- {
215
- "name": "git-config-detector.js",
216
- "status": "FIXABLE",
217
- "loadable": true,
218
- "exports": [],
219
- "errors": [],
220
- "recommendation": "Loads but exports nothing"
221
- },
222
- {
223
- "name": "git-wrapper.js",
224
- "status": "FIXABLE",
225
- "loadable": true,
226
- "exports": [],
227
- "errors": [],
228
- "recommendation": "Loads but exports nothing"
229
- },
230
- {
231
- "name": "improvement-engine.js",
232
- "status": "FIXABLE",
233
- "loadable": true,
234
- "exports": [],
235
- "errors": [],
236
- "recommendation": "Loads but exports nothing"
237
- },
238
- {
239
- "name": "improvement-validator.js",
240
- "status": "FIXABLE",
241
- "loadable": false,
242
- "exports": [],
243
- "errors": [
244
- "Cannot find module './dependency-manager'\nRequire stack:\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\improvement-validator.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\test-utilities-fast.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\index.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\tests\\validate-module.js"
245
- ],
246
- "recommendation": "Missing dependencies - installable"
247
- },
248
- {
249
- "name": "modification-risk-assessment.js",
250
- "status": "FIXABLE",
251
- "loadable": true,
252
- "exports": [],
253
- "errors": [],
254
- "recommendation": "Loads but exports nothing"
255
- },
256
- {
257
- "name": "modification-validator.js",
258
- "status": "FIXABLE",
259
- "loadable": true,
260
- "exports": [],
261
- "errors": [],
262
- "recommendation": "Loads but exports nothing"
263
- },
264
- {
265
- "name": "output-formatter.js",
266
- "status": "FIXABLE",
267
- "loadable": true,
268
- "exports": [],
269
- "errors": [],
270
- "recommendation": "Loads but exports nothing"
271
- },
272
- {
273
- "name": "performance-analyzer.js",
274
- "status": "FIXABLE",
275
- "loadable": true,
276
- "exports": [],
277
- "errors": [],
278
- "recommendation": "Loads but exports nothing"
279
- },
280
- {
281
- "name": "performance-and-error-resolver.js",
282
- "status": "WORKING",
283
- "loadable": true,
284
- "exports": [
285
- "processTaskFile",
286
- "determineErrorStrategy"
287
- ],
288
- "errors": [],
289
- "recommendation": "Functional - verify integration"
290
- },
291
- {
292
- "name": "performance-optimizer.js",
293
- "status": "FIXABLE",
294
- "loadable": true,
295
- "exports": [],
296
- "errors": [],
297
- "recommendation": "Loads but exports nothing"
298
- },
299
- {
300
- "name": "performance-tracker.js",
301
- "status": "WORKING",
302
- "loadable": true,
303
- "exports": [
304
- "trackConfigLoad",
305
- "trackAgentActivation",
306
- "startSession",
307
- "endSession",
308
- "getStatistics",
309
- "generateReport",
310
- "savePerformanceData",
311
- "loadPerformanceData",
312
- "reset",
313
- "PERFORMANCE_TARGETS",
314
- "AGENT_PRIORITIES"
315
- ],
316
- "errors": [],
317
- "recommendation": "Functional - verify integration"
318
- },
319
- {
320
- "name": "pm-adapter-factory.js",
321
- "status": "WORKING",
322
- "loadable": true,
323
- "exports": [
324
- "getPMAdapter",
325
- "clearAdapterCache",
326
- "getPMToolType",
327
- "isPMToolConfigured"
328
- ],
329
- "errors": [],
330
- "recommendation": "Functional - verify integration"
331
- },
332
- {
333
- "name": "pm-adapter.js",
334
- "status": "WORKING",
335
- "loadable": true,
336
- "exports": [
337
- "PMAdapter"
338
- ],
339
- "errors": [],
340
- "recommendation": "Functional - verify integration"
341
- },
342
- {
343
- "name": "project-status-loader.js",
344
- "status": "WORKING",
345
- "loadable": true,
346
- "exports": [
347
- "loadProjectStatus",
348
- "clearCache",
349
- "formatStatusDisplay",
350
- "ProjectStatusLoader"
351
- ],
352
- "errors": [],
353
- "recommendation": "Functional - verify integration"
354
- },
355
- {
356
- "name": "refactoring-suggester.js",
357
- "status": "FIXABLE",
358
- "loadable": true,
359
- "exports": [],
360
- "errors": [],
361
- "recommendation": "Loads but exports nothing"
362
- },
363
- {
364
- "name": "repository-detector.js",
365
- "status": "WORKING",
366
- "loadable": true,
367
- "exports": [
368
- "detectRepositoryContext"
369
- ],
370
- "errors": [],
371
- "recommendation": "Functional - verify integration"
372
- },
373
- {
374
- "name": "sandbox-tester.js",
375
- "status": "FIXABLE",
376
- "loadable": false,
377
- "exports": [],
378
- "errors": [
379
- "Cannot find module 'tmp-promise'\nRequire stack:\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\sandbox-tester.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\test-utilities-fast.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\index.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\tests\\validate-module.js"
380
- ],
381
- "recommendation": "Missing dependencies - installable"
382
- },
383
- {
384
- "name": "security-checker.js",
385
- "status": "FIXABLE",
386
- "loadable": true,
387
- "exports": [],
388
- "errors": [],
389
- "recommendation": "Loads but exports nothing"
390
- },
391
- {
392
- "name": "spot-check-validator.js",
393
- "status": "WORKING",
394
- "loadable": true,
395
- "exports": [
396
- "validateTask"
397
- ],
398
- "errors": [],
399
- "recommendation": "Functional - verify integration"
400
- },
401
- {
402
- "name": "status-mapper.js",
403
- "status": "WORKING",
404
- "loadable": true,
405
- "exports": [
406
- "mapStatusToClickUp",
407
- "mapStatusFromClickUp",
408
- "isValidAIOSStatus",
409
- "isValidClickUpStatus",
410
- "getValidAIOSStatuses",
411
- "getValidClickUpStatuses",
412
- "STATUS_MAPPING"
413
- ],
414
- "errors": [],
415
- "recommendation": "Functional - verify integration"
416
- },
417
- {
418
- "name": "template-engine.js",
419
- "status": "FIXABLE",
420
- "loadable": true,
421
- "exports": [],
422
- "errors": [],
423
- "recommendation": "Loads but exports nothing"
424
- },
425
- {
426
- "name": "template-validator.js",
427
- "status": "FIXABLE",
428
- "loadable": true,
429
- "exports": [],
430
- "errors": [],
431
- "recommendation": "Loads but exports nothing"
432
- },
433
- {
434
- "name": "test-generator.js",
435
- "status": "FIXABLE",
436
- "loadable": true,
437
- "exports": [],
438
- "errors": [],
439
- "recommendation": "Loads but exports nothing"
440
- },
441
- {
442
- "name": "test-quality-assessment.js",
443
- "status": "FIXABLE",
444
- "loadable": true,
445
- "exports": [],
446
- "errors": [],
447
- "recommendation": "Loads but exports nothing"
448
- },
449
- {
450
- "name": "tool-resolver.js",
451
- "status": "WORKING",
452
- "loadable": true,
453
- "exports": [
454
- "cache",
455
- "basePaths",
456
- "resolveTool"
457
- ],
458
- "errors": [],
459
- "recommendation": "Functional - verify integration"
460
- },
461
- {
462
- "name": "transaction-manager.js",
463
- "status": "FIXABLE",
464
- "loadable": true,
465
- "exports": [],
466
- "errors": [],
467
- "recommendation": "Loads but exports nothing"
468
- },
469
- {
470
- "name": "usage-analytics.js",
471
- "status": "FIXABLE",
472
- "loadable": true,
473
- "exports": [],
474
- "errors": [],
475
- "recommendation": "Loads but exports nothing"
476
- },
477
- {
478
- "name": "validate-output-pattern.js",
479
- "status": "FIXABLE",
480
- "loadable": true,
481
- "exports": [],
482
- "errors": [],
483
- "recommendation": "Loads but exports nothing"
484
- },
485
- {
486
- "name": "visual-impact-generator.js",
487
- "status": "FIXABLE",
488
- "loadable": true,
489
- "exports": [],
490
- "errors": [],
491
- "recommendation": "Loads but exports nothing"
492
- },
493
- {
494
- "name": "yaml-validator.js",
495
- "status": "FIXABLE",
496
- "loadable": true,
497
- "exports": [],
498
- "errors": [],
499
- "recommendation": "Loads but exports nothing"
500
- }
1
+ [
2
+ {
3
+ "name": "aios-validator.js",
4
+ "status": "WORKING",
5
+ "loadable": true,
6
+ "exports": [
7
+ "validate",
8
+ "validateStoryFile",
9
+ "runESLint",
10
+ "runTypeScript",
11
+ "validateYAML"
12
+ ],
13
+ "errors": [],
14
+ "recommendation": "Functional - verify integration"
15
+ },
16
+ {
17
+ "name": "approval-workflow.js",
18
+ "status": "FIXABLE",
19
+ "loadable": true,
20
+ "exports": [],
21
+ "errors": [],
22
+ "recommendation": "Loads but exports nothing"
23
+ },
24
+ {
25
+ "name": "atomic-layer-classifier.js",
26
+ "status": "WORKING",
27
+ "loadable": true,
28
+ "exports": [
29
+ "classifyTask",
30
+ "processTaskFile"
31
+ ],
32
+ "errors": [],
33
+ "recommendation": "Functional - verify integration"
34
+ },
35
+ {
36
+ "name": "backup-manager.js",
37
+ "status": "FIXABLE",
38
+ "loadable": false,
39
+ "exports": [],
40
+ "errors": [
41
+ "Cannot find module 'tar'\nRequire stack:\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\backup-manager.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\test-utilities-fast.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\index.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\tests\\validate-module.js"
42
+ ],
43
+ "recommendation": "Missing dependencies - installable"
44
+ },
45
+ {
46
+ "name": "batch-creator.js",
47
+ "status": "FIXABLE",
48
+ "loadable": true,
49
+ "exports": [],
50
+ "errors": [],
51
+ "recommendation": "Loads but exports nothing"
52
+ },
53
+ {
54
+ "name": "branch-manager.js",
55
+ "status": "FIXABLE",
56
+ "loadable": true,
57
+ "exports": [],
58
+ "errors": [],
59
+ "recommendation": "Loads but exports nothing"
60
+ },
61
+ {
62
+ "name": "capability-analyzer.js",
63
+ "status": "FIXABLE",
64
+ "loadable": true,
65
+ "exports": [],
66
+ "errors": [],
67
+ "recommendation": "Loads but exports nothing"
68
+ },
69
+ {
70
+ "name": "clickup-helpers.js",
71
+ "status": "WORKING",
72
+ "loadable": true,
73
+ "exports": [
74
+ "updateStoryStatus",
75
+ "updateEpicStatus",
76
+ "updateTaskDescription",
77
+ "addTaskComment",
78
+ "verifyEpicExists"
79
+ ],
80
+ "errors": [],
81
+ "recommendation": "Functional - verify integration"
82
+ },
83
+ {
84
+ "name": "code-quality-improver.js",
85
+ "status": "FIXABLE",
86
+ "loadable": false,
87
+ "exports": [],
88
+ "errors": [
89
+ "Cannot find module 'jscodeshift'\nRequire stack:\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\code-quality-improver.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\test-utilities-fast.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\index.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\tests\\validate-module.js"
90
+ ],
91
+ "recommendation": "Missing dependencies - installable"
92
+ },
93
+ {
94
+ "name": "commit-message-generator.js",
95
+ "status": "FIXABLE",
96
+ "loadable": true,
97
+ "exports": [],
98
+ "errors": [],
99
+ "recommendation": "Loads but exports nothing"
100
+ },
101
+ {
102
+ "name": "component-generator.js",
103
+ "status": "FIXABLE",
104
+ "loadable": true,
105
+ "exports": [],
106
+ "errors": [],
107
+ "recommendation": "Loads but exports nothing"
108
+ },
109
+ {
110
+ "name": "component-metadata.js",
111
+ "status": "FIXABLE",
112
+ "loadable": true,
113
+ "exports": [],
114
+ "errors": [],
115
+ "recommendation": "Loads but exports nothing"
116
+ },
117
+ {
118
+ "name": "component-search.js",
119
+ "status": "FIXABLE",
120
+ "loadable": true,
121
+ "exports": [],
122
+ "errors": [],
123
+ "recommendation": "Loads but exports nothing"
124
+ },
125
+ {
126
+ "name": "config-cache.js",
127
+ "status": "WORKING",
128
+ "loadable": true,
129
+ "exports": [
130
+ "ConfigCache",
131
+ "globalConfigCache"
132
+ ],
133
+ "errors": [],
134
+ "recommendation": "Functional - verify integration"
135
+ },
136
+ {
137
+ "name": "config-loader.js",
138
+ "status": "WORKING",
139
+ "loadable": true,
140
+ "exports": [
141
+ "loadAgentConfig",
142
+ "loadConfigSections",
143
+ "loadMinimalConfig",
144
+ "loadFullConfig",
145
+ "preloadConfig",
146
+ "clearCache",
147
+ "getPerformanceMetrics",
148
+ "validateAgentConfig",
149
+ "getConfigSection",
150
+ "agentRequirements",
151
+ "ALWAYS_LOADED"
152
+ ],
153
+ "errors": [],
154
+ "recommendation": "Functional - verify integration"
155
+ },
156
+ {
157
+ "name": "conflict-resolver.js",
158
+ "status": "FIXABLE",
159
+ "loadable": false,
160
+ "exports": [],
161
+ "errors": [
162
+ "Cannot find module 'diff'\nRequire stack:\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\conflict-resolver.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\test-utilities-fast.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\index.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\tests\\validate-module.js"
163
+ ],
164
+ "recommendation": "Missing dependencies - installable"
165
+ },
166
+ {
167
+ "name": "coverage-analyzer.js",
168
+ "status": "FIXABLE",
169
+ "loadable": true,
170
+ "exports": [],
171
+ "errors": [],
172
+ "recommendation": "Loads but exports nothing"
173
+ },
174
+ {
175
+ "name": "dependency-analyzer.js",
176
+ "status": "FIXABLE",
177
+ "loadable": true,
178
+ "exports": [],
179
+ "errors": [],
180
+ "recommendation": "Loads but exports nothing"
181
+ },
182
+ {
183
+ "name": "dependency-impact-analyzer.js",
184
+ "status": "FIXABLE",
185
+ "loadable": true,
186
+ "exports": [],
187
+ "errors": [],
188
+ "recommendation": "Loads but exports nothing"
189
+ },
190
+ {
191
+ "name": "diff-generator.js",
192
+ "status": "FIXABLE",
193
+ "loadable": true,
194
+ "exports": [],
195
+ "errors": [],
196
+ "recommendation": "Loads but exports nothing"
197
+ },
198
+ {
199
+ "name": "documentation-synchronizer.js",
200
+ "status": "FIXABLE",
201
+ "loadable": true,
202
+ "exports": [],
203
+ "errors": [],
204
+ "recommendation": "Loads but exports nothing"
205
+ },
206
+ {
207
+ "name": "framework-analyzer.js",
208
+ "status": "FIXABLE",
209
+ "loadable": true,
210
+ "exports": [],
211
+ "errors": [],
212
+ "recommendation": "Loads but exports nothing"
213
+ },
214
+ {
215
+ "name": "git-config-detector.js",
216
+ "status": "FIXABLE",
217
+ "loadable": true,
218
+ "exports": [],
219
+ "errors": [],
220
+ "recommendation": "Loads but exports nothing"
221
+ },
222
+ {
223
+ "name": "git-wrapper.js",
224
+ "status": "FIXABLE",
225
+ "loadable": true,
226
+ "exports": [],
227
+ "errors": [],
228
+ "recommendation": "Loads but exports nothing"
229
+ },
230
+ {
231
+ "name": "improvement-engine.js",
232
+ "status": "FIXABLE",
233
+ "loadable": true,
234
+ "exports": [],
235
+ "errors": [],
236
+ "recommendation": "Loads but exports nothing"
237
+ },
238
+ {
239
+ "name": "improvement-validator.js",
240
+ "status": "FIXABLE",
241
+ "loadable": false,
242
+ "exports": [],
243
+ "errors": [
244
+ "Cannot find module './dependency-manager'\nRequire stack:\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\improvement-validator.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\test-utilities-fast.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\index.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\tests\\validate-module.js"
245
+ ],
246
+ "recommendation": "Missing dependencies - installable"
247
+ },
248
+ {
249
+ "name": "modification-risk-assessment.js",
250
+ "status": "FIXABLE",
251
+ "loadable": true,
252
+ "exports": [],
253
+ "errors": [],
254
+ "recommendation": "Loads but exports nothing"
255
+ },
256
+ {
257
+ "name": "modification-validator.js",
258
+ "status": "FIXABLE",
259
+ "loadable": true,
260
+ "exports": [],
261
+ "errors": [],
262
+ "recommendation": "Loads but exports nothing"
263
+ },
264
+ {
265
+ "name": "output-formatter.js",
266
+ "status": "FIXABLE",
267
+ "loadable": true,
268
+ "exports": [],
269
+ "errors": [],
270
+ "recommendation": "Loads but exports nothing"
271
+ },
272
+ {
273
+ "name": "performance-analyzer.js",
274
+ "status": "FIXABLE",
275
+ "loadable": true,
276
+ "exports": [],
277
+ "errors": [],
278
+ "recommendation": "Loads but exports nothing"
279
+ },
280
+ {
281
+ "name": "performance-and-error-resolver.js",
282
+ "status": "WORKING",
283
+ "loadable": true,
284
+ "exports": [
285
+ "processTaskFile",
286
+ "determineErrorStrategy"
287
+ ],
288
+ "errors": [],
289
+ "recommendation": "Functional - verify integration"
290
+ },
291
+ {
292
+ "name": "performance-optimizer.js",
293
+ "status": "FIXABLE",
294
+ "loadable": true,
295
+ "exports": [],
296
+ "errors": [],
297
+ "recommendation": "Loads but exports nothing"
298
+ },
299
+ {
300
+ "name": "performance-tracker.js",
301
+ "status": "WORKING",
302
+ "loadable": true,
303
+ "exports": [
304
+ "trackConfigLoad",
305
+ "trackAgentActivation",
306
+ "startSession",
307
+ "endSession",
308
+ "getStatistics",
309
+ "generateReport",
310
+ "savePerformanceData",
311
+ "loadPerformanceData",
312
+ "reset",
313
+ "PERFORMANCE_TARGETS",
314
+ "AGENT_PRIORITIES"
315
+ ],
316
+ "errors": [],
317
+ "recommendation": "Functional - verify integration"
318
+ },
319
+ {
320
+ "name": "pm-adapter-factory.js",
321
+ "status": "WORKING",
322
+ "loadable": true,
323
+ "exports": [
324
+ "getPMAdapter",
325
+ "clearAdapterCache",
326
+ "getPMToolType",
327
+ "isPMToolConfigured"
328
+ ],
329
+ "errors": [],
330
+ "recommendation": "Functional - verify integration"
331
+ },
332
+ {
333
+ "name": "pm-adapter.js",
334
+ "status": "WORKING",
335
+ "loadable": true,
336
+ "exports": [
337
+ "PMAdapter"
338
+ ],
339
+ "errors": [],
340
+ "recommendation": "Functional - verify integration"
341
+ },
342
+ {
343
+ "name": "project-status-loader.js",
344
+ "status": "WORKING",
345
+ "loadable": true,
346
+ "exports": [
347
+ "loadProjectStatus",
348
+ "clearCache",
349
+ "formatStatusDisplay",
350
+ "ProjectStatusLoader"
351
+ ],
352
+ "errors": [],
353
+ "recommendation": "Functional - verify integration"
354
+ },
355
+ {
356
+ "name": "refactoring-suggester.js",
357
+ "status": "FIXABLE",
358
+ "loadable": true,
359
+ "exports": [],
360
+ "errors": [],
361
+ "recommendation": "Loads but exports nothing"
362
+ },
363
+ {
364
+ "name": "repository-detector.js",
365
+ "status": "WORKING",
366
+ "loadable": true,
367
+ "exports": [
368
+ "detectRepositoryContext"
369
+ ],
370
+ "errors": [],
371
+ "recommendation": "Functional - verify integration"
372
+ },
373
+ {
374
+ "name": "sandbox-tester.js",
375
+ "status": "FIXABLE",
376
+ "loadable": false,
377
+ "exports": [],
378
+ "errors": [
379
+ "Cannot find module 'tmp-promise'\nRequire stack:\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\sandbox-tester.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\scripts\\test-utilities-fast.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\index.js\n- C:\\Users\\AllFluence-User\\Workspaces\\AIOS\\AIOS-V4\\aios-fullstack\\.aios-core\\infrastructure\\tests\\validate-module.js"
380
+ ],
381
+ "recommendation": "Missing dependencies - installable"
382
+ },
383
+ {
384
+ "name": "security-checker.js",
385
+ "status": "FIXABLE",
386
+ "loadable": true,
387
+ "exports": [],
388
+ "errors": [],
389
+ "recommendation": "Loads but exports nothing"
390
+ },
391
+ {
392
+ "name": "spot-check-validator.js",
393
+ "status": "WORKING",
394
+ "loadable": true,
395
+ "exports": [
396
+ "validateTask"
397
+ ],
398
+ "errors": [],
399
+ "recommendation": "Functional - verify integration"
400
+ },
401
+ {
402
+ "name": "status-mapper.js",
403
+ "status": "WORKING",
404
+ "loadable": true,
405
+ "exports": [
406
+ "mapStatusToClickUp",
407
+ "mapStatusFromClickUp",
408
+ "isValidAIOSStatus",
409
+ "isValidClickUpStatus",
410
+ "getValidAIOSStatuses",
411
+ "getValidClickUpStatuses",
412
+ "STATUS_MAPPING"
413
+ ],
414
+ "errors": [],
415
+ "recommendation": "Functional - verify integration"
416
+ },
417
+ {
418
+ "name": "template-engine.js",
419
+ "status": "FIXABLE",
420
+ "loadable": true,
421
+ "exports": [],
422
+ "errors": [],
423
+ "recommendation": "Loads but exports nothing"
424
+ },
425
+ {
426
+ "name": "template-validator.js",
427
+ "status": "FIXABLE",
428
+ "loadable": true,
429
+ "exports": [],
430
+ "errors": [],
431
+ "recommendation": "Loads but exports nothing"
432
+ },
433
+ {
434
+ "name": "test-generator.js",
435
+ "status": "FIXABLE",
436
+ "loadable": true,
437
+ "exports": [],
438
+ "errors": [],
439
+ "recommendation": "Loads but exports nothing"
440
+ },
441
+ {
442
+ "name": "test-quality-assessment.js",
443
+ "status": "FIXABLE",
444
+ "loadable": true,
445
+ "exports": [],
446
+ "errors": [],
447
+ "recommendation": "Loads but exports nothing"
448
+ },
449
+ {
450
+ "name": "tool-resolver.js",
451
+ "status": "WORKING",
452
+ "loadable": true,
453
+ "exports": [
454
+ "cache",
455
+ "basePaths",
456
+ "resolveTool"
457
+ ],
458
+ "errors": [],
459
+ "recommendation": "Functional - verify integration"
460
+ },
461
+ {
462
+ "name": "transaction-manager.js",
463
+ "status": "FIXABLE",
464
+ "loadable": true,
465
+ "exports": [],
466
+ "errors": [],
467
+ "recommendation": "Loads but exports nothing"
468
+ },
469
+ {
470
+ "name": "usage-analytics.js",
471
+ "status": "FIXABLE",
472
+ "loadable": true,
473
+ "exports": [],
474
+ "errors": [],
475
+ "recommendation": "Loads but exports nothing"
476
+ },
477
+ {
478
+ "name": "validate-output-pattern.js",
479
+ "status": "FIXABLE",
480
+ "loadable": true,
481
+ "exports": [],
482
+ "errors": [],
483
+ "recommendation": "Loads but exports nothing"
484
+ },
485
+ {
486
+ "name": "visual-impact-generator.js",
487
+ "status": "FIXABLE",
488
+ "loadable": true,
489
+ "exports": [],
490
+ "errors": [],
491
+ "recommendation": "Loads but exports nothing"
492
+ },
493
+ {
494
+ "name": "yaml-validator.js",
495
+ "status": "FIXABLE",
496
+ "loadable": true,
497
+ "exports": [],
498
+ "errors": [],
499
+ "recommendation": "Loads but exports nothing"
500
+ }
501
501
  ]