parcadei / async-repl-protocol
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/async-repl-protocol && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/3496" && unzip -o skill.zip -d .claude/skills/async-repl-protocol && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/async-repl-protocol/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Async REPL Protocol
0 views
0 installs
Skill Content
---
name: async-repl-protocol
description: Async REPL Protocol
---
# Async REPL Protocol
When working with Agentica's async REPL harness for testing.
## Rules
### 1. Use `await` for Future-returning tools
```python
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.
```python
# 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)