Continuous-Claude-v3 async-repl-protocol

Async REPL Protocol

install
source · Clone the upstream repo
git clone https://github.com/parcadei/Continuous-Claude-v3
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/parcadei/Continuous-Claude-v3 "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/async-repl-protocol" ~/.claude/skills/parcadei-continuous-claude-v3-async-repl-protocol-ee2eac && rm -rf "$T"
manifest: .claude/skills/async-repl-protocol/SKILL.md
source content

Async REPL Protocol

When working with Agentica's async REPL harness for testing.

Rules

1. Use
await
for Future-returning tools

content = await view_file(path)  # NOT view_file(path)
answer = await ask_memory("...")

2. Single code block per response

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)