A local-first goal execution harness with deterministic review gates.
Project description
Agentic Harness
A small Python harness for running long-lived agent goals without turning your local scripts into a tangled control plane.
Agentic Harness gives you a project-local goal loop: start a goal, execute it through an adapter, save artifacts, run deterministic review, and stop before auto-continue loops get weird.
Project Links
- Examples include shell, coding-agent, the fix-failing-tests demo, local LLM, tmux, GitHub Actions, and real-world recipe examples.
- Release checklist documents the v0.6.9 release checks.
- PyPI trusted publishing documents the active publish workflow and external PyPI setup required for tokenless publishing.
- Repo artwork includes a social preview banner and square icon.
- Support the project via Buy Me a Coffee.
- Attraction plan captures public project positioning and follow-up ideas.
- CI workflow runs tests, ruff, mypy, compile smoke checks, package builds, wheel installs, and CLI smoke checks on Linux, Windows, and macOS.
Quick Start
pipx install git+https://github.com/moortekweb-art/agentic-harness.git
agentic-harness init
cat > .agentic-harness/config.yml <<'YAML'
version: 1
worker: shell
shell_command:
- python
- -c
- "import os; print('goal:', os.environ['AGENTIC_HARNESS_OBJECTIVE'])"
YAML
agentic-harness start "write a changelog for the last three commits"
agentic-harness continue && agentic-harness review
For one-shot local runs:
agentic-harness run "write a changelog for the last three commits"
Why This Exists
Most agent tooling lands in one of two places:
- Frameworks that are flexible but abstract enough that you still need to build the operational loop yourself.
- Internal scripts that work on one machine, with one naming scheme, one set of paths, and one operator.
Agentic Harness is the middle ground: a small state machine, adapter interface, artifact store, CLI, and deterministic review contract. It is meant for developers who already have useful local tools and want a safer way to run them as repeatable goals.
How It Works
goal text
|
v
pending -> planning -> in_progress -> review -> done
| |
v v
failed <----- failed
CLI ──> Supervisor ──> Worker adapter ──> local tool / tmux / CI / LLM
|
├── state.json
├── markdown reports
├── deterministic review result
└── loop guard
The core package has no systemd, Cloudflare, GPU, or server-specific assumptions. Runtime state lives in .agentic-harness/ inside your project.
Features
- Deterministic review gates: pass/fail criteria are code, not model vibes.
- Artifact-first execution: every goal writes structured JSON state and review data.
- Loop guard: auto-continue has a project-local circuit breaker persisted at
.agentic-harness/guard.json, so repeated CLI invocations share the same safety window. - State lock and active-goal guard: mutating commands acquire
.agentic-harness/state.lock, andstartrefuses to overwrite an unfinished active goal. - Adapter system: shell, coding-agent CLI, tmux, GitHub Actions, and OpenAI-compatible local LLM adapters are included.
- Local-model friendly: any model served through an OpenAI-compatible chat endpoint can be wrapped with deterministic review, including current 30B-40B local-model experiments such as Ornith 35B.
- Project-local config: no hardcoded absolute paths.
- Small public API:
Goal,Supervisor, andWorker.
Installation
Install as a CLI with pipx:
pipx install git+https://github.com/moortekweb-art/agentic-harness.git
After the first PyPI publish, install the released distribution with:
pipx install local-agentic-harness
The Python distribution name is local-agentic-harness so it can be reserved
on PyPI without colliding with the unrelated existing agentic-harness package.
The installed CLI command remains agentic-harness.
For development:
git clone https://github.com/moortekweb-art/agentic-harness.git
cd agentic-harness
python -m venv .venv
. .venv/bin/activate
python -m pip install -e ".[test]"
python -m pytest tests/ -q
Usage Examples
See examples/ for complete project-local examples with READMEs, safety notes, and expected output. For the critique-driven demo, see examples/fix-failing-tests-demo.
Shell Worker
.agentic-harness/config.yml
version: 1
worker: shell
shell_command:
- python
- -c
- "import os; print('goal:', os.environ['AGENTIC_HARNESS_OBJECTIVE'])"
agentic-harness start "summarize open TODOs"
agentic-harness continue
agentic-harness review
agentic-harness status
For a compact operator view instead of JSON:
agentic-harness status --format text
Local LLM Worker
from agentic_harness import Supervisor
from agentic_harness.adapters import LocalLLMAdapter
worker = LocalLLMAdapter(
endpoint="http://127.0.0.1:4000/v1/chat/completions",
model="local-model",
)
supervisor = Supervisor(project_dir=".", worker=worker)
supervisor.start("draft release notes for v0.6.9")
supervisor.continue_goal()
supervisor.review()
Adapters
Adapters implement one method: run(goal) -> WorkerResult.
from agentic_harness.core.worker import WorkerResult
class MyWorker:
def run(self, goal):
path = f".agentic-harness/runs/{goal.id}/output.txt"
# call your tool here
return WorkerResult(success=True, summary="done", artifacts=[path])
Then wire it into the supervisor:
from agentic_harness import Supervisor
supervisor = Supervisor(project_dir=".", worker=MyWorker())
Configuration
agentic-harness init creates .agentic-harness/config.yml.
version: 1
worker: noop
noop is a safe placeholder. It does not pass review by default because no real
worker ran. For a demo-only path, opt in explicitly:
version: 1
worker: noop
allow_noop_success: true
Shell worker configuration:
version: 1
worker:
type: shell
shell_command:
- make
- agent-goal
The shell adapter exposes:
AGENTIC_HARNESS_GOAL_IDAGENTIC_HARNESS_OBJECTIVE
Coding-agent worker configuration:
version: 1
worker:
type: coding_agent
coding_agent_command:
- codex
- exec
- --full-auto
- "{objective}"
coding_agent_transcript: .agentic-harness/runs/{goal_id}/coding-agent.log
review:
command:
- python
- -m
- pytest
- tests/
- -q
Tmux worker configuration:
version: 1
worker: tmux
tmux_command: "python worker.py --goal {goal_id}"
tmux_session_prefix: agentic-harness
Local LLM worker configuration:
version: 1
worker: local_llm
llm_endpoint: http://127.0.0.1:4000/v1/chat/completions
llm_model: local-model
GitHub Actions worker configuration:
version: 1
worker: github_actions
github_owner: moortekweb-art
github_repo: agentic-harness
github_workflow_id: ci.yml
github_token: token-from-your-secret-store
github_wait: true
github_api_version: 2026-03-10
Configuration is intentionally small and strict: unsupported schema versions, unknown keys, unsupported workers, malformed values, and workers without their required settings are rejected instead of silently ignored. Config files are parsed with PyYAML, so flat keys and grouped sections are both supported.
Review Helpers
The core review module includes small deterministic criteria factories:
from agentic_harness.core import (
DeterministicReviewer,
artifact_exists,
command_passes,
file_changed,
git_clean,
)
reviewer = DeterministicReviewer([
artifact_exists(".", ".agentic-harness/runs/example/report.md"),
command_passes(["python", "-m", "pytest", "tests/", "-q"]),
file_changed(".", "CHANGELOG.md"),
git_clean("."),
])
You can also configure common review gates in .agentic-harness/config.yml:
version: 1
worker:
type: shell
shell_command:
- make
- agent-goal
review:
command:
- python
- -m
- pytest
- tests/
- -q
git_clean: true
GitHubActionsAdapter dispatches workflows by default. Set github_wait: true
or wait_for_completion=True to wait for the exact workflow run returned by
GitHub's modern workflow dispatch API. Older GitHub API responses that do not
return a run URL fall back to polling workflow_dispatch runs created after the
dispatch request.
Public API
from agentic_harness import Goal, Supervisor, Worker
Contributing
Issues and pull requests are welcome. Good first contributions:
- Add adapter examples for common local coding agents.
- Improve the deterministic review helpers.
- Improve examples for common local workflows.
- Write docs for running the harness in a small team.
Keep the core small. If a feature assumes a particular server, model provider, or operator workflow, it probably belongs in an adapter or example.
License
MIT. Copyright (c) 2026 Michael / Moortekweb. See LICENSE and AUTHORS.md.
Support
If Agentic Harness helps your local AI workflow, you can support the project here:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file local_agentic_harness-0.6.9.tar.gz.
File metadata
- Download URL: local_agentic_harness-0.6.9.tar.gz
- Upload date:
- Size: 32.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aee185822ead0e3c6c36908b9d38b4982ffdfbbdf3da3d7fef5052dd81a232cc
|
|
| MD5 |
cfb607ec859fef7f1453b54cd44e37f0
|
|
| BLAKE2b-256 |
0feae222b557f981c47fe9248a328b9f87bf3c0ec2a7b1ee6490b21b1266b3fb
|
Provenance
The following attestation bundles were made for local_agentic_harness-0.6.9.tar.gz:
Publisher:
publish.yml on moortekweb-art/agentic-harness
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
local_agentic_harness-0.6.9.tar.gz -
Subject digest:
aee185822ead0e3c6c36908b9d38b4982ffdfbbdf3da3d7fef5052dd81a232cc - Sigstore transparency entry: 2077294214
- Sigstore integration time:
-
Permalink:
moortekweb-art/agentic-harness@d2487ca9d53757ac970c4cd4d1b68dbb4b488ab7 -
Branch / Tag:
refs/tags/v0.6.9 - Owner: https://github.com/moortekweb-art
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d2487ca9d53757ac970c4cd4d1b68dbb4b488ab7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file local_agentic_harness-0.6.9-py3-none-any.whl.
File metadata
- Download URL: local_agentic_harness-0.6.9-py3-none-any.whl
- Upload date:
- Size: 27.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c455bef32a5c6016534bf7c4d33f2c184b7cae2006b564f7ade79742bb5a78a
|
|
| MD5 |
6ca408ee9f88d22efd331963f356d336
|
|
| BLAKE2b-256 |
6da9fe7048248cd7d0805ac4dcdf1a3efb496340c0e597517f53faf2a066b608
|
Provenance
The following attestation bundles were made for local_agentic_harness-0.6.9-py3-none-any.whl:
Publisher:
publish.yml on moortekweb-art/agentic-harness
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
local_agentic_harness-0.6.9-py3-none-any.whl -
Subject digest:
1c455bef32a5c6016534bf7c4d33f2c184b7cae2006b564f7ade79742bb5a78a - Sigstore transparency entry: 2077294393
- Sigstore integration time:
-
Permalink:
moortekweb-art/agentic-harness@d2487ca9d53757ac970c4cd4d1b68dbb4b488ab7 -
Branch / Tag:
refs/tags/v0.6.9 - Owner: https://github.com/moortekweb-art
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@d2487ca9d53757ac970c4cd4d1b68dbb4b488ab7 -
Trigger Event:
release
-
Statement type: