@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.
No skills found in this collection.
SKILL.md
| name | async-repl-protocol |
| description | 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("...")
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)
Loading...
Select a file to preview
Analyzing security...
Checking scan reports and verification data.
Bill of Materials
Everything this skill can do — files, network, commands, and more.
No demos yet. To add one, ask your AI agent: "Submit a demo for @parcadei/async-repl-protocol" — or upload via the API.
To add a demo, ask your AI agent: "Submit a demo for @parcadei/async-repl-protocol"
No eval data yet. Eval results are published via the SkillSafe API.