async-repl-protocol by parcadei/continuous-claude-v3
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill async-repl-protocol在使用 Agentica 的异步 REPL 测试工具时。
awaitcontent = await view_file(path) # 不要用 view_file(path)
answer = await ask_memory("...")
在一个代码块内完成计算并返回结果。多个代码块意味着只有第一个会被执行。
# 正确:单个代码块
content = await view_file(path)
return any(c.isdigit() for c in content)
# 错误:拆分成多个块(第二个块永远不会运行)
content = await view_file(path)
每周安装量
193
代码仓库
GitHub 星标数
3.6K
首次出现
2026年1月22日
安全审计
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
安装于
opencode188
codex187
gemini-cli185
cursor184
github-copilot182
amp178
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)
Weekly Installs
193
Repository
GitHub Stars
3.6K
First Seen
Jan 22, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykPass
Installed on
opencode188
codex187
gemini-cli185
cursor184
github-copilot182
amp178
通过 LiteLLM 代理让 Claude Code 对接 GitHub Copilot 运行 | 高级变通方案指南
31,600 周安装