claude-flow-novice 2.2.4 → 2.2.5

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 (288) hide show
  1. package/package.json +9 -8
  2. package/scripts/.claude-flow/metrics/agent-metrics.json +1 -0
  3. package/scripts/.claude-flow/metrics/performance.json +9 -0
  4. package/scripts/.claude-flow/metrics/task-metrics.json +10 -0
  5. package/scripts/CLEANUP_OPTIMIZATION_REPORT.json +312 -0
  6. package/scripts/CLEANUP_PERFORMANCE_OPTIMIZATION.md +387 -0
  7. package/scripts/CLEANUP_QUICK_START.md +268 -0
  8. package/scripts/CLEANUP_TEST_RESULTS.md +205 -0
  9. package/scripts/README.md +339 -0
  10. package/scripts/ace-query.sh +384 -0
  11. package/scripts/agent-token-analysis.js +430 -0
  12. package/scripts/auto-setup.js +332 -0
  13. package/scripts/build/README.md +167 -0
  14. package/scripts/build/build-config.js +27 -0
  15. package/scripts/build/build-prompt-copier.sh +30 -0
  16. package/scripts/build/performance-monitor.js +869 -0
  17. package/scripts/build/prepare-publish.js +150 -0
  18. package/scripts/build/typescript-fixer.js +621 -0
  19. package/scripts/build/unified-builder.sh +428 -0
  20. package/scripts/build/update-bin-version.js +32 -0
  21. package/scripts/build/validate-agents.js +238 -0
  22. package/scripts/build-index.js +43 -0
  23. package/scripts/build-orchestrator.js +320 -0
  24. package/scripts/check-routing-stats.cjs +122 -0
  25. package/scripts/ci-validation.js +375 -0
  26. package/scripts/cleanup-blocking-coordination.sh +420 -0
  27. package/scripts/cleanup-idle-sessions.sh +59 -0
  28. package/scripts/collect-build-metrics.js +65 -0
  29. package/scripts/demo/README.md +79 -0
  30. package/scripts/demo/autoscaling-demo-simplified.js +963 -0
  31. package/scripts/demo/comprehensive-dashboard-test.js +693 -0
  32. package/scripts/demo/confidence-log.js +87 -0
  33. package/scripts/demo/confidence-report.js +82 -0
  34. package/scripts/demo/demo-multi-swarm-coordination.js +325 -0
  35. package/scripts/demo/demo-production-deployment.js +399 -0
  36. package/scripts/demo/demo-visualization-system.js +149 -0
  37. package/scripts/demo/performance-analysis.cjs +71 -0
  38. package/scripts/demo/performance-analysis.js +71 -0
  39. package/scripts/demo/test-autoscaling-demo.js +314 -0
  40. package/scripts/dependency-optimizer.js +349 -0
  41. package/scripts/dependency-security-assessment.js +331 -0
  42. package/scripts/deploy-sdk.sh +176 -0
  43. package/scripts/deployment-readiness-report.json +179 -0
  44. package/scripts/dev/README.md +264 -0
  45. package/scripts/dev/claude-flow-wrapper.sh +35 -0
  46. package/scripts/dev/claude-monitor.py +419 -0
  47. package/scripts/dev/claude-sparc.sh +562 -0
  48. package/scripts/dev/claude-wrapper.sh +17 -0
  49. package/scripts/dev/demo-phase3-compliance.js +172 -0
  50. package/scripts/dev/demo-task-system.ts +224 -0
  51. package/scripts/dev/deployment-validator.js +315 -0
  52. package/scripts/dev/spawn-claude-terminal.sh +32 -0
  53. package/scripts/dev/start-portal.sh +506 -0
  54. package/scripts/dev/start-web-ui.js +15 -0
  55. package/scripts/dev/stop-portal.sh +311 -0
  56. package/scripts/dev/validate-examples.ts +288 -0
  57. package/scripts/dev/validate-phase2.cjs +451 -0
  58. package/scripts/dev/validate-phase2.js +785 -0
  59. package/scripts/dev/validate-phase3.cjs +208 -0
  60. package/scripts/dev/validate-security-remediation.js +1 -0
  61. package/scripts/ecosystem.config.cjs +90 -0
  62. package/scripts/fix-js-extensions.js +167 -0
  63. package/scripts/generate-basic-types.js +73 -0
  64. package/scripts/generate-changelog.js +318 -0
  65. package/scripts/git-hooks/pre-commit.sh +143 -0
  66. package/scripts/health-checks.js +634 -0
  67. package/scripts/hook-wrapper.sh +54 -0
  68. package/scripts/install/README.md +375 -0
  69. package/scripts/install/REDIS_SETUP_VALIDATION.json +245 -0
  70. package/scripts/install/check-prerequisites.js +303 -0
  71. package/scripts/install/config-wizard.js +606 -0
  72. package/scripts/install/dependency-checker.js +385 -0
  73. package/scripts/install/health-check.js +765 -0
  74. package/scripts/install/install.js +256 -0
  75. package/scripts/install/installation-benchmark.js +461 -0
  76. package/scripts/install/quick-install.js +720 -0
  77. package/scripts/install/quick-start-wizard.js +295 -0
  78. package/scripts/install/redis-cli.js +289 -0
  79. package/scripts/install/redis-install-guides.md +407 -0
  80. package/scripts/install/redis-setup.js +559 -0
  81. package/scripts/install/redis-test.js +278 -0
  82. package/scripts/install/service-manager.js +672 -0
  83. package/scripts/install/setup.js +832 -0
  84. package/scripts/install/uninstall.js +526 -0
  85. package/scripts/install/update.js +461 -0
  86. package/scripts/install-pre-commit-hook.sh +127 -0
  87. package/scripts/legacy/README.md +272 -0
  88. package/scripts/legacy/batch-fix-ts.sh +54 -0
  89. package/scripts/legacy/build-migration.sh +105 -0
  90. package/scripts/legacy/build-monitor.js +209 -0
  91. package/scripts/legacy/build-with-filter.sh +84 -0
  92. package/scripts/legacy/build-workaround.sh +71 -0
  93. package/scripts/legacy/fix-ts-advanced.js +358 -0
  94. package/scripts/legacy/fix-ts-final.sh +50 -0
  95. package/scripts/legacy/fix-ts-targeted.sh +49 -0
  96. package/scripts/legacy/fix-typescript-errors.js +305 -0
  97. package/scripts/legacy/force-build.sh +63 -0
  98. package/scripts/legacy/optimize-performance.js +400 -0
  99. package/scripts/legacy/performance-monitor.js +263 -0
  100. package/scripts/legacy/performance-monitoring.js +532 -0
  101. package/scripts/legacy/performance-test-runner.js +645 -0
  102. package/scripts/legacy/quick-fix-ts.js +281 -0
  103. package/scripts/legacy/safe-build.sh +63 -0
  104. package/scripts/memory-monitor-coordinator.js +322 -0
  105. package/scripts/migrate-to-sdk.sh +520 -0
  106. package/scripts/migration/QUICK-START.md +189 -0
  107. package/scripts/migration/QUICK-START.md.backup-1760135091363 +189 -0
  108. package/scripts/migration/README.md +464 -0
  109. package/scripts/migration/TASK-1.3.2-COMPLETION-REPORT.md +500 -0
  110. package/scripts/migration/TASK-1.3.2-COMPLETION-REPORT.md.backup-1760135091348 +500 -0
  111. package/scripts/migration/UPDATE-PATHS-README.md +464 -0
  112. package/scripts/migration/UPDATE-PATHS-README.md.backup-1760135091337 +464 -0
  113. package/scripts/migration/example-patterns.json +19 -0
  114. package/scripts/migration/install-arm64.js +78 -0
  115. package/scripts/migration/install.js +83 -0
  116. package/scripts/migration/migrate-hooks.js +173 -0
  117. package/scripts/migration/migration-examples.ts +318 -0
  118. package/scripts/migration/reorganize-workspace.js +504 -0
  119. package/scripts/migration/test-update-paths.js +359 -0
  120. package/scripts/migration/update-paths.js +664 -0
  121. package/scripts/migration/validate-migration.js +647 -0
  122. package/scripts/monitor-loop.sh +65 -0
  123. package/scripts/monitor-memory.sh +47 -0
  124. package/scripts/monitor-migration.js +339 -0
  125. package/scripts/monitor.py +43 -0
  126. package/scripts/monitoring/README.md +178 -0
  127. package/scripts/monitoring/alert-monitor.sh +220 -0
  128. package/scripts/monitoring/analyze-resources.sh +199 -0
  129. package/scripts/monitoring/dashboards/rate-limiting-dashboard.json +211 -0
  130. package/scripts/monitoring/dynamic-monitor.sh +85 -0
  131. package/scripts/monitoring/launch-stability-test.sh +184 -0
  132. package/scripts/monitoring/monitor-test.sh +93 -0
  133. package/scripts/monitoring/pre-test-validation.sh +208 -0
  134. package/scripts/monitoring/quick-test-alerting.sh +118 -0
  135. package/scripts/monitoring/quick-test-rate-limiting.sh +206 -0
  136. package/scripts/monitoring/rate-limiting-monitor.sh +380 -0
  137. package/scripts/monitoring/resource-monitor.sh +126 -0
  138. package/scripts/monitoring/stability-monitor.js +429 -0
  139. package/scripts/monitoring/test-monitor-quick.sh +54 -0
  140. package/scripts/monitoring/view-alerts.sh +307 -0
  141. package/scripts/npm-metrics-collector.js +482 -0
  142. package/scripts/npm-package-validation.cjs +299 -0
  143. package/scripts/optimization/build-optimizer.js +438 -0
  144. package/scripts/optimization/config-validator.js +761 -0
  145. package/scripts/optimization/test-optimization.js +432 -0
  146. package/scripts/optimization/unified-activation.js +839 -0
  147. package/scripts/optimize-package-swarm.js +54 -0
  148. package/scripts/performance/ACTIVATION_COMMANDS.md +292 -0
  149. package/scripts/performance/sqlite-enhanced-activation.sh +583 -0
  150. package/scripts/performance/test-enhanced-backend.sh +504 -0
  151. package/scripts/performance-monitor.js +644 -0
  152. package/scripts/performance-test-runner.js +698 -0
  153. package/scripts/post-deployment-monitoring.js +350 -0
  154. package/scripts/post-edit-pipeline.js +2091 -0
  155. package/scripts/post-install-claude-md.js +78 -0
  156. package/scripts/postinstall.js +79 -0
  157. package/scripts/pre-publish-validation.cjs +212 -0
  158. package/scripts/pre-publish-validation.js +429 -0
  159. package/scripts/redis-lua/cleanup-blocking-coordination.lua +198 -0
  160. package/scripts/release-announcement.js +425 -0
  161. package/scripts/release-notification.js +248 -0
  162. package/scripts/release-rollback.js +376 -0
  163. package/scripts/release-validation.js +460 -0
  164. package/scripts/rollback-sdk.sh +66 -0
  165. package/scripts/run-production-validation.ts +590 -0
  166. package/scripts/run-stability-validation.sh +687 -0
  167. package/scripts/security/README.md +339 -0
  168. package/scripts/security/deployment-validation.cjs +279 -0
  169. package/scripts/security/envelope-encryption-confidence-report.cjs +422 -0
  170. package/scripts/security/install-git-hooks.sh +132 -0
  171. package/scripts/security/install-git-secrets.sh +295 -0
  172. package/scripts/security/rotate-api-keys.js +469 -0
  173. package/scripts/security/ruv-swarm-safe.js +74 -0
  174. package/scripts/security/security-audit.cjs +538 -0
  175. package/scripts/security/setup-redis-auth.sh +397 -0
  176. package/scripts/security/validate-envelope-encryption.cjs +340 -0
  177. package/scripts/security-scan.js +492 -0
  178. package/scripts/src/web/frontend/.claude-flow/metrics/agent-metrics.json +1 -0
  179. package/scripts/src/web/frontend/.claude-flow/metrics/performance.json +9 -0
  180. package/scripts/src/web/frontend/.claude-flow/metrics/task-metrics.json +10 -0
  181. package/scripts/switch-api.sh +158 -0
  182. package/scripts/sync-agents.js +290 -0
  183. package/scripts/test/50-agent-test.js +625 -0
  184. package/scripts/test/NEW_STABILITY_TEST_GUIDE.md +407 -0
  185. package/scripts/test/README.md +236 -0
  186. package/scripts/test/STABILITY_TEST_EXAMPLE.md +347 -0
  187. package/scripts/test/STABILITY_TEST_README.md +480 -0
  188. package/scripts/test/agent-worker.js +309 -0
  189. package/scripts/test/ai-coordination-test.js +650 -0
  190. package/scripts/test/ai-mesh-coordination-test.js +416 -0
  191. package/scripts/test/check-links.ts +274 -0
  192. package/scripts/test/check-performance-regression.ts +168 -0
  193. package/scripts/test/cli-agent-coordination-test.js +313 -0
  194. package/scripts/test/coordinator-multilingual-test.js +396 -0
  195. package/scripts/test/coordinator-transparency-demo.js +585 -0
  196. package/scripts/test/coverage-report.ts +692 -0
  197. package/scripts/test/generate-swarm-tests.js +633 -0
  198. package/scripts/test/integration-test-validation.cjs +253 -0
  199. package/scripts/test/load-test-swarm.js +576 -0
  200. package/scripts/test/mesh-coordination-zero-overlap-test.js +740 -0
  201. package/scripts/test/multilingual-hello-world-test.js +390 -0
  202. package/scripts/test/quick-multilingual-demo.js +464 -0
  203. package/scripts/test/real-agent-test.js +312 -0
  204. package/scripts/test/run-phase3-compliance-tests.js +427 -0
  205. package/scripts/test/run-stability-test-examples.sh +292 -0
  206. package/scripts/test/stability-results/stability-metrics.jsonl +83 -0
  207. package/scripts/test/stability-results/stability-test-report.json +128 -0
  208. package/scripts/test/stability-results/stability-test.log +1827 -0
  209. package/scripts/test/stability-test-50-agents.js +734 -0
  210. package/scripts/test/test-batch-tasks.ts +29 -0
  211. package/scripts/test/test-byzantine-resolution.js +246 -0
  212. package/scripts/test/test-claude-spawn-options.sh +63 -0
  213. package/scripts/test/test-cli-wizard.js +331 -0
  214. package/scripts/test/test-comprehensive.js +401 -0
  215. package/scripts/test/test-coordination-features.ts +238 -0
  216. package/scripts/test/test-fallback-systems.js +276 -0
  217. package/scripts/test/test-init-command.ts +302 -0
  218. package/scripts/test/test-mcp.ts +251 -0
  219. package/scripts/test/test-runner.ts +568 -0
  220. package/scripts/test/test-swarm-integration.sh +92 -0
  221. package/scripts/test/test-swarm.ts +142 -0
  222. package/scripts/test/validation-summary.ts +408 -0
  223. package/scripts/test-cleanup-performance.sh +416 -0
  224. package/scripts/test-dashboard-auth.cjs +203 -0
  225. package/scripts/test-docker-deployment.sh +207 -0
  226. package/scripts/test-npm-package.cjs +167 -0
  227. package/scripts/test-provider-routing.cjs +226 -0
  228. package/scripts/test-routing-telemetry.cjs +147 -0
  229. package/scripts/test-runner.cjs +154 -0
  230. package/scripts/test-zai-10k.cjs +81 -0
  231. package/scripts/test-zai-api.cjs +191 -0
  232. package/scripts/test-zai-diagnostic.cjs +151 -0
  233. package/scripts/test-zai-final.cjs +128 -0
  234. package/scripts/test-zai-with-env.cjs +85 -0
  235. package/scripts/utils/README.md +261 -0
  236. package/scripts/utils/clean-build-artifacts.sh +94 -0
  237. package/scripts/utils/cleanup-root.sh +69 -0
  238. package/scripts/utils/fix-cliffy-imports.js +307 -0
  239. package/scripts/utils/fix-duplicate-imports.js +114 -0
  240. package/scripts/utils/fix-error-handling.cjs +70 -0
  241. package/scripts/utils/fix-import-paths.js +104 -0
  242. package/scripts/utils/fix-imports.js +116 -0
  243. package/scripts/utils/fix-shebang.js +78 -0
  244. package/scripts/utils/fix-test-modules.js +27 -0
  245. package/scripts/utils/fix-timezone-issue-246.js +200 -0
  246. package/scripts/utils/fix-ts-comprehensive.py +182 -0
  247. package/scripts/utils/fix-ts-targeted-batch.js +250 -0
  248. package/scripts/utils/remove-benchmark-conflicts.sh +140 -0
  249. package/scripts/utils/simple-test-fixer.js +190 -0
  250. package/scripts/utils/validate-metrics-structure.cjs +144 -0
  251. package/scripts/validate-agent-hooks.js +506 -0
  252. package/scripts/validate-changelog.js +241 -0
  253. package/scripts/validate-coordination-cli.js +69 -0
  254. package/scripts/validate-coordination-toggle-integration.cjs +501 -0
  255. package/scripts/validate-docker-infrastructure.sh +502 -0
  256. package/scripts/validate-entry-points.js +300 -0
  257. package/scripts/validate-stage3-performance.ts +377 -0
  258. package/scripts/validate-template-bundling.js +180 -0
  259. package/scripts/validation/README.md +33 -0
  260. package/scripts/validation/acl-security-validation.cjs +214 -0
  261. package/scripts/validation/acl-security-validation.js +402 -0
  262. package/scripts/validation/byzantine-verification.js +407 -0
  263. package/scripts/validation/final-phase-2-consensus.cjs +219 -0
  264. package/scripts/validation/final-security-validation.js +791 -0
  265. package/scripts/validation/final-wasm-validation.cjs +840 -0
  266. package/scripts/validation/integration-test-analysis.js +105 -0
  267. package/scripts/validation/phase-0-comprehensive-validation.js +474 -0
  268. package/scripts/validation/phase-0-consensus-report.js +139 -0
  269. package/scripts/validation/phase-0-final-report.js +112 -0
  270. package/scripts/validation/phase-0-redis-consensus-report.js +129 -0
  271. package/scripts/validation/phase-0-validation-improved.js +490 -0
  272. package/scripts/validation/phase-0-validation-test.js +65 -0
  273. package/scripts/validation/phase-1-consensus-report.cjs +342 -0
  274. package/scripts/validation/phase-1-consensus-validation.cjs +551 -0
  275. package/scripts/validation/phase-1-consensus-validation.js +551 -0
  276. package/scripts/validation/phase-2-consensus-report.cjs +186 -0
  277. package/scripts/validation/phase-2-validation.cjs +171 -0
  278. package/scripts/validation/phase-2-validation.js +171 -0
  279. package/scripts/validation/phase-4-consensus-report.js +181 -0
  280. package/scripts/validation/phase-4-final-validation.js +351 -0
  281. package/scripts/validation/phase-5-consensus-report.cjs +113 -0
  282. package/scripts/validation/phase-5-consensus-report.js +113 -0
  283. package/scripts/validation/security-analysis.js +49 -0
  284. package/scripts/validation/security-validation.js +492 -0
  285. package/scripts/validation/simple-security-validation.js +464 -0
  286. package/scripts/verify-installation.js +112 -0
  287. package/scripts/verify-mcp-server.js +86 -0
  288. package/scripts/verify-sdk-phase1.cjs +293 -0
