Async REPL Protocol

SkillDev tools

Async REPL Protocol

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

What this skill tells your AI

The instructions your AI receives, as published by vibeeval/vibecosystem in 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
530
Forks
44
Last commit
Aug 2026
Advanced
Catalog kind
skill
Gateway key
async-repl-protocol-vibeeval
Source
github.com/vibeeval/vibecosystem