/build - Build the project
Build the toolbox project.
Usage
- •
/build- Build all crates in debug mode - •
/build release- Build all crates in release mode - •
/build cli- Build only the CLI - •
/build wasm- Build the Zellij plugin (WASM)
Instructions
When the user runs this skill:
- •Parse the argument to determine what to build
- •Run the appropriate cargo command:
- •No args or "all":
cargo build - •"release":
cargo build --release - •"cli":
cargo build -p toolbox-cli - •"wasm":
cargo build -p toolbox-zellij --target wasm32-wasip1 --release
- •No args or "all":
- •Report any errors clearly
- •On success, show the built artifacts location