 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>
		
			
				
	
	
		
			49 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| "use strict";
 | |
| Object.defineProperty(exports, "__esModule", {
 | |
|     value: true
 | |
| });
 | |
| const _setupTrackingContext = /*#__PURE__*/ _interop_require_default(require("./lib/setupTrackingContext"));
 | |
| const _processTailwindFeatures = /*#__PURE__*/ _interop_require_default(require("./processTailwindFeatures"));
 | |
| const _sharedState = require("./lib/sharedState");
 | |
| const _findAtConfigPath = require("./lib/findAtConfigPath");
 | |
| function _interop_require_default(obj) {
 | |
|     return obj && obj.__esModule ? obj : {
 | |
|         default: obj
 | |
|     };
 | |
| }
 | |
| module.exports = function tailwindcss(configOrPath) {
 | |
|     return {
 | |
|         postcssPlugin: "tailwindcss",
 | |
|         plugins: [
 | |
|             _sharedState.env.DEBUG && function(root) {
 | |
|                 console.log("\n");
 | |
|                 console.time("JIT TOTAL");
 | |
|                 return root;
 | |
|             },
 | |
|             async function(root, result) {
 | |
|                 var _findAtConfigPath1;
 | |
|                 // Use the path for the `@config` directive if it exists, otherwise use the
 | |
|                 // path for the file being processed
 | |
|                 configOrPath = (_findAtConfigPath1 = (0, _findAtConfigPath.findAtConfigPath)(root, result)) !== null && _findAtConfigPath1 !== void 0 ? _findAtConfigPath1 : configOrPath;
 | |
|                 let context = (0, _setupTrackingContext.default)(configOrPath);
 | |
|                 if (root.type === "document") {
 | |
|                     let roots = root.nodes.filter((node)=>node.type === "root");
 | |
|                     for (const root of roots){
 | |
|                         if (root.type === "root") {
 | |
|                             await (0, _processTailwindFeatures.default)(context)(root, result);
 | |
|                         }
 | |
|                     }
 | |
|                     return;
 | |
|                 }
 | |
|                 await (0, _processTailwindFeatures.default)(context)(root, result);
 | |
|             },
 | |
|             _sharedState.env.DEBUG && function(root) {
 | |
|                 console.timeEnd("JIT TOTAL");
 | |
|                 console.log("\n");
 | |
|                 return root;
 | |
|             }
 | |
|         ].filter(Boolean)
 | |
|     };
 | |
| };
 | |
| module.exports.postcss = true;
 |