- Enhanced moebius ring logo design in Blender - Updated Docker Compose for website-only deployment with improved config - Enhanced teaser layout with updated branding integration - Added installation and setup documentation - Consolidated planning and reports documentation - Updated gitignore to exclude Next.js build artifacts and archives 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
252 lines
8.3 KiB
HTML
252 lines
8.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>CHORUS - Distributed AI Orchestration Platform</title>
|
|
<meta name="description" content="One-command installation for distributed AI collaboration. Get started with CHORUS in seconds.">
|
|
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.hero {
|
|
text-align: center;
|
|
max-width: 800px;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 4rem;
|
|
font-weight: bold;
|
|
margin-bottom: 1rem;
|
|
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
|
|
}
|
|
|
|
.tagline {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 2rem;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.description {
|
|
font-size: 1.1rem;
|
|
margin-bottom: 3rem;
|
|
line-height: 1.6;
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.install-section {
|
|
background: rgba(255,255,255,0.1);
|
|
padding: 2rem;
|
|
border-radius: 15px;
|
|
backdrop-filter: blur(10px);
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.install-title {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 1rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.code-block {
|
|
background: #1a1a1a;
|
|
color: #00ff00;
|
|
padding: 1rem;
|
|
border-radius: 8px;
|
|
font-family: 'Courier New', monospace;
|
|
font-size: 0.9rem;
|
|
margin: 1rem 0;
|
|
overflow-x: auto;
|
|
position: relative;
|
|
}
|
|
|
|
.copy-btn {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 10px;
|
|
background: #4CAF50;
|
|
color: white;
|
|
border: none;
|
|
padding: 5px 10px;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.copy-btn:hover {
|
|
background: #45a049;
|
|
}
|
|
|
|
.options {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 1rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.option-card {
|
|
background: rgba(255,255,255,0.1);
|
|
padding: 1.5rem;
|
|
border-radius: 10px;
|
|
text-align: left;
|
|
}
|
|
|
|
.option-title {
|
|
font-size: 1.2rem;
|
|
margin-bottom: 0.5rem;
|
|
color: #FFD700;
|
|
}
|
|
|
|
.features {
|
|
margin: 2rem 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.features h3 {
|
|
margin-bottom: 1rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.feature-list {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 1rem;
|
|
list-style: none;
|
|
}
|
|
|
|
.feature-list li {
|
|
padding: 0.5rem 0;
|
|
border-left: 3px solid #FFD700;
|
|
padding-left: 1rem;
|
|
}
|
|
|
|
.footer {
|
|
text-align: center;
|
|
padding: 2rem;
|
|
opacity: 0.7;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.logo {
|
|
font-size: 2.5rem;
|
|
}
|
|
|
|
.tagline {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.install-section {
|
|
padding: 1rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="hero">
|
|
<div class="logo">🎵 CHORUS</div>
|
|
<div class="tagline">Distributed AI Orchestration Platform</div>
|
|
<div class="description">
|
|
A living knowledge fabric where agents and humans collaborate across time and domains
|
|
with zero friction and complete auditability. One-command installation with pre-built binaries.
|
|
</div>
|
|
|
|
<div class="install-section">
|
|
<h2 class="install-title">⚡ One-Command Installation</h2>
|
|
|
|
<div class="code-block">
|
|
<button class="copy-btn" onclick="copyToClipboard(this, 'curl -fsSL https://chorus.services/install.sh | sh')">Copy</button>
|
|
curl -fsSL https://chorus.services/install.sh | sh
|
|
</div>
|
|
|
|
<div class="options">
|
|
<div class="option-card">
|
|
<div class="option-title">🎯 Coordinator Node</div>
|
|
<p>Install as cluster coordinator with WHOOSH dashboard:</p>
|
|
<div class="code-block">
|
|
<button class="copy-btn" onclick="copyToClipboard(this, 'curl -fsSL https://chorus.services/install.sh | sh -s -- --coordinator')">Copy</button>
|
|
curl -fsSL https://chorus.services/install.sh | sh -s -- --coordinator
|
|
</div>
|
|
</div>
|
|
|
|
<div class="option-card">
|
|
<div class="option-title">🤖 With AI Models</div>
|
|
<p>Install with specific AI models:</p>
|
|
<div class="code-block">
|
|
<button class="copy-btn" onclick="copyToClipboard(this, 'curl -fsSL https://chorus.services/install.sh | sh -s -- --models \"llama3.2,qwen2.5:7b\"')">Copy</button>
|
|
curl -fsSL https://chorus.services/install.sh | sh -s -- --models "llama3.2,qwen2.5:7b"
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="features">
|
|
<h3>🚀 What You Get</h3>
|
|
<ul class="feature-list">
|
|
<li>🐝 <strong>BZZZ</strong> - P2P task coordination</li>
|
|
<li>🔍 <strong>SLURP</strong> - Context curation</li>
|
|
<li>📡 <strong>COOEE</strong> - Message queuing</li>
|
|
<li>🛡️ <strong>SHHH</strong> - Secrets management</li>
|
|
<li>💭 <strong>HMMM</strong> - Agent collaboration</li>
|
|
<li>🫧 <strong>BUBBLE</strong> - Knowledge graphs</li>
|
|
<li>🦙 <strong>PARALLAMA</strong> - Multi-GPU inference</li>
|
|
<li>🌐 <strong>WHOOSH</strong> - Web dashboard</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="install-section">
|
|
<h3>📖 Quick Start</h3>
|
|
<ol style="text-align: left; line-height: 1.8;">
|
|
<li><strong>Install coordinator:</strong> Run with <code>--coordinator</code> flag</li>
|
|
<li><strong>Add workers:</strong> Run script on additional machines</li>
|
|
<li><strong>Deploy agents:</strong> Use WHOOSH dashboard to manage</li>
|
|
<li><strong>Collaborate:</strong> Agents work together automatically</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p>🎵 CHORUS - Where AI agents collaborate like a symphony</p>
|
|
<p>Documentation • GitHub • Community</p>
|
|
</div>
|
|
|
|
<script>
|
|
function copyToClipboard(button, text) {
|
|
navigator.clipboard.writeText(text).then(function() {
|
|
const originalText = button.textContent;
|
|
button.textContent = 'Copied!';
|
|
button.style.background = '#4CAF50';
|
|
setTimeout(function() {
|
|
button.textContent = originalText;
|
|
button.style.background = '#4CAF50';
|
|
}, 2000);
|
|
});
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |