“Resonate with your data.” The alternative to GitHub, Hugging Face, and Docker Hub. One single forge for Code, AI, and Data.
Modern engineering is fragmented. Your code lives on GitHub, your models on Hugging Face, and your datasets on S3. PLECTR unifies everything. It’s a universal versioning system, “Local-First”, written in Rust for raw performance.
-
Universal Repository A single repo contains code (
.rs,.ts), AI models (.safetensors), and data (.parquet). -
Smart Storage (CAS) Native deduplication (Content Addressable Storage). If 10 projects use the same 5GB model, it’s stored only once.
-
Data Intelligence Native visualization of CSV/Parquet files (via DuckDB Wasm) and neural network layer inspection (SafeTensors) without downloading.
-
Native Performance Rust backend (Axum) + optimized Next.js frontend + SeaweedFS storage.
-
“White Label” Auth Authentication via Keycloak integrated directly into the UI (no visible redirect).
-
Repository Management Public/Private creation, secure deletion, permission-filtered listing.
-
Smart Agent (CLI)
plectr init/save/clone- Intelligent
.gitignorehandling and automatic exclusion of heavy folders (node_modules,target) - Support for cloning empty repositories (“Void State”)
-
Advanced Visualization
- AI:
.safetensorsmetadata inspection (layers, params) - Data: SQL preview on CSV/Parquet files
- Code: Syntax highlighting and Markdown rendering
- AI:
-
Security Personal CLI access tokens, RBAC (Private repos invisible to non-members)
- Real-time timeline (WebSockets)
- Semantic search (pgvector)
- Resilient uploads for files >50GB (Tus protocol)
- Rust (Axum) — High-performance API
- PostgreSQL 16 — Relational metadata & RBAC
- SeaweedFS — Distributed S3-compatible storage
- Next.js 15 (App Router) + Tailwind v4
- Design: “Ultimate” glassmorphism, fluid animations, deep dark mode
- Auth: NextAuth.js connected to Keycloak via Direct Grants
- Rust — Single binary, no runtime dependencies
- Performance — File scanning via
ignore(ripgrep engine), Blake3 hashing
- Docker & Docker Compose
- Rust (Cargo) & Node.js 20+
Create the file infra/.env (do not commit!):
POSTGRES_USER=plectr
POSTGRES_PASSWORD=change_me
KEYCLOAK_ADMIN_PASSWORD=change_me
NEXTAUTH_SECRET=generate_with_openssl
KEYCLOAK_CLIENT_SECRET=get_from_keycloak_consolecd infra
docker compose up -dcd agent
cargo install --path .- Go to
http://localhost:3000(or your domain). - Log in.
- Create a repo called
my-project. - In a terminal:
# Retrieve your token in Settings > Tokens on the UI
plectr login
plectr init --name my-project
plectr save -m "Initial resonance"Lead Architect: Raphaël Bourgeat License: Apache License, Version 2.0