QuickstartZaps v0.1.0

Write your first key.
Trace every operation.

This path uses the production dashboard, Keystone-authenticated API, IAM authorization, Garden usage metering, and the AkashaKV-backed runtime.

1. Sign in

Open the dashboard with your L1fe Keystone account. The dashboard uses the same Auth v4 session that protects API calls.

https://app.zaps.sh

2. Create a purpose-shaped Zap

Start with cache for regular key-value workloads or agent-memory when the data belongs to a long-running agent.

zap create agent-memory-prod --purpose agent-memory

3. Write and read a key

Use the Render-backed HTTP/WebSocket API, or connect Redis-compatible clients to resp3.zaps.sh:6380.

curl -X POST https://api.zaps.sh/v1/command \
  -H "Authorization: Bearer $ZAPS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"cmd":"SET","key":"agent:ctx:plan","value":"build"}'

4. Verify audit and billing

Every successful command is authorized through IAM and recorded against the Garden zaps.commands meter.

tests/production_smoke.sh