mirror of
https://github.com/katanemo/plano.git
synced 2026-05-24 14:05:14 +02:00
Add crates/plano-cli/ as a full Rust rewrite of the Python CLI. Binary name: planoai. All subcommands ported: up, down, build, logs, cli-agent, trace, init. Config validation and Tera template rendering replace the Python config_generator. CI updated to use cargo test/build instead of Python test jobs.
9 lines
340 B
Markdown
9 lines
340 B
Markdown
---
|
|
name: build-cli
|
|
description: Build and install the Rust CLI (planoai). Use after making changes to plano-cli code to install locally.
|
|
---
|
|
|
|
1. `cd crates && cargo build --release -p plano-cli` — build the CLI binary
|
|
2. Verify the installation: `./crates/target/release/planoai --help`
|
|
|
|
If the build fails, diagnose and fix the issues.
|