TACO — The A2A Construction Open-standard SDK
Project description
TACO — The A2A Construction Open-standard
An open standard for AI agent communication in the built environment.
TACO is a construction-specific ontology layer built on top of the A2A protocol (Linux Foundation). It defines a shared vocabulary of task types, typed data schemas, and agent discovery extensions so that AI agents across the construction industry can interoperate — regardless of who built them.
Every TACO agent is a standard A2A agent. Zero lock-in.
What TACO Adds
| Layer | What it defines | Example |
|---|---|---|
| Task Types | A typed vocabulary of construction workflows | takeoff, estimate, rfi-generation, submittal-review, schedule-coordination |
| Data Schemas | Typed JSON schemas for construction artifacts | bom-v1, rfi-v1, estimate-v1, schedule-v1, quote-v1 |
| Agent Discovery | Construction extensions to A2A Agent Cards | Filter by trade, CSI division, project type, file format, platform integration |
| Security | Scope taxonomy, trust tiers, token delegation | taco:trade:mechanical, taco:task:estimate, taco:project:PRJ-0042:write |
How It Works
┌──────────────┐ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐
│ Takeoff │───▶│ Estimating │───▶│ Supplier │───▶│ Bid Package │
│ Agent │ │ Agent │ │ Agent │ │ (complete) │
└──────┬───────┘ └──────┬───────┘ └──────┬───────┘ └──────────────┘
│ bom-v1 │ estimate-v1 │ quote-v1
▼ ▼ ▼
╔══════════════════════════════════════════════════════════════════════════╗
║ TACO — shared task types, data schemas, agent discovery ║
╚══════════════════════════════════════════════════════════════════════════╝
▲ ▲ ▲
│ schedule-v1 │ rfi-v1 │
┌──────┴───────┐ ┌──────┴───────┐ ┌──────────────┐
│ Schedule │ │ RFI Agent │ │ Architect │
│ Agent │ │ │ │ Agent │
└──────────────┘ └──────────────┘ └──────────────┘
Different companies. Different AI models. One shared language.
Sandbox Demo
The repo includes a fully functional demo with 3 LLM-powered agents, an orchestrator dashboard, and a live flow diagram.
Run it yourself:
# Clone and configure
git clone https://github.com/pelles-ai/taco.git && cd taco
cp examples/.env.example examples/.env
# Edit examples/.env and add your API key (Anthropic or OpenAI)
# Run with Docker (recommended)
make demo-docker
# Or run locally
make demo-install && make demo
Then open http://localhost:8000, click Discover Agents, and send tasks to see typed schemas flow between independent agents in real time.
Repository Structure
taco/
├── Makefile # demo, demo-docker, demo-stop
├── spec/ # Protocol specification
│ ├── task-types.md # Construction task type definitions
│ ├── agent-card-extensions.md # x-construction Agent Card fields
│ ├── security.md # Auth model, scope taxonomy, trust tiers
│ └── schemas/ # JSON Schema definitions (bom-v1, rfi-v1, estimate-v1, ...)
├── sdk/ # Reference SDK (Python)
│ └── taco/ # models, schemas, server, agent_card, registry, client
├── website/ # Docusaurus documentation site
│ ├── docs/ # Markdown documentation pages
│ ├── src/ # Landing page and components
│ └── static/ # Visual reference diagrams (HTML)
└── examples/ # Sandbox demo
├── docker-compose.yml # 4 services, hot-reload
├── run_demo.py # Local launcher (all 4 processes)
├── common/ # Shared A2A server, models, LLM provider
├── agents/ # 3 LLM-powered TACO agents
│ ├── estimating_agent.py # :8001 — estimate + value-engineering
│ ├── supplier_quote_agent.py # :8002 — material-procurement
│ └── rfi_generation_agent.py # :8003 — rfi-generation
└── orchestrator/ # :8000 — dashboard + agent discovery
├── app.py
└── dashboard.html # Single-file UI with live flow diagram
Quick Start
pip install taco-agent
from taco import ConstructionAgentCard, ConstructionSkill
# Define your agent
card = ConstructionAgentCard(
name="My Electrical Estimating Agent",
trade="electrical",
csi_divisions=["26"],
skills=[
ConstructionSkill(
id="generate-estimate",
task_type="estimate",
input_schema="bom-v1",
output_schema="estimate-v1",
)
],
)
# Serve as an A2A-compatible endpoint
card.serve(host="0.0.0.0", port=8080)
from taco import TacoClient, extract_structured_data
# Send a task to an agent
async with TacoClient(agent_url="http://localhost:8001") as client:
card = await client.discover()
task = await client.send_message("estimate", bom)
estimate = extract_structured_data(task.artifacts[0].parts[0])
# estimate follows the estimate-v1 schema
from taco import AgentRegistry
# Discover and filter agents in-memory
registry = AgentRegistry()
await registry.register("http://localhost:8001")
await registry.register("http://localhost:8002")
agents = registry.find(trade="plumbing", task_type="material-procurement")
Note: The Python SDK uses snake_case parameter names (e.g.,
csi_divisions,task_type) that map to the camelCase JSON fields defined in the spec (csiDivisions,taskType).
Documentation
Full documentation is hosted at pelles-ai.github.io/taco:
Principles
- Ontology, not protocol. TACO builds on A2A using its native extension points. Every TACO agent is a standard A2A agent.
- Agents are opaque. Agents collaborate without exposing internals — proprietary logic, pricing models, and trade secrets stay private.
- Open and composable. Apache 2.0 licensed. The spec, schemas, and SDK are open source. The registry is a shared resource.
- Construction-native. Task types, schemas, and discovery are designed for how construction actually works — by trade, CSI division, project phase, and platform.
Status
🚧 Early stage — We're defining the core schemas and building the reference SDK. Looking for construction technology companies, trade contractors, GCs, and platform vendors to help shape the standard.
Get Involved
- GitHub Discussions: Share ideas and feedback
- Issues: Report problems or suggest improvements
- Contributing: See CONTRIBUTING.md
License
Apache 2.0 — see LICENSE.
Initiated by Pelles. Built on the A2A protocol (Linux Foundation).
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 taco_agent-0.1.2.tar.gz.
File metadata
- Download URL: taco_agent-0.1.2.tar.gz
- Upload date:
- Size: 31.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e633178174500722c20919850770f253d4ee4999938938fc065d7092930bc203
|
|
| MD5 |
5d27d5a1cac4d14383fc4e16dc1623b9
|
|
| BLAKE2b-256 |
cac325b6c00a13c12eab7c5dc160f00bd5a7b450ad947e5dbb40b603d32ef137
|
Provenance
The following attestation bundles were made for taco_agent-0.1.2.tar.gz:
Publisher:
bump-version.yml on pelles-ai/taco
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
taco_agent-0.1.2.tar.gz -
Subject digest:
e633178174500722c20919850770f253d4ee4999938938fc065d7092930bc203 - Sigstore transparency entry: 1108291345
- Sigstore integration time:
-
Permalink:
pelles-ai/taco@aacd6457dc2fafd1d8eb132f02c2457879943052 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pelles-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
bump-version.yml@aacd6457dc2fafd1d8eb132f02c2457879943052 -
Trigger Event:
push
-
Statement type:
File details
Details for the file taco_agent-0.1.2-py3-none-any.whl.
File metadata
- Download URL: taco_agent-0.1.2-py3-none-any.whl
- Upload date:
- Size: 38.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78c72f6fad3b38f7c200d1bf6a6aa20202cad3ffa9301048d45bd444cb431ad6
|
|
| MD5 |
8367ce8412750d64713575ab43d010f3
|
|
| BLAKE2b-256 |
8c0f17eec43b8e9275d5ce346ab0a38d64955cebe721fcdeb8ce25968350d090
|
Provenance
The following attestation bundles were made for taco_agent-0.1.2-py3-none-any.whl:
Publisher:
bump-version.yml on pelles-ai/taco
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
taco_agent-0.1.2-py3-none-any.whl -
Subject digest:
78c72f6fad3b38f7c200d1bf6a6aa20202cad3ffa9301048d45bd444cb431ad6 - Sigstore transparency entry: 1108291360
- Sigstore integration time:
-
Permalink:
pelles-ai/taco@aacd6457dc2fafd1d8eb132f02c2457879943052 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/pelles-ai
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
bump-version.yml@aacd6457dc2fafd1d8eb132f02c2457879943052 -
Trigger Event:
push
-
Statement type: