Lite Harness
Description
Unified API for running OpenCode, Claude Code, Codex 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
lite-harness
Call all agent harnesses using the Claude Agent SDK format.
lite-harness manages:
- One TypeScript and Python interface for multiple agent harnesses
- Harness switching with
harness, model switching withmodel - Claude Agent SDK-compatible streaming messages and errors
Preview: the SDK is not published to npm or PyPI yet. Clone this repo to try it. If you want a packaged release, please [file an issue](https://github.com/LiteLLM-Labs/lite-harness/issues).
[](https://discord.gg/Nkxw3rm3EE)
Setup (clone)
git clone https://github.com/LiteLLM-Labs/lite-harness.git
cd lite-harness
# install the backend server's deps once — the SDK auto-spawns it from the clone
npm install --prefix src/sdk/server
# pick a model — set the key for your provider:
export ANTHROPIC_API_KEY=sk-ant-... # for harness "claude-code"
export OPENAI_API_KEY=sk-... # for harness "codex"
TypeScript Usage
npm install --prefix src/sdk/typescript && npm run build --prefix src/sdk/typescript
import { query } from "@lite-harness/sdk";
const prompt = "Fix the failing test";
// Claude Code harness
for await (const message of query({
prompt,
options: { harness: "claude-code", model: "claude-opus-4-8" },
})) {
console.log(message);
}
// Codex harness
for await (const message of query({
prompt,
options: { harness: "codex", model: "gpt-5.5" },
})) {
console.log(message);
}
Python Usage
pip install -e src/sdk/python # editable install of the client (Python 3.10+)
from lite_harness import query, AgentOptions
prompt = "Fix the failing test"
# Claude Code harness
async for message in query(
prompt=prompt,
options=AgentOptions(harness="claude-code", model="claude-opus-4-8"),
):
print(message)
# Codex harness
async for message in query(
prompt=prompt,
options=AgentOptions(harn
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11