async-repl-protocol

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

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "async-repl-protocol" with this command: npx skills add parcadei/continuous-claude-v3/parcadei-continuous-claude-v3-async-repl-protocol

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("...")

  1. 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)

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

agentic-workflow

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

agent-orchestration

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

agent-context-isolation

No summary provided by upstream source.

Repository SourceNeeds Review