105 lines
2.9 KiB
HTML
105 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>BlackRoad OS Documentation</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
background: linear-gradient(135deg, #000 0%, #1a1a2e 100%);
|
|
color: #fff;
|
|
min-height: 100vh;
|
|
padding: 40px 20px;
|
|
}
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
h1 {
|
|
font-size: 48px;
|
|
background: linear-gradient(45deg, #FF9D00, #FF0066);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
margin-bottom: 20px;
|
|
}
|
|
.section {
|
|
background: rgba(255,255,255,0.05);
|
|
border: 1px solid rgba(255,255,255,0.1);
|
|
border-radius: 12px;
|
|
padding: 30px;
|
|
margin: 20px 0;
|
|
}
|
|
h2 {
|
|
color: #FF9D00;
|
|
margin-bottom: 15px;
|
|
}
|
|
a {
|
|
color: #FF0066;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
pre {
|
|
background: #000;
|
|
padding: 15px;
|
|
border-radius: 8px;
|
|
overflow-x: auto;
|
|
margin: 10px 0;
|
|
}
|
|
code {
|
|
color: #00FF88;
|
|
}
|
|
ul {
|
|
margin: 15px 0;
|
|
padding-left: 20px;
|
|
}
|
|
li {
|
|
margin: 8px 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>BlackRoad OS Documentation</h1>
|
|
|
|
<div class="section">
|
|
<h2>Quick Start</h2>
|
|
<p>BlackRoad OS is an AI-powered operating system with 30,000+ agent capacity.</p>
|
|
<pre><code># Install BlackRoad OS
|
|
npm install @blackroad/core
|
|
|
|
# Or use Python
|
|
pip install blackroad-core</code></pre>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>Core Features</h2>
|
|
<ul>
|
|
<li>30,000+ autonomous agents</li>
|
|
<li>27 AI models (GPT-4, Claude, Llama, Mixtral)</li>
|
|
<li>PS-SHA∞ truth engine</li>
|
|
<li>Lucidia breath synchronization</li>
|
|
<li>5 domain packs (finance, legal, research, creative, devops)</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>Quick Links</h2>
|
|
<ul>
|
|
<li><a href="https://blackroad.io">Main Website</a></li>
|
|
<li><a href="https://github.com/blackboxprogramming">GitHub</a></li>
|
|
<li><a href="https://app.blackroad.io">Dashboard</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>API Documentation</h2>
|
|
<p>Coming soon. For now, check the GitHub repositories.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|