e071084ebe
govulncheck / govulncheck (push) Waiting to run
Harness (E2E) / Harnesses (mock LLM) (push) Waiting to run
Harness (E2E) / Provider harnesses (live LLM conformance) (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Run Tests / Unit Tests (push) Waiting to run
Run Tests / Etcd Integration Tests (push) Waiting to run
2.8 KiB
2.8 KiB
Examples wayfinding
Use this index when you want the shortest path from a first runnable agent to the next services, agents, workflows, and interop examples. Every command below is provider-free unless the example README says otherwise.
Pick by goal
| Goal | Start here | Run or verify | Then try |
|---|---|---|---|
| Run the smallest no-secret agent | first-agent |
go run ./examples/first-agent |
agent-demo for a larger service-backed agent |
| Prove the maintained 0→hero path | support |
go run ./examples/support and go test ./examples/support |
zero-to-hero guide |
| See planning and delegation | agent-plan-delegate |
go run ./examples/agent-plan-delegate |
plan-delegate guide |
| Expose services through MCP | mcp/hello |
follow mcp setup |
mcp/crud and mcp/workflow |
| Try a paid tool with x402 | agent-x402-buyer |
go run ./examples/agent-x402-buyer |
Payments (x402) guide |
| Try A2A or gRPC interop next | agent-demo plus gateway docs |
run the example, then use the gateway docs | grpc-interop |
| Add workflow durability | flow-durable |
go run ./examples/flow-durable |
flow-loop |
Recommended adoption path
- First service: run
hello-worldto learn service registration, handlers, client calls, and health checks. - First agent: run
first-agentwithgo run ./examples/first-agent; it uses a deterministic mock model and needs no provider key. - 0→hero reference: run
supportwithgo run ./examples/support; it keeps typed services, an agent chat loop, an event-driven flow, and an approval gate in one maintained example. - Interop next: use
mcp/hello,mcp/crud, andmcp/workflowwhen you are ready to expose tools to external AI clients. - Paid tools: run
agent-x402-buyerto see an agent pay a local x402-protected tool with a mock facilitator and budget. - Workflow depth: use
flow-durableonce the agent path needs checkpointed, resumable deterministic work.
CLI wayfinding
The installed CLI prints the same path:
micro examples
micro agent demo
micro zero-to-hero
Keep this file, README.md, and the micro examples output in
sync so new developers can find examples/first-agent and examples/support
from one documented path.