trace-claude-code
Automatically trace Claude Code conversations to Braintrust for observability. Captures sessions, conversation turns, and tool calls as hierarchical traces.
Agent Orchestration Rules
$ npx -y skills add parcadei/Continuous-Claude-v3 --skill agent-orchestration --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/agent-orchestrationContext preview
The summary Claude sees to decide when to auto-load this skill.
Agent Orchestration Rules
name: agent-orchestration description: Agent Orchestration Rules user-invocable: false
When the user asks to implement something, use implementation agents to preserve main context.
**Wrong - burns context:**
Main: Read files → Understand → Make edits → Report
(2000+ tokens consumed in main context)**Right - preserves context:**
Main: Spawn agent("implement X per plan")
↓
Agent: Reads files → Understands → Edits → Tests
↓
Main: Gets summary (~200 tokens)| Task Type | Use Agent? | Reason | |-----------|------------|--------| | Multi-file implementation | Yes | Agent handles complexity internally | | Following a plan phase | Yes | Agent reads plan, implements | | New feature with tests | Yes | Agent can run tests | | Single-line fix | No | Faster to do directly | | Quick config change | No | Overhead not worth it |
Agents read their own context. Don't read files in main chat just to understand what to pass to an agent - give them the task and they figure it out.
Implement Phase 4: Outcome Marking Hook from the Artifact Index plan. **Plan location:** thoughts/shared/plans/2025-12-24-artifact-index.md (search for "Phase 4") **What to create:** 1. TypeScript hook 2. Shell wrapper 3. Python script 4. Register in settings.json When done, provide a summary of files created and any issues.
When user says these, consider using an agent:
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
Write reliable prompts for Agentica/REPL agents that avoid LLM instruction ambiguity