verification
use it
# add to stunt.yaml
services:
echo:
adapter: embedded:echo-style
# then
$ stunt upThe embedded: source extracts this adapter from the binary — no git clone, fully offline.
how to mock the gRPC echo demo API locally
Install stunt, paste the service block above into stunt.yaml, run stunt up — then point your client at localhost instead of gRPC echo demo. It works offline, keeps state across requests and restarts, and every response is synthetic: the route shapes, status codes, pagination, and webhook delivery follow the real gRPC echo demo 1.0 surface — the data is fake, the behavior is real.
backing stores
echoes
api surface (1)
generated from the adapter manifest — exactly what boots, nothing more
want more of the gRPC echo demo surface? adapters are YAML + Starlark — the authoring guide covers adding routes, fixtures, and state machines. Open an issue for anything big first, or just file a PR — merged routes ship in the next release.