A portable gate that resolves to the host project's command for a role (e.g. project("test") → npm test / pytest / cargo test). Use this in skills meant to run across projects, instead of hard-coding a command.
project("test")
npm test
pytest
cargo test
A portable gate that resolves to the host project's command for a role (e.g.
project("test")→npm test/pytest/cargo test). Use this in skills meant to run across projects, instead of hard-coding a command.