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)
---
**Source:** [`parcadei/Continuous-Claude-v3`](https://github.com/parcadei/Continuous-Claude-v3) → `.claude/skills/async-repl-protocol/SKILL.md`
**Also appears in:** `parcadei/Continuous-Claude-v3/.claude/skills/archive/async-repl-protocol/SKILL.md`
1---2name: async-repl-protocol3description: Async REPL Protocol4---567# Async REPL Protocol89When working with Agentica's async REPL harness for testing.1011## Rules1213### 1. Use `await` for Future-returning tools1415```python16content = await view_file(path) # NOT view_file(path)17answer = await ask_memory("...")18```1920### 2. Single code block per response2122Compute AND return in ONE block. Multiple blocks means only first executes.2324```python25# GOOD: Single block26content = await view_file(path)27return any(c.isdigit() for c in content)2829# BAD: Split blocks (second block never runs)30content = await view_file(path)3132---3334**Source:** [`parcadei/Continuous-Claude-v3`](https://github.com/parcadei/Continuous-Claude-v3) → `.claude/skills/async-repl-protocol/SKILL.md`3536**Also appears in:** `parcadei/Continuous-Claude-v3/.claude/skills/archive/async-repl-protocol/SKILL.md`
Run npx skillmds@latest add parcadei/async-repl-protocol in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Async REPL Protocol It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. Capability flags: makes network calls. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
parcadei (@parcadei) published this skill. Their other Agent Skills are listed on their SkillMD profile.