Metadata-Version: 2.4
Name: orcho
Version: 0.1.0
Summary: Local-first control plane for cross-agent AI software delivery
Author: Symphos
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/symphos-ai/orcho
Project-URL: Repository, https://github.com/symphos-ai/orcho
Project-URL: Issues, https://github.com/symphos-ai/orcho/issues
Keywords: agents,ai,automation,cli,developer-tools,orchestration
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: orcho-core<0.2,>=0.1.0
Provides-Extra: mcp
Requires-Dist: orcho-mcp<0.2,>=0.1.0; extra == "mcp"
Provides-Extra: all
Requires-Dist: orcho-mcp<0.2,>=0.1.0; extra == "all"
Provides-Extra: dev
Requires-Dist: build>=1.2; extra == "dev"
Requires-Dist: pytest>=8.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Requires-Dist: ruff>=0.5; extra == "dev"
Requires-Dist: setuptools>=77; extra == "dev"
Dynamic: license-file

# Orcho

[![PyPI](https://img.shields.io/pypi/v/orcho.svg)](https://pypi.org/project/orcho/)
[![Python 3.12+](https://img.shields.io/badge/python-3.12%2B-blue.svg)](https://pypi.org/project/orcho/)
[![License: Apache-2.0](https://img.shields.io/badge/License-Apache--2.0-blue.svg)](LICENSE)
[![CI](https://github.com/symphos-ai/orcho/actions/workflows/ci.yml/badge.svg)](https://github.com/symphos-ai/orcho/actions/workflows/ci.yml)
[![DCO](https://github.com/symphos-ai/orcho/actions/workflows/dco.yml/badge.svg)](https://github.com/symphos-ai/orcho/actions/workflows/dco.yml)
[![Release](https://github.com/symphos-ai/orcho/actions/workflows/release.yml/badge.svg)](https://github.com/symphos-ai/orcho/actions/workflows/release.yml)
[![codecov](https://codecov.io/gh/symphos-ai/orcho/branch/main/graph/badge.svg)](https://codecov.io/gh/symphos-ai/orcho)
[![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/symphos-ai/orcho/badge)](https://scorecard.dev/viewer/?uri=github.com/symphos-ai/orcho)

Local-first control plane for cross-agent AI software delivery.

This package is the recommended installer for the public Orcho command set. It
installs the core CLI by default and can include optional control surfaces with
Python extras.

## Install

Core CLI:

```bash
pipx install orcho
```

Core CLI plus MCP server:

```bash
pipx install 'orcho[mcp]'
```

Everything:

```bash
pipx install 'orcho[all]'
```

Use quotes around extras in shells such as `zsh`.

## Commands

```bash
orcho --help
orcho-run --help
orcho-cross --help
orcho-mcp --help
```

`orcho-mcp` requires `orcho[mcp]` or `orcho[all]`.

## Package Layout

- `orcho-core` provides the core engine and CLI.
- `orcho-mcp` provides the MCP server.

This package only coordinates installation and command dispatch.
