@parcadei/async-repl-protocol

Context management for Claude Code. Hooks maintain state via ledgers and handoffs. MCP execution without context pollution. Agent orchestration with isolated context windows.

View in AI SkillSafe app
14737 downloads
0 stars
0 demos
SKILL.md
nameasync-repl-protocol
descriptionAsync 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("...")

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)

Embed badges

Add these to your README to show the skill's verification status.

SkillSafe verified badge
Verified badge
[![SkillSafe verified badge](https://api.skillsafe.ai/v1/badge/@parcadei/async-repl-protocol/verified)](https://skillsafe.ai/skill/@parcadei/async-repl-protocol/)
Installs badge
Installs badge
[![Installs badge](https://api.skillsafe.ai/v1/badge/@parcadei/async-repl-protocol/installs)](https://skillsafe.ai/skill/@parcadei/async-repl-protocol/)
Scan badge
Scan badge
[![Scan badge](https://api.skillsafe.ai/v1/badge/@parcadei/async-repl-protocol/scan)](https://skillsafe.ai/skill/@parcadei/async-repl-protocol/)
Eval pass rate badge
Eval pass rate
[![Eval pass rate badge](https://api.skillsafe.ai/v1/badge/@parcadei/async-repl-protocol/eval)](https://skillsafe.ai/skill/@parcadei/async-repl-protocol/)