Agent Skills: Async REPL Protocol

Async REPL Protocol

UncategorizedID: parcadei/continuous-claude-v3/async-repl-protocol

Install this agent skill to your local

pnpm dlx add-skill https://github.com/parcadei/Continuous-Claude-v3/tree/HEAD/.claude/skills/async-repl-protocol

Skill Files

Browse the full folder contents for async-repl-protocol.

Download Skill

Loading file tree…

.claude/skills/async-repl-protocol/SKILL.md

Skill Metadata

Name
async-repl-protocol
Description
Async REPL Protocol

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)