Metadata-Version: 2.4
Name: openfoundry
Version: 0.1.0
Summary: Multi-Agent Orchestration Framework
Author: OpenFoundry Team
License: MIT
Project-URL: Homepage, https://github.com/openfoundry/openfoundry
Project-URL: Documentation, https://github.com/openfoundry/openfoundry#readme
Project-URL: Repository, https://github.com/openfoundry/openfoundry
Keywords: ai,agents,llm,orchestration,multi-agent
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: pydantic>=2.5
Requires-Dist: pydantic-settings>=2.1
Requires-Dist: fastapi>=0.109
Requires-Dist: uvicorn>=0.27
Requires-Dist: litellm>=1.30
Requires-Dist: typer>=0.9
Requires-Dist: rich>=13.0
Requires-Dist: structlog>=24.0
Requires-Dist: httpx>=0.26
Requires-Dist: redis>=5.0
Requires-Dist: PyYAML>=6.0
Requires-Dist: opentelemetry-api>=1.20
Requires-Dist: opentelemetry-sdk>=1.20
Requires-Dist: opentelemetry-exporter-otlp>=1.20
Requires-Dist: prometheus-client>=0.19
Provides-Extra: dev
Requires-Dist: pytest>=7.4; extra == "dev"
Requires-Dist: pytest-asyncio>=0.23; extra == "dev"
Requires-Dist: pytest-cov>=4.1; extra == "dev"
Requires-Dist: ruff>=0.1; extra == "dev"
Requires-Dist: mypy>=1.8; extra == "dev"

# OpenFoundry

Multi-agent orchestration framework for AI applications.

## Overview

OpenFoundry is a framework for building and orchestrating AI agents across the full AI lifecycle:

- **The Forge** - Development & SDLC agents (Architect, Engineer, Quality)
- **The Conveyor** - CI/CD & deployment agents (DevOps, Release)
- **The Shield** - Responsible AI & safety (Guardrails, PII detection)
- **The Watchtower** - Monitoring & observability (OpenTelemetry, Prometheus)

## Features

- Protocol-based agent interfaces (PEP 544)
- Multi-provider LLM support via LiteLLM (OpenAI, Anthropic, Google, Mistral, etc.)
- Async-first architecture for high concurrency
- Structured outputs with Pydantic validation
- DAG-based workflow engine
- Comprehensive guardrails for safe AI usage
- Full observability with OpenTelemetry and Prometheus

## Quick Start

```bash
# Install
pip install openfoundry

# Initialize a new project
openfoundry init

# Start the server
openfoundry serve

# List available agents
openfoundry agent list
```

## Requirements

- Python 3.12+
- API keys for LLM providers (OpenAI, Anthropic, etc.)

## Documentation

See the [docs](./docs) directory for detailed documentation.

## License

MIT
