Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Startedasync-repl-protocol
Async REPL Protocol
Stars3,818
Forks294
UpdatedJanuary 10, 2026 at 01:54
SKILL.md
readonlyMenu
Async REPL Protocol
Create git commits with user approval and no Claude attribution
Create or update continuity ledger for state preservation across clears
Create handoff document for transferring work to another session
Generate comprehensive PR descriptions following repository templates
Deep interview process to transform vague ideas into detailed specs. Works for technical and non-technical users.
Search Mathlib for lemmas by type signature pattern
| name | async-repl-protocol |
| description | Async REPL Protocol |
When working with Agentica's async REPL harness for testing.
await for Future-returning toolscontent = await view_file(path) # NOT view_file(path)
answer = await ask_memory("...")
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)