agentsclimarketplace

Async repl protocol

Skill vibeeval/vibecosystem/skills/async-repl-protocol

Async REPL ProtocolFrom its SKILL.md

Install
npx -y skills add vibeeval/vibecosystem --skill async-repl-protocol

Assembled 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.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.