Skip to main content

Harness Agent Banner

Production-grade agent runtime built on the Harness theory — a thin, production-ready façade over Deep Agents.

Python 3.11+ License: MIT PyPI Code Style: Ruff GitHub stars

Highlights · Overview · Core Technology · Features · Quick Start · Contents

English · 中文


Harness Agent is a production-grade agent runtime built on the harness engineering theory. At its core it is a thin, battle-tested encapsulation and engineering layer around Deep Agents — we take the elegant create_deep_agent primitive from Deep Agents and package it with everything you need to run agents in production: multi-provider model routing, persistent memory, browser/search tools, a multi-agent registry, pluggable storage backends, and a terminal CLI.

💜 A tribute to Deep Agents. Harness Agent stands on the shoulders of Deep Agents (by the LangChain team). Our HarnessAgent ultimately delegates to deepagents.create_deep_agent, and everything else — model routing, backends, tiered memory, the agent registry, CLI, and ACP — is the engineering we added on top. Deep Agents gives us the agentic foundation; Harness gives it a home for production.

✨ Highlights

Feature Description
🧩 Built on Deep Agents A faithful, production-focused facade over deepagents.create_deep_agent — kudos to the Deep Agents project
🔀 Model routing ChatModelFactory with OpenAI, Anthropic, AWS Bedrock, and 17 editable provider presets
🧠 Persistent memory harness-memory middleware with tiered L0→L3 distillation
🛠️ Rich toolset Browser automation, web search, file ops, sub-agents, and MCP tools out of the box
🗂️ Multi-agent registry AgentManager runs many isolated agents in one process
💾 Pluggable backends Local disk, S3, COS, or PostgreSQL as the agent workspace
🔌 ACP integration A stdio ACP server so IDE / terminal AIs can drive your agent
🔒 Safety built-in Tool guardrails, filesystem permissions, and PII redaction
💬 Teams A peer inbox for agent-to-agent messaging
⌨️ Terminal CLI Interactive chat, provider/skill config, and agent management

📌 Overview

Harness Agent is a library (not an app) that turns Deep Agents into a deployable runtime. A single HarnessAgentManager owns a registry of agents; each agent wires together a model, a set of tools/skills, a memory backend, and a LangGraph checkpoint — all assembled through the harness layering discipline (L0 I/O helpers → L1 workspace facade → L2 business logic → L3 assembly).

Harness Agent's design goal: let you build a production-grade agent from Deep Agents in a few lines of code, while keeping model choice, memory, storage, and safety swappable without rewriting your agent.

🧠 Core Technology

Layer Technology
Language Python 3.11+
Agent core Deep Agents (create_deep_agent)
Graph runtime LangGraph + SQLite checkpoint
Model routing ChatModelFactory (OpenAI / Anthropic / Bedrock + 17 presets)
Memory harness-memory middleware
Browser / search harness-browser + web search
Workspaces BackendWorkspace: local / S3 / COS / PostgreSQL
ACP agent-client-protocol
Build / quality hatchling · ruff · mypy · pytest

🤔 Features

Agent runtime

  • HarnessAgentManager — a registry that creates, lists, and streams many agents in one process.
  • HarnessAgent — exposes call, stream, stream_events, aget_history, and cancel.
  • Checkpointing via LangGraph AsyncSqliteSaver (or a harness-memory saver) for resumable chats.

Model routing & providers

  • ChatModelFactory resolves a model name to the right client.
  • First-class providers: OpenAI (incl. OpenAI-compatible via base_url), Anthropic, and AWS Bedrock (optional [bedrock] extra).
  • 17 user-editable provider presets, including Hunyuan, Kimi, GLM, DeepSeek, MiniMax, and Moonshot.

Memory (tiered)

  • Each turn is captured as L0 raw events, then distilled asynchronously into L2 atoms (AtomCards) and L3 entity pages.
  • Powered by the harness-memory middleware; memory travels with the workspace.

Tools & skills

  • Built-in tools: browser (harness-browser), web search, files, sub-agents, and MCP tools.
  • Skills come from the Deep Agents skills middleware; manage them per agent via the CLI.

Multi-agent & collaboration

  • Multiple isolated agents per process via AgentManager + registry.
  • Teams peer inbox for agent-to-agent messaging.
  • ACP stdio server so external IDE / terminal AIs can invoke your agent.

Safety

  • SecurityPolicy with tool guardrails, filesystem permissions (FilesystemPermission), and PII redaction middleware.

CLI

harness-agent provides: init, chat, agent, config (e.g. config provider add), skill, and update.

🚀 Quick Start

Prerequisites

  • Python 3.11+
  • A model provider API key (OpenAI / Anthropic / Bedrock / compatible)

1. Install

# Core SDK — agent runtime, model routing, tools, skills, backends
pip install orcakit-harness-agent

# With the terminal CLI — interactive chat, config, skill management
pip install orcakit-harness-agent[cli]

# Multiple extras — comma-separated inside one pair of brackets (quote for the shell):
pip install 'orcakit-harness-agent[object-storage,desktop]'
pip install 'orcakit-harness-agent[cli,all]'

Optional dependency extras (install only what you need; missing extras fail at use-time with an install hint):