@@ -0,0 +1,416 @@
1
+ #!/usr/bin/env node
2
+
3
+ /**
4
+ * AI-Driven Mesh Coordination Test
5
+ *
6
+ * Real-world scenario using actual Claude Code CLI agents
7
+ * 7 AI coordinators in mesh topology with 70 language combinations
8
+ * Complete inter-agent communication logging
9
+ */
10
+
11
+ import { spawn } from 'child_process';
12
+ import fs from 'fs/promises';
13
+ import path from 'path';
14
+ import { fileURLToPath } from 'url';
15
+
16
+ const __filename = fileURLToPath(import.meta.url);
17
+ const __dirname = path.dirname(__filename);
18
+
19
+ class AIMeshCoordinator {
20
+ constructor() {
21
+ this.outputDir = path.join(__dirname, '../ai-mesh-results');
22
+ this.communicationLog = path.join(this.outputDir, 'ai-communications.log');
23
+ this.coordinators = new Map();
24
+ this.subAgents = new Map();
25
+ this.agentProcesses = new Map();
26
+ this.communicationCapture = new Map();
27
+
28
+ this.programmingLanguages = [
29
+ 'Python', 'JavaScript', 'Rust', 'Go', 'Java', 'C++', 'TypeScript'
30
+ ];
31
+
32
+ this.verbalLanguages = [
33
+ 'Spanish', 'French', 'German', 'Italian', 'Portuguese',
34
+ 'Japanese', 'Russian', 'Chinese', 'Arabic', 'Hindi'
35
+ ];
36
+ }
37
+
38
+ async start() {
39
+ console.log('🤖 Starting AI-Driven Mesh Coordination Test');
40
+ console.log(' Programming Languages: 7');
41
+ console.log(' Verbal Languages: 10');
42
+ console.log(' Target Combinations: 70 (7x10)');
43
+ console.log(' Method: REAL AI agents via Claude Code CLI\n');
44
+
45
+ await fs.mkdir(this.outputDir, { recursive: true });
46
+ await this.setupCommunicationCapture();
47
+
48
+ // Step 1: Spawn 7 AI coordinators
49
+ await this.spawnAICoordinators();
50
+
51
+ // Step 2: Monitor real coordination
52
+ await this.monitorAICoordination();
53
+
54
+ // Step 3: Collect and analyze results
55
+ await this.collectResults();
56
+ }
57
+
58
+ async setupCommunicationCapture() {
59
+ // Initialize communication logging
60
+ const logHeader = {
61
+ timestamp: Date.now(),
62
+ testType: 'AI_DRIVEN_MESH_COORDINATION',
63
+ config: {
64
+ coordinators: 7,
65
+ subAgentsPerCoordinator: 10,
66
+ totalSubAgents: 70,
67
+ programmingLanguages: this.programmingLanguages.length,
68
+ verbalLanguages: this.verbalLanguages.length
69
+ }
70
+ };
71
+
72
+ await fs.appendFile(this.communicationLog, JSON.stringify(logHeader) + '\n');
73
+ console.log('📝 Communication logging initialized');
74
+ }
75
+
76
+ async spawnAICoordinators() {
77
+ console.log('🚀 Step 1: Spawning 7 AI Coordinators');
78
+
79
+ for (let i = 1; i <= 7; i++) {
80
+ const coordinatorId = `ai-coordinator-${i}`;
81
+
82
+ // Prepare coordinator instructions
83
+ const instructions = this.generateCoordinatorInstructions(i);
84
+
85
+ // Spawn AI coordinator using Claude Code CLI
86
+ const aiCoordinator = await this.spawnAIAgent(coordinatorId, instructions);
87
+
88
+ this.coordinators.set(coordinatorId, {
89
+ id: coordinatorId,
90
+ process: aiCoordinator,
91
+ status: 'active',
92
+ assignedLanguage: null,
93
+ subAgents: []
94
+ });
95
+
96
+ console.log(` ✅ ${coordinatorId} spawned as AI agent`);
97
+
98
+ // Small delay between spawns
99
+ await new Promise(resolve => setTimeout(resolve, 2000));
100
+ }
101
+
102
+ console.log('✅ All 7 AI coordinators spawned\n');
103
+ }
104
+
105
+ generateCoordinatorInstructions(coordinatorNumber) {
106
+ return `
107
+ You are AI Coordinator ${coordinatorNumber} in a 7-coordinator mesh system.
108
+
109
+ YOUR MISSION:
110
+ - Coordinate with 6 other AI coordinators to cover 70 unique language combinations
111
+ - Choose ONE programming language from: ${this.programmingLanguages.join(', ')}
112
+ - Communicate with other coordinators to avoid conflicts
113
+ - Once assigned a language, create 10 Hello World functions in 10 different verbal languages
114
+
115
+ VERBAL LANGUAGES TO ASSIGN: ${this.verbalLanguages.join(', ')}
116
+
117
+ COORDINATION PROTOCOL:
118
+ 1. Start by proposing your preferred programming language
119
+ 2. Listen to other coordinators' proposals
120
+ 3. If conflicts arise, negotiate and resolve through discussion
121
+ 4. Once consensus is reached, implement your 10 language combinations
122
+
123
+ COMMUNICATION REQUIREMENTS:
124
+ - All messages must be logged to /dev/shm/ai-coordinator-${coordinatorNumber}-messages.log
125
+ - Include your reasoning for language selection
126
+ - Document all conflict resolution discussions
127
+ - Report final assignments clearly
128
+
129
+ FILE OUTPUT:
130
+ - Create Hello World files in ./ai-mesh-results/
131
+ - Use naming: hello_world_[verbal]_[programming].extension
132
+ - Example: hello_world_spanish_python.py
133
+
134
+ WORK autonomously but coordinate with other AI coordinators to achieve ZERO OVERLAP across all 70 combinations.
135
+ `;
136
+ }
137
+
138
+ async spawnAIAgent(agentId, instructions) {
139
+ const messageFile = `/dev/shm/${agentId}-instructions.txt`;
140
+ await fs.writeFile(messageFile, instructions);
141
+
142
+ // Use Claude Code CLI to spawn actual AI agent
143
+ const agentProcess = spawn('claude', [
144
+ 'flow-novice', 'swarm', 'spawn',
145
+ '--agent-type', 'coordinator',
146
+ '--name', agentId,
147
+ '--instructions', messageFile
148
+ ], {
149
+ stdio: ['pipe', 'pipe', 'pipe'],
150
+ detached: true
151
+ });
152
+
153
+ // Set up communication capture
154
+ await this.setupAgentCommunicationCapture(agentId, agentProcess);
155
+
156
+ this.agentProcesses.set(agentId, agentProcess);
157
+
158
+ return agentProcess;
159
+ }
160
+
161
+ async setupAgentCommunicationCapture(agentId, process) {
162
+ const commFile = `/dev/shm/${agentId}-messages.log`;
163
+
164
+ // Capture stdout
165
+ process.stdout.on('data', async (data) => {
166
+ const message = {
167
+ timestamp: Date.now(),
168
+ agentId: agentId,
169
+ type: 'STDOUT',
170
+ content: data.toString().trim()
171
+ };
172
+
173
+ await this.logCommunication(message);
174
+ await fs.appendFile(commFile, JSON.stringify(message) + '\n');
175
+ });
176
+
177
+ // Capture stderr
178
+ process.stderr.on('data', async (data) => {
179
+ const message = {
180
+ timestamp: Date.now(),
181
+ agentId: agentId,
182
+ type: 'STDERR',
183
+ content: data.toString().trim()
184
+ };
185
+
186
+ await this.logCommunication(message);
187
+ await fs.appendFile(commFile, JSON.stringify(message) + '\n');
188
+ });
189
+
190
+ // Log process events
191
+ process.on('close', async (code) => {
192
+ const message = {
193
+ timestamp: Date.now(),
194
+ agentId: agentId,
195
+ type: 'PROCESS_CLOSE',
196
+ content: `Process closed with code: ${code}`
197
+ };
198
+
199
+ await this.logCommunication(message);
200
+ await fs.appendFile(commFile, JSON.stringify(message) + '\n');
201
+ });
202
+ }
203
+
204
+ async logCommunication(message) {
205
+ // Central logging for all inter-agent communications
206
+ const logEntry = {
207
+ timestamp: message.timestamp,
208
+ agentId: message.agentId,
209
+ type: message.type,
210
+ content: message.content,
211
+ globalTimestamp: Date.now()
212
+ };
213
+
214
+ await fs.appendFile(this.communicationLog, JSON.stringify(logEntry) + '\n');
215
+
216
+ // Also track per-agent communication patterns
217
+ if (!this.communicationCapture.has(message.agentId)) {
218
+ this.communicationCapture.set(message.agentId, []);
219
+ }
220
+ this.communicationCapture.get(message.agentId).push(logEntry);
221
+
222
+ // Real-time monitoring output
223
+ console.log(`[${message.agentId}] ${message.type}: ${message.content.substring(0, 100)}...`);
224
+ }
225
+
226
+ async monitorAICoordination() {
227
+ console.log('📡 Step 2: Monitoring AI Coordinator Inter-Communication');
228
+ console.log(' AI agents will now coordinate autonomously...\n');
229
+
230
+ // Let AI coordinators work for specified time
231
+ const monitoringDuration = 5 * 60 * 1000; // 5 minutes
232
+ const startTime = Date.now();
233
+
234
+ while (Date.now() - startTime < monitoringDuration) {
235
+ await new Promise(resolve => setTimeout(resolve, 30000)); // Check every 30 seconds
236
+
237
+ // Check agent status
238
+ const activeAgents = Array.from(this.coordinators.values()).filter(c => c.status === 'active').length;
239
+ console.log(` 📊 Active AI coordinators: ${activeAgents}/7`);
240
+
241
+ // Look for coordination evidence
242
+ await this.analyzeCoordinationProgress();
243
+ }
244
+
245
+ console.log('⏰ AI coordination period ended\n');
246
+ }
247
+
248
+ async analyzeCoordinationProgress() {
249
+ // Look for evidence of coordination in communication logs
250
+ try {
251
+ const logContent = await fs.readFile(this.communicationLog, 'utf8');
252
+ const messages = logContent.split('\n').filter(line => line.trim()).map(line => JSON.parse(line));
253
+
254
+ const agentMessages = new Map();
255
+ messages.forEach(msg => {
256
+ if (!agentMessages.has(msg.agentId)) {
257
+ agentMessages.set(msg.agentId, 0);
258
+ }
259
+ agentMessages.set(msg.agentId, agentMessages.get(msg.agentId) + 1);
260
+ });
261
+
262
+ console.log(' 📈 Message activity by agent:');
263
+ agentMessages.forEach((count, agentId) => {
264
+ console.log(` ${agentId}: ${count} messages`);
265
+ });
266
+
267
+ } catch (error) {
268
+ console.log(' ⚠️ Could not analyze coordination progress');
269
+ }
270
+ }
271
+
272
+ async collectResults() {
273
+ console.log('📋 Step 3: Collecting AI Coordination Results');
274
+
275
+ // Check for generated files
276
+ const generatedFiles = await this.scanGeneratedFiles();
277
+
278
+ // Analyze communication patterns
279
+ const communicationAnalysis = await this.analyzeCommunications();
280
+
281
+ // Generate final report
282
+ const results = {
283
+ timestamp: Date.now(),
284
+ testType: 'AI_DRIVEN_MESH_COORDINATION',
285
+ results: {
286
+ generatedFiles: generatedFiles,
287
+ communicationAnalysis: communicationAnalysis,
288
+ agentStatus: this.getAgentStatus()
289
+ }
290
+ };
291
+
292
+ const resultsFile = path.join(this.outputDir, `ai-results-${Date.now()}.json`);
293
+ await fs.writeFile(resultsFile, JSON.stringify(results, null, 2));
294
+
295
+ console.log(`📁 Results saved to: ${resultsFile}`);
296
+ console.log('📊 Communication analysis saved to: ai-communications.log');
297
+
298
+ // Cleanup
299
+ await this.cleanup();
300
+ }
301
+
302
+ async scanGeneratedFiles() {
303
+ try {
304
+ const files = await fs.readdir(this.outputDir);
305
+ const helloFiles = files.filter(file => file.startsWith('hello_world_'));
306
+
307
+ console.log(` 📄 Found ${helloFiles.length} Hello World files`);
308
+
309
+ return {
310
+ totalFiles: helloFiles.length,
311
+ fileList: helloFiles,
312
+ languageCombinations: this.analyzeLanguageCombinations(helloFiles)
313
+ };
314
+
315
+ } catch (error) {
316
+ console.log(' ❌ Could not scan generated files');
317
+ return { totalFiles: 0, fileList: [], languageCombinations: {} };
318
+ }
319
+ }
320
+
321
+ analyzeLanguageCombinations(files) {
322
+ const combinations = {};
323
+
324
+ files.forEach(file => {
325
+ // Parse filename to extract languages
326
+ const parts = file.replace('hello_world_', '').replace(/\.[^/.]+$/, '').split('_');
327
+ if (parts.length >= 2) {
328
+ const verbal = parts[0];
329
+ const programming = parts[1];
330
+ const key = `${programming}+${verbal}`;
331
+
332
+ combinations[key] = (combinations[key] || 0) + 1;
333
+ }
334
+ });
335
+
336
+ return combinations;
337
+ }
338
+
339
+ async analyzeCommunications() {
340
+ const analysis = {
341
+ totalMessages: 0,
342
+ messagesByAgent: {},
343
+ communicationTypes: {},
344
+ coordinationEvidence: false
345
+ };
346
+
347
+ this.communicationCapture.forEach((messages, agentId) => {
348
+ analysis.messagesByAgent[agentId] = messages.length;
349
+ analysis.totalMessages += messages.length;
350
+
351
+ messages.forEach(msg => {
352
+ analysis.communicationTypes[msg.type] = (analysis.communicationTypes[msg.type] || 0) + 1;
353
+
354
+ // Look for coordination keywords
355
+ if (msg.content.toLowerCase().includes('coordinator') ||
356
+ msg.content.toLowerCase().includes('language') ||
357
+ msg.content.toLowerCase().includes('conflict')) {
358
+ analysis.coordinationEvidence = true;
359
+ }
360
+ });
361
+ });
362
+
363
+ return analysis;
364
+ }
365
+
366
+ getAgentStatus() {
367
+ const status = {};
368
+ this.coordinators.forEach((coordinator, id) => {
369
+ status[id] = {
370
+ status: coordinator.status,
371
+ assignedLanguage: coordinator.assignedLanguage,
372
+ processId: coordinator.process.pid
373
+ };
374
+ });
375
+ return status;
376
+ }
377
+
378
+ async cleanup() {
379
+ console.log('🧹 Cleaning up AI processes...');
380
+
381
+ // Terminate all AI agent processes
382
+ this.agentProcesses.forEach((process, agentId) => {
383
+ try {
384
+ process.kill('SIGTERM');
385
+ console.log(` ✅ Terminated ${agentId}`);
386
+ } catch (error) {
387
+ console.log(` ⚠️ Could not terminate ${agentId}`);
388
+ }
389
+ });
390
+
391
+ // Cleanup temp files
392
+ try {
393
+ const tempFiles = [
394
+ '/dev/shm/ai-coordinator-*-instructions.txt',
395
+ '/dev/shm/ai-coordinator-*-messages.log'
396
+ ];
397
+
398
+ for (const pattern of tempFiles) {
399
+ const { execSync } = await import('child_process');
400
+ try {
401
+ execSync(`rm -f ${pattern}`);
402
+ } catch (error) {
403
+ // Ignore cleanup errors
404
+ }
405
+ }
406
+ } catch (error) {
407
+ // Ignore cleanup errors
408
+ }
409
+
410
+ console.log('✅ Cleanup complete');
411
+ }
412
+ }
413
+
414
+ // Run the AI mesh coordinator test
415
+ const aiMesh = new AIMeshCoordinator();
416
+ aiMesh.start().catch(console.error);
@@ -0,0 +1,274 @@
1
+ #!/usr/bin/env deno run --allow-net --allow-read
2
+
3
+ /**
4
+ * Documentation Link Checker
5
+ * Scans documentation files for broken links
6
+ */
7
+
8
+ import { walk } from "https://deno.land/std@0.220.0/fs/mod.ts";
9
+
10
+ interface LinkCheckResult {
11
+ file: string;
12
+ url: string;
13
+ status: 'ok' | 'broken' | 'timeout' | 'error';
14
+ statusCode?: number;
15
+ error?: string;
16
+ }
17
+
18
+ interface ScanResult {
19
+ totalFiles: number;
20
+ totalLinks: number;
21
+ brokenLinks: LinkCheckResult[];
22
+ timeouts: LinkCheckResult[];
23
+ errors: LinkCheckResult[];
24
+ }
25
+
26
+ const TIMEOUT_MS = 10000; // 10 seconds
27
+ const USER_AGENT = 'Claude-Flow Link Checker';
28
+ const MAX_CONCURRENT = 10;
29
+
30
+ // Links to skip (known to have issues with automated checking)
31
+ const SKIP_URLS = new Set([
32
+ 'mailto:',
33
+ 'tel:',
34
+ 'javascript:',
35
+ '#',
36
+ 'localhost',
37
+ '127.0.0.1',
38
+ 'example.com',
39
+ 'example.org',
40
+ ]);
41
+
42
+ function extractLinks(content: string): string[] {
43
+ const links: string[] = [];
44
+
45
+ // Markdown links: [text](url)
46
+ const markdownLinkRegex = /\[([^\]]*)\]\(([^)]+)\)/g;
47
+ let match;
48
+ while ((match = markdownLinkRegex.exec(content)) !== null) {
49
+ links.push(match[2]);
50
+ }
51
+
52
+ // HTML links: <a href="url">
53
+ const htmlLinkRegex = /<a[^>]+href\s*=\s*['""]([^'""]+)['""][^>]*>/gi;
54
+ while ((match = htmlLinkRegex.exec(content)) !== null) {
55
+ links.push(match[1]);
56
+ }
57
+
58
+ // URL references: [ref]: url
59
+ const refLinkRegex = /^\s*\[([^\]]+)\]:\s*(.+)$/gm;
60
+ while ((match = refLinkRegex.exec(content)) !== null) {
61
+ links.push(match[2]);
62
+ }
63
+
64
+ return links;
65
+ }
66
+
67
+ function shouldSkipUrl(url: string): boolean {
68
+ // Skip relative links
69
+ if (!url.startsWith('http://') && !url.startsWith('https://')) {
70
+ return true;
71
+ }
72
+
73
+ // Skip specific patterns
74
+ for (const skipPattern of SKIP_URLS) {
75
+ if (url.includes(skipPattern)) {
76
+ return true;
77
+ }
78
+ }
79
+
80
+ return false;
81
+ }
82
+
83
+ async function checkLink(url: string): Promise<{ status: number | null; error?: string }> {
84
+ try {
85
+ const controller = new AbortController();
86
+ const timeoutId = setTimeout(() => controller.abort(), TIMEOUT_MS);
87
+
88
+ const response = await fetch(url, {
89
+ method: 'HEAD', // Use HEAD to avoid downloading content
90
+ signal: controller.signal,
91
+ headers: {
92
+ 'User-Agent': USER_AGENT,
93
+ },
94
+ });
95
+
96
+ clearTimeout(timeoutId);
97
+
98
+ return {
99
+ status: response.status,
100
+ };
101
+ } catch (error) {
102
+ if (error instanceof DOMException && error.name === 'AbortError') {
103
+ return { status: null, error: 'timeout' };
104
+ }
105
+
106
+ return {
107
+ status: null,
108
+ error: error.message,
109
+ };
110
+ }
111
+ }
112
+
113
+ async function scanFile(filePath: string): Promise<LinkCheckResult[]> {
114
+ const results: LinkCheckResult[] = [];
115
+
116
+ try {
117
+ const content = await Deno.readTextFile(filePath);
118
+ const links = extractLinks(content);
119
+
120
+ // Remove duplicates and filter
121
+ const uniqueLinks = [...new Set(links)].filter(url => !shouldSkipUrl(url));
122
+
123
+ // Check links with concurrency control
124
+ const semaphore = new Array(MAX_CONCURRENT).fill(0);
125
+ const promises = uniqueLinks.map(async (url) => {
126
+ // Wait for available slot
127
+ await new Promise<void>((resolve) => {
128
+ const checkSlot = () => {
129
+ const index = semaphore.findIndex(slot => slot === 0);
130
+ if (index !== -1) {
131
+ semaphore[index] = 1;
132
+ resolve();
133
+ } else {
134
+ setTimeout(checkSlot, 100);
135
+ }
136
+ };
137
+ checkSlot();
138
+ });
139
+
140
+ try {
141
+ const { status, error } = await checkLink(url);
142
+
143
+ let resultStatus: LinkCheckResult['status'];
144
+ if (error === 'timeout') {
145
+ resultStatus = 'timeout';
146
+ } else if (error) {
147
+ resultStatus = 'error';
148
+ } else if (status && status >= 200 && status < 400) {
149
+ resultStatus = 'ok';
150
+ } else {
151
+ resultStatus = 'broken';
152
+ }
153
+
154
+ return {
155
+ file: filePath,
156
+ url,
157
+ status: resultStatus,
158
+ statusCode: status || undefined,
159
+ error,
160
+ };
161
+ } finally {
162
+ // Release slot
163
+ const index = semaphore.findIndex(slot => slot === 1);
164
+ if (index !== -1) {
165
+ semaphore[index] = 0;
166
+ }
167
+ }
168
+ });
169
+
170
+ results.push(...await Promise.all(promises));
171
+ } catch (error) {
172
+ console.warn(`Failed to scan ${filePath}: ${error.message}`);
173
+ }
174
+
175
+ return results;
176
+ }
177
+
178
+ async function main(): Promise<void> {
179
+ console.log('Checking documentation links...\n');
180
+
181
+ const results: LinkCheckResult[] = [];
182
+ let fileCount = 0;
183
+
184
+ // Scan markdown and HTML files
185
+ const extensions = ['.md', '.html', '.htm'];
186
+ const directories = ['./docs', './README.md', './examples'];
187
+
188
+ for (const dir of directories) {
189
+ try {
190
+ const stat = await Deno.stat(dir);
191
+ if (stat.isFile) {
192
+ // Single file
193
+ const fileResults = await scanFile(dir);
194
+ results.push(...fileResults);
195
+ fileCount++;
196
+ } else if (stat.isDirectory) {
197
+ // Directory
198
+ for await (const entry of walk(dir, { exts: extensions })) {
199
+ if (entry.isFile) {
200
+ const fileResults = await scanFile(entry.path);
201
+ results.push(...fileResults);
202
+ fileCount++;
203
+ }
204
+ }
205
+ }
206
+ } catch (error) {
207
+ if (!(error instanceof Deno.errors.NotFound)) {
208
+ console.warn(`Failed to process ${dir}: ${error.message}`);
209
+ }
210
+ }
211
+ }
212
+
213
+ // Analyze results
214
+ const scanResult: ScanResult = {
215
+ totalFiles: fileCount,
216
+ totalLinks: results.length,
217
+ brokenLinks: results.filter(r => r.status === 'broken'),
218
+ timeouts: results.filter(r => r.status === 'timeout'),
219
+ errors: results.filter(r => r.status === 'error'),
220
+ };
221
+
222
+ // Report results
223
+ console.log(`📊 Scan Summary:`);
224
+ console.log(` Files scanned: ${scanResult.totalFiles}`);
225
+ console.log(` Links checked: ${scanResult.totalLinks}`);
226
+ console.log(` Broken links: ${scanResult.brokenLinks.length}`);
227
+ console.log(` Timeouts: ${scanResult.timeouts.length}`);
228
+ console.log(` Errors: ${scanResult.errors.length}\n`);
229
+
230
+ // Report broken links
231
+ if (scanResult.brokenLinks.length > 0) {
232
+ console.log('❌ Broken Links:');
233
+ for (const result of scanResult.brokenLinks) {
234
+ console.log(` ${result.file}: ${result.url} (${result.statusCode})`);
235
+ }
236
+ console.log('');
237
+ }
238
+
239
+ // Report timeouts
240
+ if (scanResult.timeouts.length > 0) {
241
+ console.log('⏱️ Timeouts:');
242
+ for (const result of scanResult.timeouts) {
243
+ console.log(` ${result.file}: ${result.url}`);
244
+ }
245
+ console.log('');
246
+ }
247
+
248
+ // Report other errors
249
+ if (scanResult.errors.length > 0) {
250
+ console.log('⚠️ Errors:');
251
+ for (const result of scanResult.errors) {
252
+ console.log(` ${result.file}: ${result.url} (${result.error})`);
253
+ }
254
+ console.log('');
255
+ }
256
+
257
+ // Summary
258
+ const totalIssues = scanResult.brokenLinks.length + scanResult.timeouts.length + scanResult.errors.length;
259
+
260
+ if (totalIssues === 0) {
261
+ console.log('✅ All links are working!');
262
+ } else {
263
+ console.error(`❌ Found ${totalIssues} link issues!`);
264
+
265
+ // Don't fail CI for timeouts or minor errors, only broken links
266
+ if (scanResult.brokenLinks.length > 0) {
267
+ Deno.exit(1);
268
+ }
269
+ }
270
+ }
271
+
272
+ if (import.meta.main) {
273
+ await main();
274
+ }