Async REPL Protocol

SkillAI & models

Lets your agent keep a persistent coding conversation session running in the background between steps.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Async REPL Protocol skill

About this capability

Async REPL Protocol

What this skill tells your AI

The instructions your AI receives, as published by parcadei/continuous-claude-v3 in .claude/skills/async-repl-protocol/SKILL.md and read by ahel’s review.

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)

Signals

GitHub stars
4k
Forks
300
Last commit
Jan 2026

Others that do the same job

Advanced
Catalog kind
skill
Gateway key
async-repl-protocol
Source
github.com/parcadei/continuous-claude-v3