agentic-harness
Rust-native agent runtime, SDK, and CLI for software agents
File Explorer
- architecture.svg
- banner.svg
- flow.svg
- lib.rs
- runtime.rs
- Cargo.toml
- README.md
- lib.rs
- main.rs
- cli.rs
- Cargo.toml
- NON_GIT_EDIT.md
- README.md
- input.rs
- legacy_logs.rs
- lib.rs
- metrics.rs
- native_run.rs
- report.rs
- weights.rs
- score.rs
- Cargo.toml
- cloudflare-runtime.md
- connectors.md
- deploy-cloudflare.md
- deploy-github-actions.md
- deploy-gitlab-ci.md
- deploy-node.md
- execution-targets.md
- feature-status.md
- flue-migration.md
- http-session-env.md
- immediate-goals.md
- README.md
- release-smoke-test.md
- runtime-config.md
- virtual-sandbox.md
- greeter.md
- SKILL.md
- main.rs
- AGENTS.md
- Cargo.toml
- CLAUDE.md
- README.md
- agentic-harness.rb
- install.sh
- .gitignore
- AGENTS.md
- Cargo.lock
- Cargo.toml
- CHANGELOG.md
- LICENSE
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cargo
View Details ▼
cargo
Manage Rust projects and their module dependencies (crates).
Some subcommands such as `build` have their own usage documentation.
cargo search {{search_string}}
Search for crates:
cargo install {{crate_name}}
Install a binary crate:
cargo install --list
List installed binary crates:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
node
View Details ▼
node
Server-side JavaScript platform (Node.js).
node {{path/to/file}}
Run a JavaScript file:
node
Start a REPL (interactive shell):
node --watch {{path/to/file}}
Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):
serve
View Details ▼
serve
Static file serving and directory listing.
serve
Start an HTTP server listening on the default port to serve the current directory:
serve -p {{port}} {{path/to/directory}}
Start an HTTP server on a specific [p]ort to serve a specific directory:
serve {{[-C|--cors]}}
Start an HTTP server with CORS enabled by including the `Access-Control-Allow-Origin: *` header in all responses:
tar
View Details ▼
tar
Archiving utility.
Often combined with a compression method, such as `gzip` or `bzip2`.
tar cf {{path/to/target.tar}} {{path/to/file1 path/to/file2 ...}}
[c]reate an archive and write it to a [f]ile:
tar czf {{path/to/target.tar.gz}} {{path/to/file1 path/to/file2 ...}}
[c]reate a g[z]ipped archive and write it to a [f]ile:
tar czf {{path/to/target.tar.gz}} {{[-C|--directory]}} {{path/to/directory}} .
[c]reate a g[z]ipped (compressed) archive from a directory using relative paths:
