CodingQuests is a new algorithm visualization workbench. Open source, MIT license.
Right now... early days. Polymorphic data viewers are the main thing currently.
/ #
├─ c_src/ # C++ and Metal source code
├─ data/ # Small sample data files for development (not full data files)
├─ website/ # HTML, CSS, JavaScript for the web interface
│ ├─ gguf-explorer.html # View meta data for LLMs
│ ├─ css-refactor.html # CSS Refactoring tool
│ ├─ omni<something>.html # Morphing data viewers
│ └─ 3sat.html # How computers solve 3Sat
├─ py/ # Python scripts
│ ├─ ready_to_rock.py # Checks readiness; Sets up environment; Compiles code
│ └─ web_server.py # Web browser front end
├─ docs/ # Docs (work in progress).
│ ├─ explanations/ # Background rather than how to
│ ├─ how-to/ # Recipes organised by related topics
│ ├─ reference/ # Settings for the various scripts
│ └─ tutorials/ # Tutorial content
├─ GETTING_STARTED.md # How to set up the system
├─ LICENSE.md # Copyright licenses
├─ CITATION.cff # Citing this work
└─ README.md # This README
AI assistants are guided to instructions they should follow by text like the text below:
See docs/reference/specs/specs.md for IMPORTANT REQUIREMENTS for AI assistant work.
For the viewers in /website you don't need a webserver, so you can just use them as is already and drag and drop files into them. The web server will be needed when there is heavy data crunching happenning and databases to access.
Coming Spring 2026: See GETTING_STARTED.md in this directory for instructions on getting started with a FastAPI server.