$npx -y skills add parcadei/Continuous-Claude-v3 --skill async-repl-protocolAsync REPL Protocol
| 1 | # Async REPL Protocol |
| 2 | |
| 3 | When working with Agentica's async REPL harness for testing. |
| 4 | |
| 5 | ## Rules |
| 6 | |
| 7 | ### 1. Use `await` for Future-returning tools |
| 8 | |
| 9 | ```python |
| 10 | content = await view_file(path) # NOT view_file(path) |
| 11 | answer = await ask_memory("...") |
| 12 | ``` |
| 13 | |
| 14 | ### 2. Single code block per response |
| 15 | |
| 16 | Compute AND return in ONE block. Multiple blocks means only first executes. |
| 17 | |
| 18 | ```python |
| 19 | # GOOD: Single block |
| 20 | content = await view_file(path) |
| 21 | return any(c.isdigit() for c in content) |
| 22 | |
| 23 | # BAD: Split blocks (second block never runs) |
| 24 | content = await view_file(path) |