 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>
		
			
				
	
	
		
			110 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			110 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import { getErrorMap } from "../errors.js";
 | |
| import defaultErrorMap from "../locales/en.js";
 | |
| export const makeIssue = (params) => {
 | |
|     const { data, path, errorMaps, issueData } = params;
 | |
|     const fullPath = [...path, ...(issueData.path || [])];
 | |
|     const fullIssue = {
 | |
|         ...issueData,
 | |
|         path: fullPath,
 | |
|     };
 | |
|     if (issueData.message !== undefined) {
 | |
|         return {
 | |
|             ...issueData,
 | |
|             path: fullPath,
 | |
|             message: issueData.message,
 | |
|         };
 | |
|     }
 | |
|     let errorMessage = "";
 | |
|     const maps = errorMaps
 | |
|         .filter((m) => !!m)
 | |
|         .slice()
 | |
|         .reverse();
 | |
|     for (const map of maps) {
 | |
|         errorMessage = map(fullIssue, { data, defaultError: errorMessage }).message;
 | |
|     }
 | |
|     return {
 | |
|         ...issueData,
 | |
|         path: fullPath,
 | |
|         message: errorMessage,
 | |
|     };
 | |
| };
 | |
| export const EMPTY_PATH = [];
 | |
| export function addIssueToContext(ctx, issueData) {
 | |
|     const overrideMap = getErrorMap();
 | |
|     const issue = makeIssue({
 | |
|         issueData: issueData,
 | |
|         data: ctx.data,
 | |
|         path: ctx.path,
 | |
|         errorMaps: [
 | |
|             ctx.common.contextualErrorMap, // contextual error map is first priority
 | |
|             ctx.schemaErrorMap, // then schema-bound map if available
 | |
|             overrideMap, // then global override map
 | |
|             overrideMap === defaultErrorMap ? undefined : defaultErrorMap, // then global default map
 | |
|         ].filter((x) => !!x),
 | |
|     });
 | |
|     ctx.common.issues.push(issue);
 | |
| }
 | |
| export class ParseStatus {
 | |
|     constructor() {
 | |
|         this.value = "valid";
 | |
|     }
 | |
|     dirty() {
 | |
|         if (this.value === "valid")
 | |
|             this.value = "dirty";
 | |
|     }
 | |
|     abort() {
 | |
|         if (this.value !== "aborted")
 | |
|             this.value = "aborted";
 | |
|     }
 | |
|     static mergeArray(status, results) {
 | |
|         const arrayValue = [];
 | |
|         for (const s of results) {
 | |
|             if (s.status === "aborted")
 | |
|                 return INVALID;
 | |
|             if (s.status === "dirty")
 | |
|                 status.dirty();
 | |
|             arrayValue.push(s.value);
 | |
|         }
 | |
|         return { status: status.value, value: arrayValue };
 | |
|     }
 | |
|     static async mergeObjectAsync(status, pairs) {
 | |
|         const syncPairs = [];
 | |
|         for (const pair of pairs) {
 | |
|             const key = await pair.key;
 | |
|             const value = await pair.value;
 | |
|             syncPairs.push({
 | |
|                 key,
 | |
|                 value,
 | |
|             });
 | |
|         }
 | |
|         return ParseStatus.mergeObjectSync(status, syncPairs);
 | |
|     }
 | |
|     static mergeObjectSync(status, pairs) {
 | |
|         const finalObject = {};
 | |
|         for (const pair of pairs) {
 | |
|             const { key, value } = pair;
 | |
|             if (key.status === "aborted")
 | |
|                 return INVALID;
 | |
|             if (value.status === "aborted")
 | |
|                 return INVALID;
 | |
|             if (key.status === "dirty")
 | |
|                 status.dirty();
 | |
|             if (value.status === "dirty")
 | |
|                 status.dirty();
 | |
|             if (key.value !== "__proto__" && (typeof value.value !== "undefined" || pair.alwaysSet)) {
 | |
|                 finalObject[key.value] = value.value;
 | |
|             }
 | |
|         }
 | |
|         return { status: status.value, value: finalObject };
 | |
|     }
 | |
| }
 | |
| export const INVALID = Object.freeze({
 | |
|     status: "aborted",
 | |
| });
 | |
| export const DIRTY = (value) => ({ status: "dirty", value });
 | |
| export const OK = (value) => ({ status: "valid", value });
 | |
| export const isAborted = (x) => x.status === "aborted";
 | |
| export const isDirty = (x) => x.status === "dirty";
 | |
| export const isValid = (x) => x.status === "valid";
 | |
| export const isAsync = (x) => typeof Promise !== "undefined" && x instanceof Promise;
 |