This directory contains comprehensive documentation for the SuperInstance ecosystem.
The primary documentation is built with mdBook and provides a unified view of the entire ecosystem.
- GitHub Pages: https://superinstance.github.io/Tripartite1/ (when deployed)
- Local: See "Building Locally" below
# Install mdBook
cargo install mdbook
# Build the documentation
cd docs/book
mdbook build
# Serve with live reload
mdbook serve
# Visit http://localhost:3000docs/book/
βββ book.toml # mdBook configuration
βββ src/
β βββ SUMMARY.md # Table of contents
β βββ README.md # Introduction
β βββ getting-started/ # Installation, quick start, overview
β βββ ecosystem/ # Architecture and design
β βββ crates/ # Individual crate docs (privox, tripartite-rs, etc.)
β βββ integrations/ # Integration guides
β βββ tutorials/ # Step-by-step tutorials
β βββ reference/ # API reference, FAQ, contributing
β βββ appendix/ # Benchmarks, security, troubleshooting
βββ book/ # Built HTML output
- Installation - Set up your environment
- Quick Start - 5-minute tutorial
- Ecosystem Overview - Understand the architecture
- privox - Privacy-first redaction for LLMs
- tripartite-rs - Multi-agent consensus
- knowledge-vault - Vector database & RAG
- hwscan - Hardware detection
- model-registry - Model management
- token-vault - Token storage
- quicunnel - QUIC tunnel
- usemeter - Usage metering
- Integration Patterns - Common patterns
- Building CLI Apps - CLI applications
- Building Web Services - Web services
- Building Desktop Apps - Desktop applications
- Privacy-First LLM - Build privacy-aware LLM apps
- Multi-Agent System - Multi-agent AI systems
- RAG Application - Retrieval-augmented generation
- Hardware-Aware Models - Hardware detection
- Full-Stack App - Complete application
The following directories contain older documentation that is being migrated to mdBook:
- tutorials/ - Step-by-step tutorials
- guides/ - In-depth guides
- reference/ - Reference material
- contributing/ - Contributing guidelines
- api/ - API documentation
- architecture/ - Architecture documentation
Note: These are being migrated to the unified mdBook. Please check mdBook first for current information.
Found a typo? Missing information? We welcome improvements!
- Edit the markdown file in
docs/book/src/ - Rebuild:
cd docs/book && mdbook build - Submit a PR
- Check existing issues with
documentationlabel - Follow the Documentation Guide
- Test all code examples
- Ensure
mdbook buildsucceeds
- β Use clear, concise language
- β Include runnable code examples
- β Add links to related topics
- β Test all examples before submitting
- β Build documentation before committing
cd docs/book
mdbook buildcd docs/book
mdbook serve
# Visit http://localhost:3000cargo install mdbook-linkcheck
cd docs/book
mdbook buildThe documentation is automatically built and deployed to GitHub Pages:
- Trigger: Push to
mainbranch - Path filter:
docs/book/** - Workflow:
.github/workflows/docs.yml
See the workflow file for details.
- Awesome Rust Machine Learning
- Burn Framework - Deep learning in Rust
- Candle - ML framework by Hugging Face
Still have questions?
- GitHub Issues: Post a question
- GitHub Discussions: Start a discussion
- FAQ: Common questions
- Troubleshooting: Solve problems
Documentation Version: v0.2.0 Last Updated: 2026-01-08 Maintained By: SuperInstance Team