Extra What it adds
cli Terminal CLI (harness-agent)
bedrock AWS Bedrock provider
object-storage Tencent COS + Alibaba OSS + Huawei OBS SDKs
desktop Desktop screenshot / input (mss, pynput, pillow)
web-search-all All web-search backends (Tavily / Brave / Google)
remote-backends Postgres / upstream S3 via deepagents-backends (Python ≥3.12)
observability Langfuse
acp ACP agent runner
all All library feature extras above (excludes cli; use [cli,all] for both)

2. Initialize & configure

harness-agent init
harness-agent config provider add   # choose a provider and paste your key

3. Chat

harness-agent chat

Programmatic use

from harness_agent import HarnessAgentManager, HarnessAgentConfig, ProviderConfig, ChatRequest

manager = HarnessAgentManager()
agent: HarnessAgentConfig = manager.create_agent(
    name="assistant",
    provider=ProviderConfig(name="openai", api_key="sk-..."),
    model="gpt-4o",
)
request = ChatRequest(message="Summarize the Harness theory in one paragraph.")
async for chunk in agent.stream(request):
    print(chunk.delta, end="")

📑 Contents

📖 CLI reference

Command Description
harness-agent init Bootstrap a workspace and config
harness-agent chat Interactive chat with an agent
harness-agent agent Create, list, and manage agents
harness-agent config Provider / model configuration (config provider add)
harness-agent skill Enable / disable per-agent skills
harness-agent update Check for and install updates

📁 Project layout

src/harness_agent/
  agent.py          facade over deepagents.create_deep_agent
  manager.py        AgentManager — multi-agent registry
  config/           configs, provider & model presets
  llm/factory.py    ChatModelFactory — model routing
  backends/         BackendWorkspace — local / S3 / COS / Postgres
  builtin/          tools + skills + seed files
  middleware/       model_router, skill_filter, tool_guard, memory, pii, ...
  memory/           MemoryRuntime (harness-memory wrapper)
  protocols/        langgraph / openai / mcp streaming
  acp/             ACP stdio server
  teams/           peer inbox
  cli/             terminal CLI

🛠️ Development

Prerequisites: Python 3.11+, uv

make install          # pip install -e ".[cli,dev]"
make all              # lint + typecheck + test

🤝 Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Run make all before submitting
  4. Open a Pull Request

Module boundaries and coding conventions: AGENTS.md.

🔗 Related projects

Project Description
deepagents The agentic foundation Harness Agent wraps — ❤️ tribute
harness-memory Memory system behind the tiered recall
harness-browser CDP browser automation used by the agent
harness-gateway Multi-platform IM channel bridge
Octop The self-hosted assistant that composes the Harness stack

📄 License

This project is licensed under the MIT License.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

orcakit_harness_agent-0.9.9.tar.gz (1.1 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

orcakit_harness_agent-0.9.9-py3-none-any.whl (1.3 MB view details)

Uploaded Python 3

File details

Details for the file orcakit_harness_agent-0.9.9.tar.gz.

File metadata

  • Download URL: orcakit_harness_agent-0.9.9.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.7

File hashes

Hashes for orcakit_harness_agent-0.9.9.tar.gz
Algorithm Hash digest
SHA256 febad6e400c8d283fb744ee051fff664e0333ae4b182b080a44e9542f2d70393
MD5 0742092a961ca26bb306b440052a7f7a
BLAKE2b-256 378fce38a459978cb73ccb90d8c240236e7eb570e5373f680d00ea96e8421902

See more details on using hashes here.

File details

Details for the file orcakit_harness_agent-0.9.9-py3-none-any.whl.

File metadata

File hashes

Hashes for orcakit_harness_agent-0.9.9-py3-none-any.whl
Algorithm Hash digest
SHA256 87a9c0db58f787d3ec63d08454d872361e5e396664393d50d60c1d7012e35579
MD5 ed56f5f4064a4b81086fe71ec984f31a
BLAKE2b-256 760932b99af4e340470dc6dd67f90e4e431f4b7837e9b5f4536d730eca788117

See more details on using hashes here.

Release history Release notifications | RSS feed

1.0.4

2 files

1.0.3

2 files

1.0.2

2 files

1.0.1

2 files

1.0.0

2 files

0.9.27

2 files

0.9.26

2 files

0.9.25

2 files

0.9.24

2 files

0.9.23

2 files

0.9.22

2 files

0.9.21

2 files

0.9.20

2 files

0.9.19

2 files

0.9.18

2 files

0.9.17

2 files

0.9.16

2 files

0.9.15

2 files

0.9.14

2 files

0.9.13

2 files

0.9.12

2 files

0.9.11

2 files

0.9.10

2 files

This release

0.9.9 This release

2 files

0.9.8

2 files

0.9.7

2 files

0.9.6

2 files

0.9.5

2 files

0.9.4

2 files

0.9.3

2 files

0.9.2

2 files

0.9.1

2 files

0.8.9

2 files

0.8.8

2 files

0.8.7

2 files

0.8.6

2 files

0.8.5

2 files

0.8.3

2 files

0.8.2

2 files

0.8.1

2 files

0.8.0

2 files

0.7.2

2 files

0.7.1

2 files

0.7.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page