Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ checked-in `examples/hello-world` package so the commands stay tied to the repo.
Build the native CLI from the OSS workspace:

```bash
cd oss
cargo build --manifest-path crates/Cargo.toml -p runx-cli
```

Expand Down
7 changes: 3 additions & 4 deletions docs/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ The npm CLI package is `@runxhq/cli` and exposes the `runx` binary.
Start with the checked-in hello-world skill:

```bash
cd oss
cargo build --manifest-path crates/Cargo.toml -p runx-cli
export RUNX_RECEIPT_DIR="$(mktemp -d)"
crates/target/debug/runx skill examples/hello-world \
Expand Down Expand Up @@ -668,9 +667,9 @@ coverage.
## Build And Pack

```bash
pnpm --dir oss build
pnpm --dir oss test tests/cli-package.test.ts
cd oss/packages/cli
pnpm build
pnpm test tests/cli-package.test.ts
cd packages/cli
Comment on lines +670 to +672
npm pack --dry-run --json
```

Expand Down
1 change: 0 additions & 1 deletion docs/skill-to-graph.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ The gates are intentionally narrow:
Use the graph harness as the executable contract:

```bash
cd oss
cargo build --manifest-path crates/Cargo.toml -p runx-cli
crates/target/debug/runx harness examples/hello-graph/harness.yaml --json
```
Expand Down