Interactive proposal site for integrating
kompress-ultrainto Headroom.
Live URL: https://proposal.vaked.dev
GitHub Repository: https://github.com/peterlodri-sec/proposal.vaked.dev
This is a zero-build-step, pure static website utilizing HTML5, Tailwind CSS (via CDN), and Vanilla JavaScript.
To run the website locally, spin up any static file server from the root directory:
# Using Python
python3 -m http.server 8000
# Using Node / npx
npx serve
# Using Bun
bunx serve .Open http://localhost:8000 in your browser.
- index.html - The main webpage layout, styled with Tailwind CSS, including the Hero, Provenance section, Paradox Simulator, Benchmarks, and Interactive Benchmark Chart.
- app.js - Contains the interactive logic for the Context Compressor Playground, Voting Ensemble Paradox Simulator, and Benchmark Visualization.
- Hosting Platform: Cloudflare Pages
- Deployment Pipeline: Connected directly to the
mainbranch of this GitHub repository. - CI/CD Behavior: Any commit pushed to the
mainbranch triggers an automatic build and deployment on Cloudflare. - Custom Domain: Configured in the Cloudflare Pages dashboard as
proposal.vaked.dev(proxied through Cloudflare DNS).
This repository is a presentation layer for a larger research and development ecosystem:
- ultrameshai (The Substrate): The big-picture decentralized agent stack (UDS, framed Protobuf, capability-based routing, and sandboxed runtimes).
kompress-ultra(The Memory Engine): The ModernBERT-based context compression model (kompress-v8) described on this site, designed to make long-running agent loops cheap and fast.- loopkit: The four-phase autonomous state machine that orchestrated the training runs for the
kompressmodel series. - pocoo.vaked.dev: The chronological log registry hosting the telemetry and results of all training runs.
- headroom: The agent framework where this compression technology is being proposed as a core middleware (PR #1419 / PR #1400).