EveryDev.ai
Subscribe
Home
Tools

3,505+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. HAR
    HAR icon

    HAR

    Agent Harness

    Open-source, agent-agnostic harness for running fleets of coding agents in parallel with deterministic validation gates, verifiable proof, and full observability.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully open-source under Apache 2.0, free to use, modify, and distribute.

    Engagement

    Available On

    Linux
    iOS
    Web
    API
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Agent HarnessMulti-agent SystemsAI Coding Assistants

    Alternatives

    Oh My OpenAgentjcodePrime Agent
    Developer
    OS FactoryDublin, IrelandEst. 2026

    Listed Aug 2026

    About HAR

    HAR is an open-source framework built by OS Factory that gives teams a structured way to run multiple coding agents concurrently on the same repository. Licensed under Apache 2.0 and available on GitHub, it works with Claude Code, Cursor, Codex, and any MCP-compatible agent without vendor lock-in. The project is sponsored by Kerno, a runtime code and security review tool for coding agents.

    What It Is

    HAR (the open harness for multi-agent coding workflows) is a CLI and MCP server that turns any repository into a fleet-ready environment. It introduces a machine-readable .har/ folder — a single contract that any supported coding agent reads the same way — replacing the scattered knowledge typically spread across READMEs, CLAUDE.md files, Cursor rules, and CI YAML. The harness handles isolation, deterministic verification, and evidence collection so that agents can focus on writing code and reviewers can trust the output.

    How the Isolation Model Works

    The core problem HAR addresses is that multiple agents working on the same repository collide: shared dev servers, shared databases, shared ports, and conflicting Git state. HAR solves this with a slot-per-agent model:

    • Each agent gets its own worktree on a dedicated branch
    • Each slot has dedicated ports and, where needed, its own database
    • The main checkout stays untouched throughout any agent's session
    • Slots can run concurrently without interfering with each other

    The workflow moves through five stages: Discover → Isolate → Build → Verify → Hand off. After verification passes, the session tears down but the branch and evidence trail remain for reviewers.

    Deterministic Verification and Evidence Trail

    A key design goal of HAR is making agent output trustworthy without requiring a human to re-run the checks themselves. Every task runs the same deterministic verify pipeline and produces a consistent result. A full verification captures a validated tree hash tied to the exact code that was checked, along with logs and artifacts. The har env verify command runs the project's real checks — typechecks, unit tests, API health, lint, browser E2E, Docker builds — through the same pipeline every time.

    The har env maintain command diffs the installed harness against current templates and flags drift before it causes a silent failure, addressing the common problem of hand-rolled scripts rotting as the stack changes.

    Mission Control Dashboard

    HAR ships with Mission Control, an open-source local dashboard that runs at localhost:3847. It provides:

    • Live slots view — every active slot with its worktree, branch, and preview URL
    • Run history — a timeline of every run with stage, trigger, duration, and status
    • Traceable results — every result links back to the validation stages that ran and the exact Git tree they checked
    • Artifact access — logs and artifacts accessible per run

    Plugin Ecosystem and Stack Support

    HAR uses profiles to adapt the harness to different project types: web apps (with per-slot ports and optional shared Docker infrastructure), CLI/library projects, and iOS apps (via Xcode and Swift with optional RocketSim flows). Plugins extend the harness with framework-specific stages:

    • Playwright — adds a browser-e2e stage with frontend, API health, and accessibility smoke specs
    • RocketSim — installs a rocketsim-flows runner for iOS simulator testing
    • Custom stages can be registered for project-specific checks

    Update: v0.47.0

    The latest release is v0.47.0, published on August 6, 2026. The repository was created in late June 2026 and has been actively developed, with the last push recorded on August 8, 2026. The project is written in TypeScript and installable globally via npm (npm install -g @osfactory/har). A hosted cloud offering with centralized observability and shared Mission Control for organizations is listed as coming soon on the project homepage.

    HAR - 1

    Community Discussions

    Be the first to start a conversation about HAR

    Share your experience with HAR, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully open-source under Apache 2.0, free to use, modify, and distribute.

    • Core HAR CLI and MCP server
    • Isolated agent slots with dedicated worktrees
    • Deterministic validation pipeline
    • Evidence trail with tree hash, logs, and artifacts
    • Mission Control local dashboard

    Capabilities

    Key Features

    • Isolated agent slots with dedicated worktrees, ports, and databases
    • Deterministic validation pipeline with consistent results
    • Verifiable evidence trail with tree hash, logs, and artifacts
    • Machine-readable .har/ contract compatible with any MCP agent
    • Mission Control local dashboard for fleet observability
    • Plugin system for framework-specific stages (Playwright, RocketSim)
    • CLI and MCP server interfaces
    • Profile-based stack support (web app, CLI/library, iOS)
    • har env maintain for drift detection
    • Zero vendor lock-in — open standard living in the repo

    Integrations

    Claude Code
    Cursor
    Codex
    Playwright
    RocketSim
    Vitest
    ESLint
    Docker
    Xcode
    iOS Simulator
    npm
    API Available
    View Docs

    Demo Video

    HAR Demo Video
    Watch on YouTube

    Ratings & Reviews

    No ratings yet

    Be the first to rate HAR and help others make informed decisions.

    Developer

    OS Factory

    OS Factory builds open infrastructure for multi-agent software development workflows. The team, led by Antoine Frau, develops HAR — an open-source, agent-agnostic harness that lets fleets of coding agents run concurrently on any repository with deterministic validation and full observability. OS Factory focuses on open standards that live in the repo itself, ensuring portability across whichever coding agent or toolchain teams adopt.

    Founded 2026
    Dublin, Ireland
    10 employees

    Used by

    LetzAI
    Germen
    Bewise
    Read more about OS Factory
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Oh My OpenAgent icon

    Oh My OpenAgent

    An open-source agent harness for CLI-based AI coding workflows, featuring specialized agents, parallel execution, session continuity, and 40+ lifecycle hooks.

    jcode icon

    jcode

    An open source terminal coding agent written in Rust, featuring agent swarms, semantic memory, and extreme resource efficiency for multi-session AI workflows.

    Prime Agent icon

    Prime Agent

    An open-source self-improving RLM (Recursive Language Model) agent for coding workflows and long-running autonomous tasks, built by Prime Intellect.

    Browse all tools

    Related Topics

    Agent Harness

    Infrastructure, orchestrators, and task runners that wrap around LLM coding agents — covering session management, context delivery, worktree isolation, architecture enforcement, and issue-to-PR pipelines.

    137 tools

    Multi-agent Systems

    Platforms for creating and managing teams of AI agents that can collaborate.

    307 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    730 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions