Async repl protocol
Async REPL ProtocolFrom its SKILL.md
npx -y skills add vibeeval/vibecosystem --skill async-repl-protocolAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
0.6 KB, 130 tokens by cl100k_base, as published. Nobody here has run it
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)
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.