curl -fsSL https://qernelzoo.com/install.sh | bash
QernelGif1.mp4
An agentic CLI to prototype and share quantum code.
Looking for the Qernel Zoo? Go to qernelzoo.com.
Qernel is currently in a development preview and is subject to change. To be notified of all major changes, sign up for the Zoo.
Since this project is under active development, the best way to install qernel
is through our nightly builds:
curl -fsSL https://qernelzoo.com/install.sh | bash
Otherwise, you can build from source:
git clone https://github.com/computabeast/qernel.git
cd qernel
cargo install --path .
# Verify installation
qernel --help
The main value of the Qernel CLI is to decrease the time it takes to convert quantum concepts in literature and math to runnable quantum programs. The current CLI offers a streamlined way to do so:
qernel new [YOUR_PROJECT_NAME] --template
This will create a Git repository named my-project
with the following structure:
my-project/
├── README.md
├── .gitignore
├── src/ # Your code here
│ ├── __init__.py
│ ├── main.py
│ └── tests.py
├── .qernel/ # Environment were agentic work happens
│ ├── README.md
│ ├── spec.md
│ ├── benchmark.md
│ ├── qernel.yaml # Qernel agent configuration file
│ ├── requirements.txt
│ └── .venv/
└── .git/
You can then prototype by pasting instructions in .qernel/spec.md
, or automatically download and prototype a paper from the arXiv. A more comprehensive guide to using the prototype feature can be found in src/README.md.
qernel prototype
Or, one-shot prototype an arXiv paper into a fresh project:
qernel prototype --arxiv https://arxiv.org/abs/quant-ph/9605005
Quantum code can be specifically difficult to read through, mainly do the fact that lots of advanced math is abstracted away in helper functions. While this helps for readability, it makes experimenting and understanding different packages a pain. If you run:
qernel explain path/to/file.py
Qernel can analyze a file piece by piece and output a text explanation for each section, e.g.:
You can also output results of the file to Markdown by adding the --markdown
flag:
qernel explain
works best for files over 1000 lines, but we're working on larger context sizes.- Run
qernel explain --help
to see the full functionality.
- This project currently relies on AI models that are not optimized for quantum computing concepts/programming, and therefore may not always produce accurate results. We are actively working to solve this issue. However, we've seen strong potential in AI models to mathetmatically reason (see here, here), and expect this accuracy gap to decrease over time.
- The core infrastructure logic to edit and maintain files in a repository was ported over from the Codex CLI, and as a result, currently only works with OpenAI models. The main agent loop natively supports the
codex-mini-latest
andgpt-5-codex
models, if you'd like to use another model, you might need to edit the code and rebuild until we extend the support. - You currently need to use your own OpenAI API key to access the models, you can create an account and get one from the OpenAI API Platform site.
- We're actively working to migrate away from the OpenAI API to Ollama, which will allow you to run your own models locally on your computer, access a suite of open source models, or use a cloud model if you wish.
- For one-shot prototyping of arXiv papers, it's highly recommended to use
gpt-5-codex
with detailed implementation notes inspec.md
. The model is surprisingly good if you tell it exactly what you want. The drawbacks are that it's expensive. - For smaller examples that do not involve high context,
codex-mini-latest
with a well formatted spec file and well written tests can often get the job done. - The agents looks at the tests in
src/tests.py
to form its implementation, and will automatically run its solutions against the test suite upon each iteration to mold its implementation. You can set the--max-iter
flag to limit how many times it tries. Simple tests can significantly improve and speed up the implemetation process.
The qernel
CLI also makes it easy to upload projects to the Qernel Zoo, a hub to collaborate and share quantum computing experiments. You can login to the Zoo with:
qernel auth
And then enter in your PAT from the Zoo website. You can then push and pull projects in the same way you would use Git/Github.
qernel push <URL>
qernel pull <REPO> <DEST>