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>
26 lines
1.4 KiB
TypeScript
26 lines
1.4 KiB
TypeScript
export { Composer } from './compose/composer';
|
|
export { Document } from './doc/Document';
|
|
export { Schema } from './schema/Schema';
|
|
export type { ErrorCode } from './errors';
|
|
export { YAMLError, YAMLParseError, YAMLWarning } from './errors';
|
|
export { Alias } from './nodes/Alias';
|
|
export { isAlias, isCollection, isDocument, isMap, isNode, isPair, isScalar, isSeq } from './nodes/identity';
|
|
export type { Node, ParsedNode, Range } from './nodes/Node';
|
|
export { Pair } from './nodes/Pair';
|
|
export { Scalar } from './nodes/Scalar';
|
|
export { YAMLMap } from './nodes/YAMLMap';
|
|
export { YAMLSeq } from './nodes/YAMLSeq';
|
|
export type { CreateNodeOptions, DocumentOptions, ParseOptions, SchemaOptions, ToJSOptions, ToStringOptions } from './options';
|
|
export * as CST from './parse/cst';
|
|
export { Lexer } from './parse/lexer';
|
|
export { LineCounter } from './parse/line-counter';
|
|
export { Parser } from './parse/parser';
|
|
export type { EmptyStream } from './public-api';
|
|
export { parse, parseAllDocuments, parseDocument, stringify } from './public-api';
|
|
export type { TagId, Tags } from './schema/tags';
|
|
export type { CollectionTag, ScalarTag } from './schema/types';
|
|
export type { YAMLOMap } from './schema/yaml-1.1/omap';
|
|
export type { YAMLSet } from './schema/yaml-1.1/set';
|
|
export type { asyncVisitor, asyncVisitorFn, visitor, visitorFn } from './visit';
|
|
export { visit, visitAsync } from './visit';
|