 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>
		
			
				
	
	
		
			114 lines
		
	
	
		
			6.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			114 lines
		
	
	
		
			6.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| "use strict";
 | |
| 
 | |
| Object.defineProperty(exports, "__esModule", {
 | |
|   value: true
 | |
| });
 | |
| exports.parsers = void 0;
 | |
| var _EraParser = require("./EraParser.js");
 | |
| var _YearParser = require("./YearParser.js");
 | |
| var _LocalWeekYearParser = require("./LocalWeekYearParser.js");
 | |
| var _ISOWeekYearParser = require("./ISOWeekYearParser.js");
 | |
| var _ExtendedYearParser = require("./ExtendedYearParser.js");
 | |
| var _QuarterParser = require("./QuarterParser.js");
 | |
| var _StandAloneQuarterParser = require("./StandAloneQuarterParser.js");
 | |
| var _MonthParser = require("./MonthParser.js");
 | |
| var _StandAloneMonthParser = require("./StandAloneMonthParser.js");
 | |
| var _LocalWeekParser = require("./LocalWeekParser.js");
 | |
| var _ISOWeekParser = require("./ISOWeekParser.js");
 | |
| var _DateParser = require("./DateParser.js");
 | |
| var _DayOfYearParser = require("./DayOfYearParser.js");
 | |
| var _DayParser = require("./DayParser.js");
 | |
| var _LocalDayParser = require("./LocalDayParser.js");
 | |
| var _StandAloneLocalDayParser = require("./StandAloneLocalDayParser.js");
 | |
| var _ISODayParser = require("./ISODayParser.js");
 | |
| var _AMPMParser = require("./AMPMParser.js");
 | |
| var _AMPMMidnightParser = require("./AMPMMidnightParser.js");
 | |
| var _DayPeriodParser = require("./DayPeriodParser.js");
 | |
| var _Hour1to12Parser = require("./Hour1to12Parser.js");
 | |
| var _Hour0to23Parser = require("./Hour0to23Parser.js");
 | |
| var _Hour0To11Parser = require("./Hour0To11Parser.js");
 | |
| var _Hour1To24Parser = require("./Hour1To24Parser.js");
 | |
| var _MinuteParser = require("./MinuteParser.js");
 | |
| var _SecondParser = require("./SecondParser.js");
 | |
| var _FractionOfSecondParser = require("./FractionOfSecondParser.js");
 | |
| var _ISOTimezoneWithZParser = require("./ISOTimezoneWithZParser.js");
 | |
| var _ISOTimezoneParser = require("./ISOTimezoneParser.js");
 | |
| var _TimestampSecondsParser = require("./TimestampSecondsParser.js");
 | |
| var _TimestampMillisecondsParser = require("./TimestampMillisecondsParser.js");
 | |
