Async REPL Protocol
Scanned 2/12/2026
Install to Claude Code
npx -y skills add parcadei/Continuous-Claude-v3 --skill async-repl-protocol --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Async Repl Protocol?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/parcadei-async-repl-protocol)More formats (shields.io, HTML) on the badges page.
---
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)
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!