parcadei

async-repl-protocol

Async REPL Protocol

parcadei 3,930 299 Updated 8mo ago
GitHub

Install

npx skillscat add parcadei/continuous-claude-v3/async-repl-protocol

Install via the SkillsCat registry.

About this skill

We need to produce a 2-3 sentence plain-text summary, objective, factual, no marketing language, no bullet points, no headings, no markdown formatting, no quotes, at most 60 words. Must be only the summary text. So we need to write 2-3 sentences, plain text, describing what the skill does, what problem it solves, when to use it. No markdown, no bullet points, no headings. No quotes. At most 60 words. Let's craft about 45 words.

SKILL.md

Async REPL Protocol

When working with Agentica's async REPL harness for testing.

Rules

1. Use await for Future-returning tools

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.

# 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)

Categories