trace-claude-code
Automatically trace Claude Code conversations to Braintrust for observability. Captures sessions, conversation turns, and tool calls as hierarchical traces.
Async REPL Protocol
$ npx -y skills add parcadei/Continuous-Claude-v3 --skill async-repl-protocol --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/async-repl-protocolContext preview
The summary Claude sees to decide when to auto-load this skill.
Async REPL Protocol
name: async-repl-protocol description: Async REPL Protocol user-invocable: false
When working with Agentica's async REPL harness for testing.
content = 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)
A persistent, learning, multi-agent development environment built on Claude Code Continuous Claude transforms Claude Code into a continuously learning system that maintains context across sessions, orchestrates specialized agents, and eliminates wasting
Repo: parcadei/Continuous-Claude-v3
Automatically trace Claude Code conversations to Braintrust for observability. Captures sessions, conversation turns, and tool calls as hierarchical traces.
Guide for integrating Agentica SDK with Claude Code CLI proxy
Reference guide for Agentica multi-agent infrastructure APIs