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>
44 lines
1008 B
JSON
44 lines
1008 B
JSON
{
|
|
"name": "json-schema-traverse",
|
|
"version": "0.4.1",
|
|
"description": "Traverse JSON Schema passing each schema object to callback",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"eslint": "eslint index.js spec",
|
|
"test-spec": "mocha spec -R spec",
|
|
"test": "npm run eslint && nyc npm run test-spec"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/epoberezkin/json-schema-traverse.git"
|
|
},
|
|
"keywords": [
|
|
"JSON-Schema",
|
|
"traverse",
|
|
"iterate"
|
|
],
|
|
"author": "Evgeny Poberezkin",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/epoberezkin/json-schema-traverse/issues"
|
|
},
|
|
"homepage": "https://github.com/epoberezkin/json-schema-traverse#readme",
|
|
"devDependencies": {
|
|
"coveralls": "^2.13.1",
|
|
"eslint": "^3.19.0",
|
|
"mocha": "^3.4.2",
|
|
"nyc": "^11.0.2",
|
|
"pre-commit": "^1.2.2"
|
|
},
|
|
"nyc": {
|
|
"exclude": [
|
|
"**/spec/**",
|
|
"node_modules"
|
|
],
|
|
"reporter": [
|
|
"lcov",
|
|
"text-summary"
|
|
]
|
|
}
|
|
}
|