| /*
 | |
|  * |     | Unit                           |     | Unit                           |
 | |
|  * |-----|--------------------------------|-----|--------------------------------|
 | |
|  * |  a  | AM, PM                         |  A* | Milliseconds in day            |
 | |
|  * |  b  | AM, PM, noon, midnight         |  B  | Flexible day period            |
 | |
|  * |  c  | Stand-alone local day of week  |  C* | Localized hour w/ day period   |
 | |
|  * |  d  | Day of month                   |  D  | Day of year                    |
 | |
|  * |  e  | Local day of week              |  E  | Day of week                    |
 | |
|  * |  f  |                                |  F* | Day of week in month           |
 | |
|  * |  g* | Modified Julian day            |  G  | Era                            |
 | |
|  * |  h  | Hour [1-12]                    |  H  | Hour [0-23]                    |
 | |
|  * |  i! | ISO day of week                |  I! | ISO week of year               |
 | |
|  * |  j* | Localized hour w/ day period   |  J* | Localized hour w/o day period  |
 | |
|  * |  k  | Hour [1-24]                    |  K  | Hour [0-11]                    |
 | |
|  * |  l* | (deprecated)                   |  L  | Stand-alone month              |
 | |
|  * |  m  | Minute                         |  M  | Month                          |
 | |
|  * |  n  |                                |  N  |                                |
 | |
|  * |  o! | Ordinal number modifier        |  O* | Timezone (GMT)                 |
 | |
|  * |  p  |                                |  P  |                                |
 | |
|  * |  q  | Stand-alone quarter            |  Q  | Quarter                        |
 | |
|  * |  r* | Related Gregorian year         |  R! | ISO week-numbering year        |
 | |
|  * |  s  | Second                         |  S  | Fraction of second             |
 | |
|  * |  t! | Seconds timestamp              |  T! | Milliseconds timestamp         |
 | |
|  * |  u  | Extended year                  |  U* | Cyclic year                    |
 | |
|  * |  v* | Timezone (generic non-locat.)  |  V* | Timezone (location)            |
 | |
|  * |  w  | Local week of year             |  W* | Week of month                  |
 | |
|  * |  x  | Timezone (ISO-8601 w/o Z)      |  X  | Timezone (ISO-8601)            |
 | |
|  * |  y  | Year (abs)                     |  Y  | Local week-numbering year      |
 | |
|  * |  z* | Timezone (specific non-locat.) |  Z* | Timezone (aliases)             |
 | |
|  *
 | |
|  * Letters marked by * are not implemented but reserved by Unicode standard.
 | |
|  *
 | |
|  * Letters marked by ! are non-standard, but implemented by date-fns:
 | |
|  * - `o` modifies the previous token to turn it into an ordinal (see `parse` docs)
 | |
|  * - `i` is ISO day of week. For `i` and `ii` is returns numeric ISO week days,
 | |
|  *   i.e. 7 for Sunday, 1 for Monday, etc.
 | |
|  * - `I` is ISO week of year, as opposed to `w` which is local week of year.
 | |
|  * - `R` is ISO week-numbering year, as opposed to `Y` which is local week-numbering year.
 | |
|  *   `R` is supposed to be used in conjunction with `I` and `i`
 | |
|  *   for universal ISO week-numbering date, whereas
 | |
|  *   `Y` is supposed to be used in conjunction with `w` and `e`
 | |
|  *   for week-numbering date specific to the locale.
 | |
|  */
 | |
| var parsers = {
 | |
|   G: new _EraParser.EraParser(),
 | |
|   y: new _YearParser.YearParser(),
 | |
|   Y: new _LocalWeekYearParser.LocalWeekYearParser(),
 | |
|   R: new _ISOWeekYearParser.ISOWeekYearParser(),
 | |
|   u: new _ExtendedYearParser.ExtendedYearParser(),
 | |
|   Q: new _QuarterParser.QuarterParser(),
 | |
|   q: new _StandAloneQuarterParser.StandAloneQuarterParser(),
 | |
|   M: new _MonthParser.MonthParser(),
 | |
|   L: new _StandAloneMonthParser.StandAloneMonthParser(),
 | |
|   w: new _LocalWeekParser.LocalWeekParser(),
 | |
|   I: new _ISOWeekParser.ISOWeekParser(),
 | |
|   d: new _DateParser.DateParser(),
 | |
|   D: new _DayOfYearParser.DayOfYearParser(),
 | |
|   E: new _DayParser.DayParser(),
 | |
|   e: new _LocalDayParser.LocalDayParser(),
 | |
|   c: new _StandAloneLocalDayParser.StandAloneLocalDayParser(),
 | |
|   i: new _ISODayParser.ISODayParser(),
 | |
|   a: new _AMPMParser.AMPMParser(),
 | |
|   b: new _AMPMMidnightParser.AMPMMidnightParser(),
 | |
|   B: new _DayPeriodParser.DayPeriodParser(),
 | |
|   h: new _Hour1to12Parser.Hour1to12Parser(),
 | |
|   H: new _Hour0to23Parser.Hour0to23Parser(),
 | |
|   K: new _Hour0To11Parser.Hour0To11Parser(),
 | |
|   k: new _Hour1To24Parser.Hour1To24Parser(),
 | |
|   m: new _MinuteParser.MinuteParser(),
 | |
|   s: new _SecondParser.SecondParser(),
 | |
|   S: new _FractionOfSecondParser.FractionOfSecondParser(),
 | |
|   X: new _ISOTimezoneWithZParser.ISOTimezoneWithZParser(),
 | |
|   x: new _ISOTimezoneParser.ISOTimezoneParser(),
 | |
|   t: new _TimestampSecondsParser.TimestampSecondsParser(),
 | |
|   T: new _TimestampMillisecondsParser.TimestampMillisecondsParser()
 | |
| };
 | |
| exports.parsers = parsers; |