Skip to content

Quick Start

  • Python 3.11+
  • Node.js 20+ (for web UI)
  • AgentField CLI (af) from agentfield.dev
Terminal window
git clone https://github.com/fetch-rewards/labs-inno-agent-platform-poc-2
cd agent-mesh
python -m venv .venv
source .venv/bin/activate
pip install -e .
Terminal window
# 1. Start the AgentField control plane
af server --port 8090 --no-vc-execution --open=false &
# 2. Start the mesh API server
mesh server &
# 3. Choose your interface:
mesh builder # Terminal UI
# OR
cd web && npm install && npm run dev # Web UI at localhost:5173
Terminal window
mesh create hello-world --skill ping-responder -d "A simple echo agent"
mesh dev hello-world

Or use the builder in the TUI/Web UI — ask it to create an agent for you.

ServiceURLPurpose
Control Planelocalhost:8090AgentField — agent registration, discovery, execution
Mesh APIlocalhost:8100FAM API — agent CRUD, skills, connectors, execution
Web UIlocalhost:5173Visual agent builder and chat
TUITerminalmesh builder — terminal-based agent builder