From traces
Analyze recent execution traces to find recurring patterns, failures, and optimization opportunities
npx claudepluginhub artmin96/forge-studio --plugin tracesThis skill uses the workspace's default tool permissions.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Facilitates interactive brainstorming sessions using diverse creative techniques and ideation methods. Activates when users say 'help me brainstorm' or 'help me ideate'.
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]