Skip to main content

Reusable orchestration core for AI coding agent CLI pipelines

Project description

orchcore

Reusable orchestration core for AI coding agent CLI pipelines.

CI Release PyPI Python 3.12+ License: MIT OpenSSF Scorecard mypy: strict Ruff Coverage

What is orchcore?

orchcore is an async-first Python 3.12+ library that provides unified infrastructure for launching, monitoring, and managing multiple AI coding agent CLIs (Claude, Codex, Gemini, Copilot, OpenCode) as subprocesses through phase-based pipelines. It was extracted from four production orchestration systems — Planora, Articles, Finvault, and Raven — eliminating 60-70% of duplicated infrastructure so consuming projects only implement domain-specific logic.

Features

  • Multi-agent subprocess orchestration — async launch, stream capture, concurrency control
  • Unified stream processing — 4-stage pipeline normalizes 5 JSONL formats into a single StreamEvent model
  • DAG-based phase pipelines — sequential/parallel execution with dependency ordering and resume
  • Rate-limit recovery — automatic detection, timezone-aware reset parsing, exponential backoff
  • Layered configuration — TOML files, env vars, CLI overrides, named profiles
  • Protocol-based UIUICallback decouples engine from display (Rich, Textual, headless)
  • Registry-as-data — new agent support via TOML config alone, zero code changes
  • Graceful shutdown — SIGINT/SIGTERM with subprocess cleanup and state preservation

Installation

uv pip install orchcore

From source:

git clone https://github.com/AbdelazizMoustafa10m/orchcore.git
cd orchcore
uv pip install -e ".[dev]"

Requirements: Python 3.12+

Quick Start

1. Define Agents

# agents.toml
[agents.claude]
binary = "claude"
model = "claude-sonnet-4-20250514"
subcommand = "-p"
stream_format = "claude"

[agents.claude.flags]
plan = ["--think", "--verbose"]

[agents.claude.output_extraction]
strategy = "jq_filter"
jq_expression = ".content[0].text"

2. Run a Pipeline

import asyncio
from pathlib import Path
from orchcore.pipeline import PipelineRunner, PhaseRunner, Phase
from orchcore.registry import AgentRegistry, AgentMode, ToolSet
from orchcore.runner import AgentRunner
from orchcore.ui import NullCallback

async def main() -> None:
    registry = AgentRegistry()
    registry.load_from_toml(Path("agents.toml"))

    phase = Phase(
        name="planning",
        agents=["claude"],
        tools=ToolSet(internal=["Read", "Glob", "Grep"], permission="read-only"),
    )

    runner = AgentRunner()
    phase_runner = PhaseRunner(runner, registry, max_concurrency=4)
    pipeline = PipelineRunner(phase_runner)

    result = await pipeline.run_pipeline(
        phases=[phase],
        prompts={"planning": "Analyze the codebase and create a plan."},
        ui_callback=NullCallback(),
        mode=AgentMode.PLAN,
    )
    print(f"Success: {result.success} | Cost: ${result.total_cost_usd}")

asyncio.run(main())

Modules

Module Purpose
stream/ 4-stage pipeline (Filter → Parse → Monitor → Stall Detect) for 5 agent formats
pipeline/ DAG-based phase orchestration — sequential/parallel multi-agent execution
runner/ Async subprocess management with stdin/stdout/stderr piping
registry/ Agent configurations as data (TOML/dict) with runtime lookup
config/ Layered configuration: TOML → env vars → CLI overrides → profiles
recovery/ Rate-limit detection, exponential backoff, git dirty-tree recovery
workspace/ Artifact lifecycle management
prompt/ Jinja2 template rendering with frontmatter stripping
ui/ UICallback protocol for pluggable display layers
signals/ Graceful SIGINT/SIGTERM shutdown
display/ Colored stderr logging (no Rich dependency in core)
observability/ Optional OpenTelemetry integration

Documentation

Full documentation is available at abdelazizmoustafa10m.github.io/orchcore.

Document Description
Installation Prerequisites, install options, extras
Quick Start Define agents, build phases, run pipelines
Configuration Reference Full settings table, profiles, env vars
Stream Events Reference StreamEvent fields, types, agent states
UICallback Reference Protocol methods and built-in implementations
Architecture Package layout, core abstractions, design decisions
Stream Pipeline 4-stage composable pipeline deep-dive
Design Document Problem statement, requirements, proposed design
Writing a UICallback Build custom display layers
Agent Registry TOML config, adding new agents, ToolSets
Recovery & Retry Rate limits, backoff, failure modes
Contributing Dev setup, code standards, testing

Contributing

See CONTRIBUTING.md for development setup, testing instructions, and code standards.

Please also review CODE_OF_CONDUCT.md and SECURITY.md.

License

orchcore is released under the MIT License.

Project details


Download files

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

Source Distribution

orchcore-0.1.0.tar.gz (53.4 kB view details)

Uploaded Source

Built Distribution

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

orchcore-0.1.0-py3-none-any.whl (62.4 kB view details)

Uploaded Python 3

File details

Details for the file orchcore-0.1.0.tar.gz.

File metadata

  • Download URL: orchcore-0.1.0.tar.gz
  • Upload date:
  • Size: 53.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orchcore-0.1.0.tar.gz
Algorithm Hash digest
SHA256 eef114a7edd2168b0a7e2d64add9308f2d4e8c63207651e1fa1ae74871f44a79
MD5 f45fb38783f3bd6630529d52e77982ef
BLAKE2b-256 3a5133f0d764a6b93c1f4038bf55295c58c69b5b545955743d8a3122259bc754

See more details on using hashes here.

Provenance

The following attestation bundles were made for orchcore-0.1.0.tar.gz:

Publisher: publish.yml on AbdelazizMoustafa10m/orchcore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file orchcore-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: orchcore-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 62.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for orchcore-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ac4147cc869c04c00e9eb7773d8f349a8de2aa69f586a31491d6f839cdfde0f9
MD5 52a41dd5fc1006159f5264b0e5929c2a
BLAKE2b-256 0ced0365f8f6eb24825334789cd404140cad94f621cdeab2c68186c4fae5debc

See more details on using hashes here.

Provenance

The following attestation bundles were made for orchcore-0.1.0-py3-none-any.whl:

Publisher: publish.yml on AbdelazizMoustafa10m/orchcore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page