Async REPL Protocol
When working with Agentica's async REPL harness for testing.
await for Future-returning toolscontent = await view_file(path) # NOT view_file(path)
answer = await ask_memory("...")
Compute AND return in ONE block. Multiple blocks means only first executes.
# GOOD: Single block
content = await view_file(path)
return any(c.isdigit() for c in content)
# BAD: Split blocks (second block never runs)
content = await view_file(path)
Use CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per-model summary from codexbar cost JSON.
Transcribe audio via OpenAI Audio Transcriptions API (Whisper).
Search and analyze your own session logs (older/parent conversations) using jq.
Query Google Places API (New) via the goplaces CLI for text search, place details, resolve, and reviews. Use for human-friendly place lookup or JSON output for scripts.
Start voice calls via the OpenClaw voice-call plugin.
Best practices for using the oracle CLI (prompt + file bundling, engines, sessions, and file attachment patterns).
Category:developer