Skip to main content
AI/MLparcadei

async-repl-protocol

Async REPL Protocol

Stars
3,795
Source
parcadei/Continuous-Claude-v3
Updated
2026-01-26
Slug
parcadei--Continuous-Claude-v3--async-repl-protocol
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/parcadei/Continuous-Claude-v3/HEAD/.claude/skills/archive/async-repl-protocol/SKILL.md -o .claude/skills/async-repl-protocol.md

Drops the SKILL.md into .claude/skills/async-repl-protocol.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

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)