CLI platform for physical AI developers to register project repos and clone them on demand.
Project description
cadenza-cli
A command-line platform for physical-AI developers: scaffold a robot project, describe a multi-phase mission as JSON, run it in simulation, and turn the rollouts into fine-tuning data for a vision-language-action policy.
Run cadenza with no arguments for an interactive shell, or pass a command to
run it once (cadenza env run my-project --headless).
Commands
| Command | Description |
|---|---|
mkdir <name> |
Scaffold a project: env.json + main.py + requirements.txt + README. |
env init <name> |
Light scaffold — env.json only. |
env show <name> |
Render the mission's zones, objects, and phases. |
env run <name> [--headless] [--policy scripted|lora] [--xml <path>] |
Execute the mission, log every tick, and run the LLM judge. |
env stats <name> |
Motion + reward analytics across cached runs. |
env cache <name> [--keep-last <n>] [--older-than <dur>] [--clear] |
Show or prune the project's .cadenza-env/ runs. |
env finetune <name> <log> [-o <file>] |
Emit (prompt, action, reward) records from a run log for VLA training. |
env train <name> |
Groq LLM-as-Judge rewrites the project's system prompt (needs GROQ_API_KEY). |
env action create <project> <name> [--group --steps '<a,b,c>'] [--custom --frames-file <file>] [--robot <name>] |
Build an action (group macro or custom keyframes); saved locally + synced to your account. Requires login. |
env action list |
List your account's actions. Requires login. |
env action show <project> <name> |
Inspect a local action. |
env action remove <project> <name> |
Delete a local action. |
env lora add <project> "<goal>" --steps '<...>' [--image <path>] |
Add a goal→action training example. |
env lora data <project> [--finetune <path>] |
Show the training dataset. |
env lora finetune <project> [--epochs <n>] [--lr <lr>] [--rank <r>] [--gate] |
Fine-tune the LoRA action head; --gate runs the governance scorecard. |
env lora eval <project> [--promote] |
Run the governance scorecard on the trained adapter. |
env lora decode <project> "<goal>" |
Decode a goal into actions via the trained adapter. |
login <name> <token> |
Sign in; saves a session to ~/.cadenza/config.json. |
logout |
Forget the saved session. |
whoami |
Show the signed-in account. |
apikey [--reveal] |
Show your token as a megan-tk API key + a snippet to use cadenza as an API in your project. Requires login. |
usage [--days <n>] |
Show your megan-tk API usage: per-route calls + a session/anticipator rollup. Requires login. |
help |
Show the command table. |
clear |
Clear the screen. |
--version |
Print the version and check for updates. |
Use cadenza as an API (megan-tk SDK)
Your Cadenza sign-in token doubles as an API key — drop the SDK into any
project and drive the hosted megan-tk
symbolic governance directly. No Supabase credentials; the server meters every
call against your account so usage (CLI) / MeganTK.usage() (SDK) can report it.
from cadenza_cli import MeganTK
tk = MeganTK(api_key="<your-token>") # or MeganTK() to auto-resolve it
# milestone path — act where the token is focused
with tk.session("pick up the red cube", ["reach", "grasp", "lift"]) as s:
d = s.step(reached=[0], obstacles=[{"id": "wall", "milestone": 1}])
if d.adapt:
handle(d.frontier)
# disturbance anticipator — learn a rhythm, pick a protective action
a = tk.anticipator(actions=["brace", "dodge"])
a.disturbance(t=1.2); a.outcome("brace", saved=True)
p = a.protect(t=3.4) # p.should_protect, p.best_action
print(tk.usage()) # your metered consumption
The key is resolved from the api_key argument, CADENZA_API_KEY /
CADENZA_TOKEN, or the signed-in CLI session. See
examples/megantk_quickstart.py. Run apikey
in the CLI for a ready-to-paste snippet.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cadenzalabs-0.1.1.tar.gz.
File metadata
- Download URL: cadenzalabs-0.1.1.tar.gz
- Upload date:
- Size: 198.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b752418c894638b3bd92a40ea704954f97730b88720730dd2068f90df1b6b2a
|
|
| MD5 |
8a100214117ce4a17ba60037e95d6278
|
|
| BLAKE2b-256 |
1dff0e2eb068145230f7eead7d8d48db4b7e9fea9d4afcc8985bc935b596a1c9
|
File details
Details for the file cadenzalabs-0.1.1-py3-none-any.whl.
File metadata
- Download URL: cadenzalabs-0.1.1-py3-none-any.whl
- Upload date:
- Size: 170.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b6c2ec4a9ba29c261852437b8d965e7ed9829004e926c6a8268a523bedaff62
|
|
| MD5 |
551fa5ec2c75dbab951bef811d2feee4
|
|
| BLAKE2b-256 |
52061773024d63eea91ecaf26e6c745c0c28ae01055d66177dd1203a4e4e4f26
|