Agentic Harness banner
codejunkie99 codejunkie99

Agentic Harness

Development community

Description

Rust-native agent runtime, SDK, and CLI for software agents

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

agentic-harness

[![License](https://img.shields.io/github/license/codejunkie99/agentic-harness?style=flat-square&color=e05d00)](LICENSE) [![Rust 2021](https://img.shields.io/badge/rust-2021_edition-e05d00?style=flat-square&logo=rust&logoColor=white)](https://www.rust-lang.org) [![v0.1.1](https://img.shields.io/badge/version-v0.1.1-e05d00?style=flat-square&logo=github)](https://github.com/codejunkie99/agentic-harness/releases) [![docs](https://img.shields.io/badge/docs-docs%2F-8b949e?style=flat-square&logo=readthedocs&logoColor=white)](docs/)

Build agents that read a repo, plan, edit files, run tests, and report back —
then ship the same binary to your laptop, CI, a remote Linux sandbox, or the edge.
Native Rust end to end. No JavaScript anywhere.



Architecture

Three-layer architecture: Your Rust Code → Harness (SDK · CLI · HTTP · Sessions) → Execution Targets

Full docs live in [`docs/`](docs/). Architecture, execution targets, runtime config, HTTP SessionEnv protocol, Cloudflare runtime, deployment guides, feature status, and release notes — all there.


Install

Tarball  ·  recommended
curl -L -o agentic-harness-v0.1.1.tar.gz \
  https://github.com/codejunkie99/agentic-harness/archive/refs/tags/v0.1.1.tar.gz
tar -xzf agentic-harness-v0.1.1.tar.gz
cd agentic-harness-0.1.1
./scripts/install.sh
export PATH="$HOME/.agentic-harness/bin:$PATH"
agentic-harness --version
Source checkout
git clone https://github.com/codejunkie99/agentic-harness.git
cd agentic-harness
./scripts/install.sh
export PATH="$HOME/.agentic-harness/bin:$PATH"
agentic-harness