npx skills add smithery/parcadei --skill async-repl-protocol
parcadei/continuous-claude-v3
async-repl-protocol
Async REPL Protocol
Installation
npx skills add parcadei/continuous-claude-v3 --skill async-repl-protocol
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
For agent payments and paid endpoints via x402, MPP, payment links, a2a-pay, and HTTP-payment r…
11.6K installsMaster network protocol reverse engineering including packet analysis, protocol dissection, and…
10.9K installsImplement DeFi protocols with production-ready templates for staking, AMMs, governance, and fla…
9.2K installsStructured messaging protocols for agent team communication including message type selection, p…
8.4K installsProtocol-based dependency injection for testable Swift code — mock file system, network, and ex…
8.3K installs>- 阿里云百炼 `bl` 家族? 不是面向用户意图的业务? bailian-finetune / bailian-managed-agent / bai…
8.2K installsAlso in this package
Other skills from parcadei/continuous-claude-v3 · top by installs.
npx skills add parcadei/continuous-claude-v3
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md634 B -
docs
SUMMARY.md43 B
History
- First seen on skills.sh
- First recorded snapshot · 472 installs
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)