 85bf1341f3
			
		
	
	85bf1341f3
	
	
	
		
			
			Frontend Enhancements: - Complete React TypeScript frontend with modern UI components - Distributed workflows management interface with real-time updates - Socket.IO integration for live agent status monitoring - Agent management dashboard with cluster visualization - Project management interface with metrics and task tracking - Responsive design with proper error handling and loading states Backend Infrastructure: - Distributed coordinator for multi-agent workflow orchestration - Cluster management API with comprehensive agent operations - Enhanced database models for agents and projects - Project service for filesystem-based project discovery - Performance monitoring and metrics collection - Comprehensive API documentation and error handling Documentation: - Complete distributed development guide (README_DISTRIBUTED.md) - Comprehensive development report with architecture insights - System configuration templates and deployment guides The platform now provides a complete web interface for managing the distributed AI cluster with real-time monitoring, workflow orchestration, and agent coordination capabilities. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| var fs = require('fs')
 | |
|   , path = require('path')
 | |
|   , browserify = require('browserify')
 | |
|   , uglify = require('uglify-js');
 | |
| 
 | |
| var pkg = process.argv[2]
 | |
|   , standalone = process.argv[3]
 | |
|   , compress = process.argv[4];
 | |
| 
 | |
| var packageDir = path.join(__dirname, '..');
 | |
| if (pkg != '.') packageDir = path.join(packageDir, 'node_modules', pkg);
 | |
| 
 | |
| var json = require(path.join(packageDir, 'package.json'));
 | |
| 
 | |
| var distDir = path.join(__dirname, '..', 'dist');
 | |
| if (!fs.existsSync(distDir)) fs.mkdirSync(distDir);
 | |
| 
 | |
| var bOpts = {};
 | |
| if (standalone) bOpts.standalone = standalone;
 | |
| 
 | |
| browserify(bOpts)
 | |
| .require(path.join(packageDir, json.main), {expose: json.name})
 | |
| .bundle(function (err, buf) {
 | |
|   if (err) {
 | |
|     console.error('browserify error:', err);
 | |
|     process.exit(1);
 | |
|   }
 | |
| 
 | |
|   var outputFile = path.join(distDir, json.name);
 | |
|   var uglifyOpts = {
 | |
|     warnings: true,
 | |
|     compress: {},
 | |
|     output: {
 | |
|       preamble: '/* ' + json.name + ' ' + json.version + ': ' + json.description + ' */'
 | |
|     }
 | |
|   };
 | |
|   if (compress) {
 | |
|     var compressOpts = compress.split(',');
 | |
|     for (var i=0, il = compressOpts.length; i<il; ++i) {
 | |
|       var pair = compressOpts[i].split('=');
 | |
|       uglifyOpts.compress[pair[0]] = pair.length < 1 || pair[1] != 'false';
 | |
|     }
 | |
|   }
 | |
|   if (standalone) {
 | |
|     uglifyOpts.sourceMap = {
 | |
|       filename: json.name + '.min.js',
 | |
|       url: json.name + '.min.js.map'
 | |
|     };
 | |
|   }
 | |
| 
 | |
|   var result = uglify.minify(buf.toString(), uglifyOpts);
 | |
|   fs.writeFileSync(outputFile + '.min.js', result.code);
 | |
|   if (result.map) fs.writeFileSync(outputFile + '.min.js.map', result.map);
 | |
|   if (standalone) fs.writeFileSync(outputFile + '.bundle.js', buf);
 | |
|   if (result.warnings) {
 | |
|     for (var j=0, jl = result.warnings.length; j<jl; ++j)
 | |
|       console.warn('UglifyJS warning:', result.warnings[j]);
 | |
|   }
 | |
| });
 |