async-repl-protocol

📁 namesreallyblank/clorch 📅 Jan 26, 2026
1
总安装量
1
周安装量
#52502
全站排名
安装命令
npx skills add https://github.com/namesreallyblank/clorch --skill async-repl-protocol

Agent 安装分布

mcpjam 1
claude-code 1
windsurf 1
zencoder 1
crush 1
cline 1

Skill 文档

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)