Stats
Actions
Tags
From traces
Analyze recent execution traces to find recurring patterns, failures, and optimization opportunities
How this skill is triggered — by the user, by Claude, or both
Slash command
/traces:trace-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Analyze execution traces stored in `~/.claude/traces/` to identify patterns across sessions.
Analyze execution traces stored in ~/.claude/traces/ to identify patterns across sessions.
ls -t ~/.claude/traces/*.jsonl | head -5 to find the 5 most recent sessionstype, timestamp, and type-specific fieldsbash: command, exit_code, output_preview, cwdfile: tool (Write/Edit), file_path, cwdsession_end: bash_commands, file_operations, errors, unique_files_modified## Trace Review (last N sessions)
### Recurring Failures
- [pattern]: happened N times across M sessions
### File Hotspots
- [file]: modified N times (consider: tests? refactor? stability?)
### Session Health Trend
- Avg error rate: N%
- Avg commands/session: N
- Trend: improving/stable/degrading
### Recommendations
- [actionable suggestion based on patterns]
npx claudepluginhub artmin96/forge-studio --plugin tracesCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.