- Create dedicated service classes for separated concerns: * AgentService: Agent management and health monitoring * WorkflowService: Workflow parsing and execution tracking * PerformanceService: Metrics and load balancing * BackgroundService: Background processes and cleanup * TaskService: Database persistence (already existed) - Refactor UnifiedCoordinator into UnifiedCoordinatorRefactored * Clean separation of responsibilities * Improved maintainability and testability * Dependency injection pattern for services * Clear service boundaries and interfaces - Maintain backward compatibility through re-exports - Update main.py to use refactored coordinator 🚀 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
77 lines
2.8 KiB
HTML
77 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/hive-icon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="Hive - Unified Distributed AI Orchestration Platform for coordinating AI agents, managing workflows, and monitoring performance" />
|
|
<meta name="keywords" content="AI, orchestration, workflows, agents, distributed computing, automation" />
|
|
<meta name="author" content="Hive Platform" />
|
|
<meta name="theme-color" content="#3b82f6" />
|
|
|
|
<!-- Open Graph / Facebook -->
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:title" content="Hive - Distributed AI Orchestration" />
|
|
<meta property="og:description" content="Unified platform for coordinating AI agents, managing workflows, and monitoring performance" />
|
|
<meta property="og:url" content="https://hive.home.deepblack.cloud" />
|
|
|
|
<!-- Twitter -->
|
|
<meta property="twitter:card" content="summary_large_image" />
|
|
<meta property="twitter:title" content="Hive - Distributed AI Orchestration" />
|
|
<meta property="twitter:description" content="Unified platform for coordinating AI agents, managing workflows, and monitoring performance" />
|
|
|
|
<!-- Accessibility -->
|
|
<meta name="format-detection" content="telephone=no" />
|
|
|
|
<title>🐝 Hive - Distributed AI Orchestration</title>
|
|
|
|
<style>
|
|
/* Loading styles for better UX */
|
|
#root {
|
|
min-height: 100vh;
|
|
}
|
|
|
|
/* Screen reader only class */
|
|
.sr-only {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
white-space: nowrap;
|
|
border: 0;
|
|
}
|
|
|
|
/* Focus visible styles */
|
|
.focus-visible:focus {
|
|
outline: 2px solid #3b82f6;
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
/* Reduce motion for users who prefer it */
|
|
@media (prefers-reduced-motion: reduce) {
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
animation-duration: 0.01ms !important;
|
|
animation-iteration-count: 1 !important;
|
|
transition-duration: 0.01ms !important;
|
|
}
|
|
}
|
|
</style>
|
|
<script type="module" crossorigin src="/assets/index-BsrGdklV.js"></script>
|
|
<link rel="stylesheet" crossorigin href="/assets/index-CBw2HfAv.css">
|
|
</head>
|
|
<body>
|
|
<noscript>
|
|
<div style="text-align: center; padding: 2rem; font-family: sans-serif;">
|
|
<h1>JavaScript Required</h1>
|
|
<p>This application requires JavaScript to be enabled in your browser.</p>
|
|
<p>Please enable JavaScript and refresh the page to continue.</p>
|
|
</div>
|
|
</noscript>
|
|
<div id="root" role="main"></div>
|
|
</body>
|
|
</html> |