Skip to main content

async-repl-protocol

Async REPL Protocol

Jump to install

Source facts

Repository
parcadei/Continuous-Claude-v3
Last source activity
January 10, 2026 at 01:54
Detected SKILL.md language
English
Stars
3,942
Forks
303

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
async-repl-protocol
description
Async REPL Protocol
user-invocable
false
# 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)
View on GitHub