Agent-Based Infrastructure Core - Runtime and CLI
Project description
ABI Swarm ๐ค
ABI Swarm is a self-building multi-agent system. It plans, orchestrates, and creates agents on demand โ governed by policy at every step.
ABI-Core is the framework underneath: the foundation for building Agent-Based Infrastructure where intelligent agents collaborate through semantic context, policy-driven governance, and modular orchestration.
Beta Release โ APIs may change. Feedback welcome.
What Makes ABI Different
Most agent frameworks assume your agents and tools already exist. ABI doesn't.
- The Orchestrator triages requests (simple vs complex) and coordinates execution
- The Guardian validates every query for prompt injection and policy compliance before it reaches any agent
- The Planner decomposes complex requests into tasks using Tree of Thoughts reasoning
- The Builder creates ephemeral agents on demand โ Docker containers that live, execute, and die
- The Semantic Layer connects everything through vector search, MCP tools, and artifact storage
- The MinIO Artifact Store provides object storage for code, data, and results between agents
If an agent doesn't exist for a task, ABI builds one. If a tool doesn't exist, ABI creates it. All governed by policy.
Quick Start
pip install abi-core-ai
# Create a complete swarm (project + all agents + services)
abi-core create swarm --name my-swarm
# Or step by step:
abi-core create project my-system --with-semantic-layer --with-guardian
abi-core add abi-swarm
# Run
abi-core run # Detached (banner + status only)
abi-core run --logs # With container logs
abi-core run --build # Rebuild containers first
Architecture
User Request
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Orchestrator โ
โ โ
โ โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโ โ
โ โ Triage โ โ Guardian Gate โ Level 0 โ
โ โ (simple/ โ โ (security โ parallel โ
โ โ complex) โ โ validation) โ โ
โ โโโโโโโโฌโโโโโโโ โโโโโโโโโโฌโโโโโโโโโโ โ
โ โโโโโโโโโโฌโโโโโโโโโโ โ
โ โผ โ
โ โโโโโโโโโโโโโโโโโโ โ
โ โ Gate Decision โ Level 1 โ
โ โ approve/block/ โ merge โ
โ โ respond/plan โ โ
โ โโโโโโโโโฌโโโโโโโโโ โ
โ โ โ
โ โโโโโโโโโโโโโโดโโโโโโโโโโโโโ โ
โ โผ โผ โ
โ Simple Complex โ
โ โ LLM responds โ Planner โ Builder โ
โ directly โ Execute โ Synthesizeโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ โ
โผ โผ
โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ
โ Semantic โ โ Guardian โ โ MinIO โ
โ Layer โ โ Security โ โ Artifacts โ
โ โ โ โ โ โ
โ Agent Cards โ โ OPA Policiesโ โ Code, Data โ
โ Tool Cards โ โ A2A Auth โ โ Results โ
โ Service Cardsโ โ Audit Log โ โ S3-compat โ
โ MCP Tools โ โ Risk Score โ โ โ
โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ
Core Concepts
AbiCore โ FastAPI-style Agent Runner
from abi_core.agent import AbiCore
from my_agent import MyAgent
agent = AbiCore()
@agent.task(name="step1")
def step1(raw_input):
return {"cleaned": raw_input.strip()}
@agent.task(name="step2", depends_on=["step1"], input_map={"data": "$step1.result"})
def step2(data):
return {"stored": True}
@agent.tool(name="search")
def search(query):
"""Available to the LLM on demand."""
return {"results": []}
@agent.mcp_tool(name="bigquery_search", input_map={"query": "$input.user_query"})
agent.run(MyAgent())
invoke() โ Unified LLM Calls
from abi_core.agent import invoke
# LLM only, no context
result = await invoke(config.LLM_CONFIG, "Classify this query...")
# LLM with conversation memory
result = await invoke(config.LLM_CONFIG, "Summarize...", thread_id=context_id)
# Agent with tools, no context
result = await invoke(config.LLM_CONFIG, "Find agent...", tools=[tool_find_agent])
# Agent with tools and memory
result = await invoke(config.LLM_CONFIG, query, tools=[find, search], thread_id=session_id)
ToolExecutionGraph โ Deterministic DAG with Parallelism
Tasks registered with @agent.task() are wired into a LangGraph DAG. Nodes at the same dependency level execute in parallel. The LLM never decides execution order โ the graph does. Retry, checkpoint/resume, and $reference resolution between nodes are built in.
Three Types of Cards
| Card | Purpose | Example |
|---|---|---|
| AgentCard | Identity for agents (permanent or ephemeral) | Planner, Builder, zombie agents |
| ServiceCard | Identity for non-agent services | Webapp, semantic layer |
| ToolCard | Metadata for MCP tools with access_scope | query_sales_db, send_email |
All cards support HMAC authentication, checksum verification, and OPA policy evaluation.
Zombie Container Pattern
Ephemeral agents run a 3-phase DAG:
- gather_context โ Pull artifacts from MinIO, prepare workspace
- analyze_and_execute โ LLM autonomous with tools (decides what to call)
- synthesize_and_report โ Package results, upload artifacts
No docker build โ just docker run with env vars. The zombie self-configures as a fully functional A2A agent.
Features
- AbiCore Runner โ
agent = AbiCore()with auto-config import - Decorator API โ
@agent.task(),@agent.tool(),@agent.mcp_tool() - ToolExecutionGraph โ LangGraph DAG with parallel execution and Annotated reducers
- invoke() โ Unified LLM calls: LLM-only, agent+tools, with/without context
- SSE Heartbeat โ Automatic keepalive for CloudFront/proxy compatibility
- Session Management โ Auto process_answer(), clear_session(), _yield_clarification() in AbiAgent base
- AgentResponse โ Typed responses:
.success(),.error(),.status(),.input_required() - A2AResponse โ Streaming event parser for TaskArtifactUpdateEvent and TaskStatusUpdateEvent
- Multi-Provider LLM โ Ollama, OpenAI, Anthropic, Bedrock, Azure, Vertex AI, Grok
- MCP Protocol โ Streamable HTTP transport with auto-reconnection
- MCPToolkit โ Dynamic tool calling with ServiceCard or AgentCard auth
- Three Card Types โ AgentCard, ServiceCard, ToolCard with HMAC, checksum, access_scope
- Guardian Gate โ Parallel triage + security validation before any agent executes
- OPA Policies โ Support for agent://, service://, tool:// prefixes and ephemeral agents
- Semantic Layer โ Weaviate vector search for agents, tools, and services
- ArtifactStore โ S3-compatible object storage (MinIO local, AWS S3, GCS production)
- ContainerRuntime โ Docker lifecycle abstraction (run, destroy, health check)
- Builder โ Creates ephemeral agents with register/deregister lifecycle
- Zombie Pattern โ 3-phase DAG: gather โ execute (LLM autonomous) โ report
- Tree of Thoughts โ Planner and Orchestrator prompts with multi-path reasoning
- Infrastructure Filter โ Prevents builder/planner/orchestrator from being assigned as task executors
- CLI โ
abi-core create swarm,abi-core create project,abi-core add abi-swarm,abi-core run
CLI Commands
# Swarm (everything in one command)
abi-core create swarm --name <name>
# Project (step by step)
abi-core create project <name> [--with-semantic-layer] [--with-guardian]
abi-core add abi-swarm
# Run
abi-core run # Detached (banner + status table)
abi-core run --logs # With container logs
abi-core run --build # Rebuild containers
# Agents
abi-core add agent <name> --description "..."
abi-core remove agent <name>
# Services
abi-core add semantic-layer
abi-core add service guardian-native
Project Structure
my-swarm/
โโโ agents/
โ โโโ planner/ # Task decomposition (Tree of Thoughts)
โ โโโ orchestrator/ # Triage + Guardian gate + workflow coordination
โ โโโ builder/ # Ephemeral agent creation + registration
โ โโโ my-agent/ # Your custom agents
โโโ services/
โ โโโ web_api/ # FastAPI application + ServiceCard
โ โ โโโ service_cards/
โ โโโ semantic_layer/ # MCP server + Weaviate
โ โ โโโ agent_cards/
โ โ โโโ tool_cards/
โ โ โโโ service_cards/
โ โโโ guardian/ # OPA security + audit
โโโ compose.yaml # All services + MinIO + OPA
โโโ .abi/runtime.yaml
Documentation
https://abi-core.readthedocs.io
Contributing
git clone https://github.com/Joselo-zn/abi-core
cd abi-core-ai
uv sync --dev
uv run pytest
License
Apache 2.0 โ see LICENSE
Built by Josรฉ Luis Martรญnez โ Creator of ABI (Agent-Based Infrastructure)
Project details
Release history Release notifications | RSS feed
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 abi_core_ai-1.9.27.tar.gz.
File metadata
- Download URL: abi_core_ai-1.9.27.tar.gz
- Upload date:
- Size: 279.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89e71c66106f6f867adb5faabac8dac7446bdf512f9c50f515e6427d8ee0e486
|
|
| MD5 |
0779fc8dd938b8bf53db6789c3c9c514
|
|
| BLAKE2b-256 |
66f2b0b31505c21190f6a9bb8a8c923582f676f82ccdb46783cf4ae7a5981869
|
File details
Details for the file abi_core_ai-1.9.27-py3-none-any.whl.
File metadata
- Download URL: abi_core_ai-1.9.27-py3-none-any.whl
- Upload date:
- Size: 329.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40dea930bf89b56382c66bf1f835848182ced0fb5059ec00c8a8f5d63759c723
|
|
| MD5 |
ae5331a117de8038875e16efde4fc6f7
|
|
| BLAKE2b-256 |
34a2b3b5d554468382800f609677124771af2cbade6ea685b0abe83babac0de0
|