async-repl-protocol

Solid

Async REPL Protocol

AI & Automation 519 stars 44 forks Updated 1 weeks ago MIT

Install

View on GitHub

Quality Score: 88/100

Stars 20%
90
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
28
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Async REPL Protocol When working with Agentica's async REPL harness for testing. ## Rules ### 1. Use `await` for Future-returning tools ```python 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. ```python # 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)

Details

Author
vibeeval
Repository
vibeeval/vibecosystem
Created
4 months ago
Last Updated
1 weeks ago
Language
C#
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category