Agent Harness Kit

Agent Harness Kit

Structured multi-agent workflows for your codebase

enmanuelmag
@enmanuelmag
Published on Jun 14, 2026
Visit site
1 PeerPush
🔥
Awarded
Trending Now
PeerPush

Details

Pricing
Free
Platforms
CLIDesktop

Discovery signals

How AI and people discover Agent Harness Kit on PeerPush

PersistenceRead streakConsecutive days, counting back from today, that AI has read this listing every single day.
33 days

Read by AI every day

Read by AI every day for the last 33 days.
Search index all-timeSearch indexTimes a search engine AI indexer, such as OAI-SearchBot, crawled this listing.
981 crawls

ChatGPT Search indexer

By OAI-SearchBot, the ChatGPT Search indexer, since launch.

About Agent Harness Kit

`agent-harness-kit` (ahk) is a thin CLI + library you drop into any repo to give your AI agents structure. It scaffolds a 4-role workflow (Lead → Explorer → Builder → Reviewer), a local SQLite task backlog with atomic claiming, lifecycle health gates, and a full audit trail — all without touching any cloud service or requiring API keys. Why: Every time I handed a task to Claude Code or OpenCode, the agent would just roam. It had no memory of what it already explored, no way to coordinate with a second agent, and no gate to check if the codebase was even in a healthy state before it started writing. I wanted something closer to how senior engineers actually work: a clear role per agent, a shared task list, and a mandatory verification step before anything is marked done. The architecture is deliberately boring: one `agent.harness.ts` config file, a `.harness/` directory with a SQLite DB (using Node ≥ 22's built-in `node:sqlite` — zero native deps), and markdown agent definitions your LLM reads at session start. It works with Claude Code, OpenCode, Cursor, or any tool that can read files. ``` npx ahk init # scaffold the harness into your repo npx ahk health # verify the environment before agents start npx ahk status # see task backlog and agent activity ``` **Link:** https://github.com/enmanuelmag/agent-harness-kit Would love to hear your thoughts — especially if you've tried other approaches to multi-agent coordination!

Screenshots

Screenshot 1 of Agent Harness Kit
Screenshot 2 of Agent Harness Kit
Screenshot 3 of Agent Harness Kit

Reviews (2)

Average 5.0 out of 5

5.0

Based on 2 reviews

5
2
4
0
3
0
2
0
1
0

Excellent toolkit for building structured multi-agent workflows for codebases!

Comments (1)

enmanuelmag
@enmanuelmag

I got tired of AI agents roaming my codebase. So I built a harness layer. Drop it into any project with, and your agents get a task backlog, defined roles, a health gate, dashboard to trace everything