@bilink-ai/cli
v0.1.0
Published
Bilink CLI for agent-facing workflows
Readme
bilink-cli
bilink-cli is Bilink's command-line tool for agent-facing workflows.
The project publishes two artifacts:
- npm package:
@bilink-ai/cli - Rust crate:
bilink-cli
Structure
src/: TypeScript CLI entrypoint and command orchestrationrust/: Rust crate for native agent runtime commandstests/: Node CLI smoke tests
Commands
bilink versionbilink doctorbilink agent greet --name <name>bilink native version
Local Development
pnpm --filter @bilink-ai/cli build:ts
pnpm --filter @bilink-ai/cli build:rust
pnpm --filter @bilink-ai/cli typecheck
pnpm --filter @bilink-ai/cli testPublishing
npm
pnpm --filter @bilink-ai/cli publish --access public --registry https://registry.npmjs.org/crates.io
cargo publish --manifest-path bilink-cli/rust/Cargo.tomlNative Bridge
The TypeScript CLI can call a locally built Rust binary when BILINK_CLI_NATIVE_BIN is set.
Without that variable, the JavaScript implementation remains fully usable.
