async-repl-protocol

Async REPL Protocol

INSTALLATION
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill async-repl-protocol
Run in your project or agent environment. Adjust flags if your CLI version differs.

SKILL.md

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)
BrowserAct

Let your agent run on any real-world website

Bypass CAPTCHA & anti-bot for free. Start local, scale to cloud.

Explore BrowserAct Skills →

Stop writing automation&scrapers

Install the CLI. Run your first Skill in 30 seconds. Scale when you're ready.

Start free
free · no credit card