ReadyAgents Core
ReadyAgents is a free, self-hosted Apache-2.0 local one-shot agent workflow engine plus MCP toolkit: clone it, bring your own keys; always-on packs are waitlisted and not for sale.
Site: readyagents.dev. Repo: github.com/readyagentsdev/readyagents-core.
Tried it? Open an I-ran-this issue. We are not launching. We are listening.
This repository is the free core. You keep the provider account and the bill. Install with pip install readyagentsdev, or from this clone.
60-second start
Requires Python 3.11+. Current version is 0.11.0. Install with pip install readyagentsdev, or from this clone.
git clone https://github.com/readyagentsdev/readyagents-core.git
cd readyagents-core
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -e .
readyagents run examples/calc_pipeline.yaml
readyagents runs list
readyagents run examples/calc_pipeline.json is the same graph.
Or from PyPI (the wheel does not ship examples/):
pip install readyagentsdev
readyagents new my-flow
HITL next: docs/first-ten-minutes.md.
What it does
- Define agent workflows as YAML or JSON (nodes + edges)
- Run agent, tool, condition, transform, approval, parallel, include, and foreach nodes. Agent nodes may declare a
tools:allowlist for a bounded tool-use loop. - Persist after every node and resume a paused or failed run from the last successful node
- Inspect past runs:
readyagents runs list/show/replay/report(local HTML) - Scaffold a starter:
readyagents new my-flow(basic,approval,research,pipeline,review,foreach,agent-tools,gated) - Builtin tools with zero extra servers:
now,calc,json_get,list_dir,read_file,write_file, optionalhttp_get - Optional MCP client and server (
readyagents mcp serve,readyagents mcp probe) with official tasks and MRTR approvals - Extra node types and tools via Python entry points (
readyagents.packs) - Per-node token/cost, budgets, model fallback, JSON logs
- External approval injection (
readyagents decide) and outbound pause notify - Secrets / RBAC / PII-redaction hooks and an append-only audit trail
- Pydantic
output_schemaon agent nodes; opt-in local LLM cache readyagents.testinghelpers, recorded LLM mocks, and a tiny eval harness
Architecture
flowchart LR
YAML[Workflow YAML/JSON] --> Engine
subgraph Core["ReadyAgents Core"]
Engine[Workflow engine]
Tools[Builtin tools]
LLM[BYOK LLM providers]
MCP[MCP client / server]
Packs[Pack loader]
end
Engine --> Tools
Engine --> LLM
Engine --> MCP
Packs --> Engine
Packs --> Tools
LLM --> OpenAI[OpenAI]
LLM --> Anthropic[Anthropic]
LLM --> Compat[OpenAI-compatible]
CLI
| Command | Purpose |
|---|---|
readyagents init |
Write .env from .env.example if missing |
readyagents new [name] [--template basic|approval|research|pipeline|review|foreach|agent-tools|gated] |
Scaffold workflow + README + .env.example + local JSON Schema |
readyagents validate PATH |
Schema-validate a workflow (source-located errors on failure) |
readyagents schema |
Print/write/check the generated workflow JSON Schema |
readyagents eval PATH |
Score a keyless fixture suite (exit 0/1) |
readyagents run PATH [--input KEY=VALUE] [--dry-run] [--approve NODE] [--reject NODE] [--decision-file FILE] [--actor NAME] [--pack PATH] |
Execute |
readyagents resume RUN_ID [--approve NODE] [--reject NODE] [--decision-file FILE] |
Resume a paused or failed run |
readyagents decide RUN_ID [--file FILE | --node ID --decision approve] |
Inject an external approval decision and resume |
readyagents runs list |
List persisted runs |
readyagents runs show RUN_ID |
Node timeline + stored state (inspect is an alias) |
readyagents runs report RUN_ID |
Local HTML summary of a run |
readyagents runs replay RUN_ID |
New run from stored inputs |
readyagents runs delete RUN_ID --yes |
Delete one local run record |
readyagents runs gc --yes |
Prune succeeded/failed/cancelled runs (paused kept) |
readyagents mcp serve |
Stdio MCP server (builtin tools); --json prints protocol versions |
readyagents mcp probe URL |
Read-only server/discover diagnostic (never calls a tool) |
readyagents packs [--pack PATH] |
List installed / local packs |
readyagents version |
Print version |
Examples (no keys unless noted)
| File | What it shows |
|---|---|
examples/calc_pipeline.yaml |
Builtin tools, transform, condition |
examples/calc_pipeline.json |
Same graph as calc_pipeline.yaml |
examples/approval_gate.yaml |
Human-in-the-loop pause / resume |
examples/multi_gate.yaml |
Two sequential approval gates |
examples/fanout_gate.yaml |
Parallel branches + approval |
examples/include_demo.yaml |
Sub-workflow include |
examples/composed_gate.yaml |
Include + parallel + approval |
examples/research_brief.yaml |
Agent node (needs a key) |
examples/support_triage.yaml |
Classify then branch (needs a key) |
examples/code_review.yaml |
read_file + review (needs a key) |
examples/agent_tools.yaml |
Agent tools: [calc] (needs a key; --dry-run is keyless) |
examples/foreach_calc.yaml |
Sequential foreach + calc (no keys) |
examples/json_mutate.yaml |
json_set / json_merge (no keys) |
examples/list_dir.yaml |
Builtin list_dir (no keys, no MCP, no Node) |
examples/eval/pass.yaml |
Keyless readyagents eval fixture suite |
examples/connector_demo.yaml |
Local --pack connector (examples/packs/connector_pack.py) |
examples/gated_write.yaml |
Approval then write_file (no keys) |
Docs
- Why ReadyAgents?
- Getting started
- First ten minutes
- Concepts
- Configuration (BYOK)
- Workflows
- Authoring (JSON Schema, editors, located errors)
- MCP
- Packs
- Continuous pack (optional, separate distribution)
- CLI
- Changelog
- Release notes 0.8.0
Install extras
LLM and MCP extras are optional.
pip install "readyagentsdev[openai]"
pip install "readyagentsdev[anthropic]"
pip install "readyagentsdev[mcp]"
pip install "readyagentsdev[all]"
From a clone, the same extras are pip install -e ".[openai]" (and anthropic / mcp / all).
Then cp .env.example .env and paste your own keys. Core workflows that only use builtin tools do not need extras, keys, or Node.js.
docker compose run --rm readyagents run examples/calc_pipeline.yaml
make smoke
What is not in this repository
Always-on packs are waitlisted and not for sale.
Always-on / continuous workers are not in Core. The optional readyagents-pack-continuous distribution (separate repository, not a Core extra) can run configured workflows from an explicit foreground command. Installing Core still starts no scheduler or listener.
Hosted control plane. Hosted recovery and remote run stores. SSO, multi-tenant teams, billing.
The core has persist, resume, and approval pauses for a local one-shot. It does not run always-on.
License
Apache License 2.0. See LICENSE.
Security
Please report vulnerabilities as described in SECURITY.md. Public contact: info@readyagents.dev. Do not commit API keys. Local operator files such as .env are gitignored.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file readyagentsdev-0.11.0.tar.gz.
File metadata
- Download URL: readyagentsdev-0.11.0.tar.gz
- Upload date:
- Size: 258.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6719542b66d15d3c966a5462087975d284deb2f9e3218920784f5bc2f53ab9c
|
|
| MD5 |
d88652c739975200793c4aed4f55b37a
|
|
| BLAKE2b-256 |
7f46ba32df97e595fa9e5d557cd56a00c440d41c79b0585ad95b8679e9978ad2
|
Provenance
The following attestation bundles were made for readyagentsdev-0.11.0.tar.gz:
Publisher:
publish.yml on readyagentsdev/readyagents-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
readyagentsdev-0.11.0.tar.gz -
Subject digest:
c6719542b66d15d3c966a5462087975d284deb2f9e3218920784f5bc2f53ab9c - Sigstore transparency entry: 2770996610
- Sigstore integration time:
-
Permalink:
readyagentsdev/readyagents-core@41d7eae9eb8c6a4372c97e6fcb2e19be5f865cab -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/readyagentsdev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@41d7eae9eb8c6a4372c97e6fcb2e19be5f865cab -
Trigger Event:
release
-
Statement type:
File details
Details for the file readyagentsdev-0.11.0-py3-none-any.whl.
File metadata
- Download URL: readyagentsdev-0.11.0-py3-none-any.whl
- Upload date:
- Size: 171.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59181650e877ed7a917cce1809d400bf2da7d3051ae0feed6f331efa946370c0
|
|
| MD5 |
4b0abf543ddad4ff32376eac1fb907ae
|
|
| BLAKE2b-256 |
3c5acc07079f7e75bac9da912323c361158e901384f71221c3fd2e39abb2421a
|
Provenance
The following attestation bundles were made for readyagentsdev-0.11.0-py3-none-any.whl:
Publisher:
publish.yml on readyagentsdev/readyagents-core
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
readyagentsdev-0.11.0-py3-none-any.whl -
Subject digest:
59181650e877ed7a917cce1809d400bf2da7d3051ae0feed6f331efa946370c0 - Sigstore transparency entry: 2770996668
- Sigstore integration time:
-
Permalink:
readyagentsdev/readyagents-core@41d7eae9eb8c6a4372c97e6fcb2e19be5f865cab -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/readyagentsdev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@41d7eae9eb8c6a4372c97e6fcb2e19be5f865cab -
Trigger Event:
release
-
Statement type: