<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AnyRepair Documentation</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
background: #f5f5f5;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 40px 20px;
text-align: center;
border-radius: 10px;
margin-bottom: 30px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
header h1 {
font-size: 2.5em;
margin-bottom: 10px;
}
header p {
font-size: 1.2em;
opacity: 0.9;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-bottom: 30px;
}
.card {
background: white;
padding: 25px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.card h2 {
color: #667eea;
margin-bottom: 15px;
font-size: 1.5em;
}
.card ul {
list-style: none;
}
.card li {
padding: 8px 0;
border-bottom: 1px solid #eee;
}
.card li:last-child {
border-bottom: none;
}
.card a {
color: #667eea;
text-decoration: none;
}
.card a:hover {
text-decoration: underline;
}
.stats {
background: white;
padding: 25px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
margin-bottom: 30px;
}
.stats h2 {
color: #667eea;
margin-bottom: 15px;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
}
.stat-item {
text-align: center;
padding: 15px;
background: #f8f9fa;
border-radius: 5px;
}
.stat-value {
font-size: 2em;
font-weight: bold;
color: #667eea;
}
.stat-label {
color: #666;
font-size: 0.9em;
}
footer {
text-align: center;
padding: 20px;
color: #666;
margin-top: 40px;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>AnyRepair Documentation</h1>
<p>A comprehensive Rust crate for repairing LLM responses across multiple formats</p>
</header>
<div class="stats">
<h2>Project Statistics</h2>
<div class="stats-grid">
<div class="stat-item">
<div class="stat-value">8</div>
<div class="stat-label">Formats Supported</div>
</div>
<div class="stat-item">
<div class="stat-value">347+</div>
<div class="stat-label">Tests</div>
</div>
<div class="stat-item">
<div class="stat-value">100%</div>
<div class="stat-label">Pass Rate</div>
</div>
<div class="stat-item">
<div class="stat-value">1.5 MB</div>
<div class="stat-label">Binary Size</div>
</div>
</div>
</div>
<div class="grid">
<div class="card">
<h2>Getting Started</h2>
<ul>
<li><a href="../README.md">README.md</a> - Project overview</li>
<li><a href="../TODO.md">TODO.md</a> - Roadmap</li>
<li><a href="ARCHITECTURE.md">ARCHITECTURE.md</a> - System design</li>
</ul>
</div>
<div class="card">
<h2>Features</h2>
<ul>
<li><a href="MCP_SERVER.md">MCP Server</a> - Model Context Protocol</li>
<li><a href="STREAMING_FEATURE.md">Streaming</a> - Large file support</li>
<li><a href="PLUGIN_DEVELOPMENT.md">Plugins</a> - Extensibility</li>
<li><a href="enterprise_features.md">Enterprise</a> - Advanced features</li>
</ul>
</div>
<div class="card">
<h2>Development</h2>
<ul>
<li><a href="MODULIZATION_GUIDE.md">Modulization Guide</a> - Code organization</li>
<li><a href="BUILD_OPTIMIZATION.md">Build Optimization</a> - Performance</li>
<li><a href="TEST_SUMMARY.md">Test Summary</a> - Test coverage</li>
</ul>
</div>
<div class="card">
<h2>Reference</h2>
<ul>
<li><a href="CHANGELOG.md">CHANGELOG.md</a> - Version history</li>
<li><a href="../examples/README.md">Examples</a> - Usage examples</li>
<li><a href="../examples/data/README.md">Test Data</a> - Test files</li>
</ul>
</div>
</div>
<footer>
<p>AnyRepair - Production Ready | Last Updated: November 2024</p>
</footer>
</div>
</body>
</html>