Quick Start
Prerequisites
Section titled “Prerequisites”- Python 3.11+
- Node.js 20+ (for web UI)
- AgentField CLI (
af) from agentfield.dev
Install
Section titled “Install”git clone https://github.com/fetch-rewards/labs-inno-agent-platform-poc-2cd agent-meshpython -m venv .venvsource .venv/bin/activatepip install -e .Start the Stack
Section titled “Start the Stack”# 1. Start the AgentField control planeaf server --port 8090 --no-vc-execution --open=false &
# 2. Start the mesh API servermesh server &
# 3. Choose your interface:mesh builder # Terminal UI# ORcd web && npm install && npm run dev # Web UI at localhost:5173Create Your First Agent
Section titled “Create Your First Agent”mesh create hello-world --skill ping-responder -d "A simple echo agent"mesh dev hello-worldOr use the builder in the TUI/Web UI — ask it to create an agent for you.
What’s Running
Section titled “What’s Running”| Service | URL | Purpose |
|---|---|---|
| Control Plane | localhost:8090 | AgentField — agent registration, discovery, execution |
| Mesh API | localhost:8100 | FAM API — agent CRUD, skills, connectors, execution |
| Web UI | localhost:5173 | Visual agent builder and chat |
| TUI | Terminal | mesh builder — terminal-based agent builder |