/Catalogue/Prompt/parcadei/parcadei-continuous-claude-v3-async-repl-protocol

Origin: github

async-repl-protocol

Async REPL Protocol

by parcadei · updated 8mo ago · imported from GitHub

Installs0+0/7d
Security score100/100
Retention 14d0%
GitHub stars3.9K

Skill logic

Execution graph
User message
Prompt rewrites behaviour
Response

SKILL.md

View on GitHub ↗

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)

Discussion

No comments yet — start the thread.

Sign in to join the discussion.

/More from parcadei/Continuous-Claude-v3

parcadei· 8mo agoCommunity
dead-code

Prompts · Python · v0.1.0

Find unused functions and dead code in the codebase

#agents#claude-code#claude-code-cli

0 3.9K
parcadei· 8mo agoCommunity
agent-orchestration

Prompts · Python · v0.1.0

Agent Orchestration Rules

#agents#claude-code#claude-code-cli

0 3.9K
parcadei· 8mo agoCommunity
agentic-workflow

Prompts · Python · v0.1.0

Agentic Workflow Pattern

#agents#claude-code#claude-code-cli

0 3.9K