Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
9 changes: 4 additions & 5 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,17 +667,17 @@ 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
```

The package must include `dist/index.js` and `dist/index.d.ts`, and `dist/index.js` must be executable.

## Boundary Rules

- `oss/` must not import from `cloud/`.
- `oss/` (this repository) must not import from `cloud/` (the private companion workspace, not part of this checkout).
- State-machine and policy packages remain pure.
- Rust owns trusted local runtime/execution, including sandbox, receipts,
policy, authority, payment, harness, built-in adapters, and external
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