Untether is an open-source agent harness and orchestrator developed by Little Bear Apps (littlebearapps). Built primarily in Python, it provides tooling and structure for managing autonomous coding agent workflows and decoupling development tasks across different coding assistant frameworks. In day-to-day operation, Untether allows developers to run and orchestrate agent tasks from the command line. The repository structure indicates direct integration and compatibility with leading frontier models and developer agent configs, including Anthropic Claude (.claude, CLAUDE.md) and OpenAI Codex (.codex), alongside configuration rules for environments like Cursor (.cursorrules). What distinguishes Untether is its focus on serving as a dedicated harness rather than a single monolithic coding assistant. By formalizing agent configurations through dedicated agent definition files (such as AGENTS.md) and harness scripts, it coordinates repetitive engineering tasks and multi-step workflows across repositories. Untether is open source and hosted publicly on GitHub under standard community licensing. As of version 0.35.x, it represents an active project tailored for developers building automated agent pipelines.
Tags: ai agent, cli, coding agent, developer tools, OpenSource
src/untether designed to run automated workflows without tight coupling to an IDE. - Codex & Frontier Model Adaptability — Includes configuration hooks for Codex and modern LLM-driven development tooling. - Extensible Scripting Interface — Supplies scriptable pipelines in Python for integrating custom hooks, contributor contributions, and automated tasks. - Repo-Level Instruction Ingestion — Uses structured files such as AGENTS.md to define operational constraints and operational context directly in the repository.AGENTS.md and CLAUDE.md, ensuring consistent behavior across different coding harnesses.Untether is designed for software engineers and teams looking to orchestrate and standardize automated AI coding workflows across multiple agent formats. It is less suited for developers seeking an out-of-the-box GUI chat assistant or simple inline code completion plugin.
pip (standard Python package installation based on repository structure): bash git clone https://github.com/littlebearapps/untether.git cd untether pip install -e .bash export ANTHROPIC_API_KEY="your-api-key" export OPENAI_API_KEY="your-api-key" Verify that your repository contains relevant agent definition files like AGENTS.md or CLAUDE.md to guide the harness.bash untether run --task "Refactor test suite to pytest and update fixtures"Part of CLI Coding Agents
Categories: AI Coding Agents, Code Assistants, Developer Tools