Files
hive/frontend/node_modules/mz/readline.js
anthonyrawlins 85bf1341f3 Add comprehensive frontend UI and distributed infrastructure
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>
2025-07-10 08:41:59 +10:00

65 lines
1.6 KiB
JavaScript

var readline = require('readline')
var Promise = require('any-promise')
var objectAssign = require('object-assign')
var Interface = readline.Interface
function wrapCompleter (completer) {
if (completer.length === 2) return completer
return function (line, cb) {
var result = completer(line)
if (typeof result.then !== 'function') {
return cb(null, result)
}
result.catch(cb).then(function (result) {
process.nextTick(function () { cb(null, result) })
})
}
}
function InterfaceAsPromised (input, output, completer, terminal) {
if (arguments.length === 1) {
var options = input
if (typeof options.completer === 'function') {
options = objectAssign({}, options, {
completer: wrapCompleter(options.completer)
})
}
Interface.call(this, options)
} else {
if (typeof completer === 'function') {
completer = wrapCompleter(completer)
}
Interface.call(this, input, output, completer, terminal)
}
}
InterfaceAsPromised.prototype = Object.create(Interface.prototype)
InterfaceAsPromised.prototype.question = function (question, callback) {
if (typeof callback === 'function') {
return Interface.prototype.question.call(this, question, callback)
}
var self = this
return new Promise(function (resolve) {
Interface.prototype.question.call(self, question, resolve)
})
}
objectAssign(exports, readline, {
Interface: InterfaceAsPromised,
createInterface: function (input, output, completer, terminal) {
if (arguments.length === 1) {
return new InterfaceAsPromised(input)
}
return new InterfaceAsPromised(input, output, completer, terminal)
}
})