How this command is triggered — by the user, by Claude, or both
Slash command
/trace-everything:traces-analyzeThe summary Claude sees in its command listing — used to decide when to auto-load this command
Traces: Analyze Best-effort quick scan of the latest trace log: LATEST=$(ls -t ~/.maude/trace-logs-of-everything/*-TRACE.log 2>/dev/null | head -1) if [ -z "$LATEST" ]; then echo "No trace logs found." exit 0 fi echo "Latest trace: $LATEST" echo "\nTop tools (counts):" grep -E -o "TOOL [^ ]+" "$LATEST" | sort | uniq -c | sort -nr | head -20 echo "\nTop MCP events (counts):" grep -o "MCP" "$LATEST" | sort | uniq -c | sort -nr | head -20 echo "\nTop SKILL events (counts):" grep -o "SKILL" "$LATEST" | sort | uniq -c | sort -nr | head -20
Traces: Analyze
Best-effort quick scan of the latest trace log:
LATEST=$(ls -t ~/.maude/trace-logs-of-everything/*-TRACE.log 2>/dev/null | head -1) if [ -z "$LATEST" ]; then echo "No trace logs found." exit 0 fi
echo "Latest trace: $LATEST"
echo "\nTop tools (counts):" grep -E -o "TOOL [^ ]+" "$LATEST" | sort | uniq -c | sort -nr | head -20
echo "\nTop MCP events (counts):" grep -o "MCP" "$LATEST" | sort | uniq -c | sort -nr | head -20
echo "\nTop SKILL events (counts):" grep -o "SKILL" "$LATEST" | sort | uniq -c | sort -nr | head -20
npx claudepluginhub bennoloeffler/maude-claude-vunds-plugins --plugin trace-everything/analyzeValidates and analyzes trace files (OTEL JSON or Claude Code JSONL) for cases like grounding, missed actions, goal drift, tool failures, and guardrail violations, tracking events persistently.
/trajectoryAnalyzes RLM trajectory file at path (default: last), producing summary stats, event distribution, slow events, and errors.
/debugInvestigates errors in files or production issues using Logfire traces: finds recent exceptions, runs SQL queries on OpenTelemetry data, suggests code fixes, shares trace links.
/assist-mcp-logsQueries the MCP server's tool call log to display search, detail, and feedback calls made by Claude Code, with optional filtering and limit.
/buidl-traceDisplays agent execution trace for the current loop session from trace.jsonl, rendering table of timestamps, events, agents, phases, cycles, details, plus summary of events, agents, and errors.