Files
hive/frontend/node_modules/lodash/object.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

50 lines
1.6 KiB
JavaScript

module.exports = {
'assign': require('./assign'),
'assignIn': require('./assignIn'),
'assignInWith': require('./assignInWith'),
'assignWith': require('./assignWith'),
'at': require('./at'),
'create': require('./create'),
'defaults': require('./defaults'),
'defaultsDeep': require('./defaultsDeep'),
'entries': require('./entries'),
'entriesIn': require('./entriesIn'),
'extend': require('./extend'),
'extendWith': require('./extendWith'),
'findKey': require('./findKey'),
'findLastKey': require('./findLastKey'),
'forIn': require('./forIn'),
'forInRight': require('./forInRight'),
'forOwn': require('./forOwn'),
'forOwnRight': require('./forOwnRight'),
'functions': require('./functions'),
'functionsIn': require('./functionsIn'),
'get': require('./get'),
'has': require('./has'),
'hasIn': require('./hasIn'),
'invert': require('./invert'),
'invertBy': require('./invertBy'),
'invoke': require('./invoke'),
'keys': require('./keys'),
'keysIn': require('./keysIn'),
'mapKeys': require('./mapKeys'),
'mapValues': require('./mapValues'),
'merge': require('./merge'),
'mergeWith': require('./mergeWith'),
'omit': require('./omit'),
'omitBy': require('./omitBy'),
'pick': require('./pick'),
'pickBy': require('./pickBy'),
'result': require('./result'),
'set': require('./set'),
'setWith': require('./setWith'),
'toPairs': require('./toPairs'),
'toPairsIn': require('./toPairsIn'),
'transform': require('./transform'),
'unset': require('./unset'),
'update': require('./update'),
'updateWith': require('./updateWith'),
'values': require('./values'),
'valuesIn': require('./valuesIn')
};