maestro/skills/archive/async-repl-protocol/SKILL.md
Async REPL Protocol
npx skillsauth add scooter-lacroix/maestro async-repl-protocolInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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)
tools
Wiring Verification
tools
Create and configure Maestro sub-agents with custom prompts, tools, and models
data-ai
Create and use Maestro slash commands - quick prompts, bash execution, file references
development
Upgrade any skill to v5 Hybrid format using decision theory + modal logic