 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>
		
			
				
	
	
		
			61 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import type { CreateNodeContext } from '../doc/createNode';
 | |
| import type { BlockSequence, FlowCollection } from '../parse/cst';
 | |
| import type { Schema } from '../schema/Schema';
 | |
| import type { StringifyContext } from '../stringify/stringify';
 | |
| import { Collection } from './Collection';
 | |
| import type { ParsedNode, Range } from './Node';
 | |
| import type { Pair } from './Pair';
 | |
| import type { Scalar } from './Scalar';
 | |
| import type { ToJSContext } from './toJS';
 | |
| export declare namespace YAMLSeq {
 | |
|     interface Parsed<T extends ParsedNode | Pair<ParsedNode, ParsedNode | null> = ParsedNode> extends YAMLSeq<T> {
 | |
|         items: T[];
 | |
|         range: Range;
 | |
|         srcToken?: BlockSequence | FlowCollection;
 | |
|     }
 | |
| }
 | |
| export declare class YAMLSeq<T = unknown> extends Collection {
 | |
|     static get tagName(): 'tag:yaml.org,2002:seq';
 | |
|     items: T[];
 | |
|     constructor(schema?: Schema);
 | |
|     add(value: T): void;
 | |
|     /**
 | |
|      * Removes a value from the collection.
 | |
|      *
 | |
|      * `key` must contain a representation of an integer for this to succeed.
 | |
|      * It may be wrapped in a `Scalar`.
 | |
|      *
 | |
|      * @returns `true` if the item was found and removed.
 | |
|      */
 | |
|     delete(key: unknown): boolean;
 | |
|     /**
 | |
|      * Returns item at `key`, or `undefined` if not found. By default unwraps
 | |
|      * scalar values from their surrounding node; to disable set `keepScalar` to
 | |
|      * `true` (collections are always returned intact).
 | |
|      *
 | |
|      * `key` must contain a representation of an integer for this to succeed.
 | |
|      * It may be wrapped in a `Scalar`.
 | |
|      */
 | |
|     get(key: unknown, keepScalar: true): Scalar<T> | undefined;
 | |
|     get(key: unknown, keepScalar?: false): T | undefined;
 | |
|     get(key: unknown, keepScalar?: boolean): T | Scalar<T> | undefined;
 | |
|     /**
 | |
|      * Checks if the collection includes a value with the key `key`.
 | |
|      *
 | |
|      * `key` must contain a representation of an integer for this to succeed.
 | |
|      * It may be wrapped in a `Scalar`.
 | |
|      */
 | |
|     has(key: unknown): boolean;
 | |
|     /**
 | |
|      * Sets a value in this collection. For `!!set`, `value` needs to be a
 | |
|      * boolean to add/remove the item from the set.
 | |
|      *
 | |
|      * If `key` does not contain a representation of an integer, this will throw.
 | |
|      * It may be wrapped in a `Scalar`.
 | |
|      */
 | |
|     set(key: unknown, value: T): void;
 | |
|     toJSON(_?: unknown, ctx?: ToJSContext): unknown[];
 | |
|     toString(ctx?: StringifyContext, onComment?: () => void, onChompKeep?: () => void): string;
 | |
|     static from(schema: Schema, obj: unknown, ctx: CreateNodeContext): YAMLSeq;
 | |
| }
 |