Skip to main content

YAML-first agent specs: run with `oa run` or generate a full Python project with `oa init`.

Project description

Open Agent Spec (OA)

Define AI agents with YAML. Generate working scaffolding instantly.

PyPI version Python License

Open Agent Spec (OA) is a YAML specification for defining AI agents and generating working scaffolding.

Building AI agents today often requires manually wiring together:

  • prompt templates
  • LLM configuration
  • task routing
  • memory structures
  • runtime logic

Open Agent Spec moves these concerns into a declarative specification.

Define an agent once in YAML and run it directly, or generate a project scaffold for customization.

You can think of OA as something similar to OpenAPI for services or Terraform for infrastructure, but for AI agents.


Quick Start

Install the CLI:

pip

pip install open-agent-spec

Homebrew (tap then install):

brew tap prime-vector/homebrew-prime-vector
brew install open-agent-spec
oa --version

pipx (isolated CLI):

pipx install open-agent-spec

Set your LLM API key (example for OpenAI):

export OPENAI_API_KEY=your_api_key_here

Create an agent spec:

open_agent_spec: "1.2.3"

agent:
  name: hello-world-agent
  role: chat

intelligence:
  type: llm
  engine: openai
  model: gpt-4o  # or any model your account has access to

tasks:
  greet:
    description: Say hello to someone
    input:
      type: object
      properties:
        name:
          type: string
      required: [name]

    output:
      type: object
      properties:
        response:
          type: string
      required: [response]

prompts:
  system: >
    You greet people by name.
  user: "{{ name }}"

Run the agent directly from the spec:

oa validate --spec agent.yaml          # schema check only (no model call)
oa run --spec agent.yaml --task greet \
  --input '{"name":"Alice"}' --quiet   # model call (requires OPENAI_API_KEY)

Agents as Code

Store specs in a .agents/ directory at the repo root — like .github/workflows/ but for agents. Run them directly, or generate code from them.

oa init aac                          # scaffold .agents/ with an example spec
oa run --spec .agents/example.yaml --task greet --input '{"name":"CI"}' --quiet

This repo's own .agents/ directory includes a CI failure repair agent that is called from a GitHub Actions workflow to auto-fix lint and formatting issues.

See docs/REFERENCE.md for details and bundled examples.


Generate a Project Scaffold (Optional)

If you want to extend the implementation, generate a project scaffold:

oa init --spec agent.yaml --output ./agent

This produces a Python project you can customize.


Generated Project Structure

agent/
├── agent.py
├── models.py
├── prompts/
├── requirements.txt
├── .env.example
└── README.md

Design Philosophy

Open Agent Spec (OA) intentionally keeps the specification minimal.

The goal is to define agents declaratively and generate consistent project scaffolding.

Tasks in an OA specification are intended to represent atomic units of capability for an agent, rather than complex workflows. Higher-level orchestration can be built on top of these primitives by external systems.

OA does not prescribe:

  • runtime orchestration
  • governance systems
  • evaluation frameworks

These concerns can be layered on top by different runtimes, frameworks, or architectures.


Why OA?

Many teams building agents end up recreating the same infrastructure:

  • agent scaffolding
  • prompt organization
  • model configuration
  • task definitions

OA provides a consistent way to define agents once and generate a working structure automatically.


Related Work

Several projects are exploring ways to standardize how AI agents are defined and orchestrated.

Open Agent Spec (OA) focuses specifically on developer-facing scaffolding from a declarative YAML specification.

The goal is to make agent architecture easier to reason about and quicker to implement.


Commands

Command Purpose
oa init --spec … --output … Generate project from YAML
oa init --template minimal --output … Same with bundled spec
oa init aac .agents/ + example spec only
oa run --spec … [--task …] [--input JSON] [--quiet] Run task without codegen
oa update --spec … --output … Regenerate into existing dir
oa init … --dry-run Validate only
oa --help

More detail

Resource Contents
docs/REFERENCE.md Full spec, engines, templates
Repository Source, issues, CI

PyPI Python 3.10+ License: MIT


Historical Changes

“CLI command is oa (formerly oas in older releases).”


License

MIT — see LICENSE.

Open Agent Stack

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

open_agent_spec-1.2.5.tar.gz (85.6 MB view details)

Uploaded Source

Built Distribution

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

open_agent_spec-1.2.5-py3-none-any.whl (62.4 kB view details)

Uploaded Python 3

File details

Details for the file open_agent_spec-1.2.5.tar.gz.

File metadata

  • Download URL: open_agent_spec-1.2.5.tar.gz
  • Upload date:
  • Size: 85.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.5

File hashes

Hashes for open_agent_spec-1.2.5.tar.gz
Algorithm Hash digest
SHA256 da741ffebf2cab3efce13358a56186c593cc72a01aa84b20478dc45f6515f8c0
MD5 40832aa688779ecf59ae90b63bc46d1a
BLAKE2b-256 ed266e61d09c8cc0b1af4d6f4e1cc493573d7143fd856ca64b207aaed1ebc596

See more details on using hashes here.

File details

Details for the file open_agent_spec-1.2.5-py3-none-any.whl.

File metadata

File hashes

Hashes for open_agent_spec-1.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 ec4611098c8a1c6d136854ad7ef9bac58093384d5fedafba3d9794a2a398f77f
MD5 4a10cb800fec9ad6cc7a7c430f23e9e3
BLAKE2b-256 1cfb3941a976db152cdb792346cddfc3b520dc5d1077d2ee2b9c1a30605cc65e

See more details on using hashes here.

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