Правила асинхронного кода в REPL-среде Agentica
engineering
async-repl-protocol is a Claude Code skill that defines the rules for working with Agentica's async REPL harness during testing. It enforces two strict requirements: always use await when calling Future-returning tools such as view_file or ask_memory, and place all computation and the return statement inside a single code block per response. Splitting logic across multiple blocks causes only the first to execute — a common pitfall this protocol explicitly prevents. The skill is intended for developers writing agentic tests on top of Agentica who need Claude Code to generate correct async Python code within a REPL environment.
- #async
- #repl
- #protocol
- #testing
- #claude-code