Local visualization dashboard for parsing Mythos Router MEMORY.md files and SWD protocols.
Mythos Orb is a dashboard built to transform the raw engineering logs of Mythos Router into an accessible, searchable, and readable engineering trace.
It provides real-time insights into adaptive thinking buffers, reality-alignment checks, and codebase mutations effectively serving as the recorder for your AI-augmented development sessions.
Navigate through sessions with millisecond precision. Every action, verification, and drift detection event is indexed and presented in a interactive timeline.
Integrated with Git and the Mythos Strict Write Discipline protocol, the Orb provides side by side diffs that visualize exactly how the model is proposing to mutate your codebase before any write hits the disk.
Watch the models internal "thinking" state. The Orb surfaces the reasoning steps that lead to specific architectural decisions, giving you full visibility into the "black box" of agentic routing.
git clone https://github.com/thewaltero/mythos-orb.git
cd mythos-orb
npm installThe Orb requires a local Fastify server to parse your MEMORY.md and interface with Git.
npm run serverIn a separate terminal, launch the Vite dev server:
npm run devThe dashboard will be active at http://localhost:5173.
The server environment can be tuned via several variables:
| Variable | Default | Description |
|---|---|---|
MEMORY_PATH |
../MEMORY.md |
Path to the Mythos Router memory file. |
REPO_ROOT |
dirname(MEMORY_PATH) |
The root of the repository being monitored. |
PORT |
3333 |
Internal API port for the Fastify engine. |
- Frontend: React 19 + TypeScript + Vite
- Styling: Tailwind CSS 4.0 + Lucide React
- Engine: Fastify + Node.js (parsing
MEMORY.md& Git diffs) - High-Fi Diffs:
react-diff-view+refractor


