 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>
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| var isFunction = require('./isFunction'),
 | |
|     isMasked = require('./_isMasked'),
 | |
|     isObject = require('./isObject'),
 | |
|     toSource = require('./_toSource');
 | |
| 
 | |
| /**
 | |
|  * Used to match `RegExp`
 | |
|  * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).
 | |
|  */
 | |
| var reRegExpChar = /[\\^$.*+?()[\]{}|]/g;
 | |
| 
 | |
| /** Used to detect host constructors (Safari). */
 | |
| var reIsHostCtor = /^\[object .+?Constructor\]$/;
 | |
| 
 | |
| /** Used for built-in method references. */
 | |
| var funcProto = Function.prototype,
 | |
|     objectProto = Object.prototype;
 | |
| 
 | |
| /** Used to resolve the decompiled source of functions. */
 | |
| var funcToString = funcProto.toString;
 | |
| 
 | |
| /** Used to check objects for own properties. */
 | |
| var hasOwnProperty = objectProto.hasOwnProperty;
 | |
| 
 | |
| /** Used to detect if a method is native. */
 | |
| var reIsNative = RegExp('^' +
 | |
|   funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\$&')
 | |
|   .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$'
 | |
| );
 | |
| 
 | |
| /**
 | |
|  * The base implementation of `_.isNative` without bad shim checks.
 | |
|  *
 | |
|  * @private
 | |
|  * @param {*} value The value to check.
 | |
|  * @returns {boolean} Returns `true` if `value` is a native function,
 | |
|  *  else `false`.
 | |
|  */
 | |
| function baseIsNative(value) {
 | |
|   if (!isObject(value) || isMasked(value)) {
 | |
|     return false;
 | |
|   }
 | |
|   var pattern = isFunction(value) ? reIsNative : reIsHostCtor;
 | |
|   return pattern.test(toSource(value));
 | |
| }
 | |
| 
 | |
| module.exports = baseIsNative;
 |