View skill activation history and logs
View skill activation history and logs for the current session. Use this to debug skill usage, track token consumption, and understand which skills are being triggered and why.
/plugin marketplace add physics91/claude-vibe/plugin install claude-vibe@physics91-pluginsView the history of skill activations in the current session.
/skill-log [options]
--tail <n>: Show last N entries (default: 10)--filter <skill>: Filter by skill name--verbose: Show detailed activation contextLook for skill activation logs in:
.claude/logs/skill-activations.json (if persistent logging enabled)Each entry contains:
Output Format:
## Skill Activation Log
### Recent Activations (Last 10)
| Time | Skill | Trigger | Tokens |
|------|-------|---------|--------|
| 14:32:15 | fastapi-reviewer | "Review my FastAPI code" | ~2.1k |
| 14:28:03 | python-reviewer | "Check this Python file" | ~1.8k |
| 14:15:22 | security-scanner | "Is this code secure?" | ~2.5k |
### Session Summary
- **Total Activations**: 12
- **Most Used**: python-reviewer (4x)
- **Est. Tokens Used**: ~24,000
### Activation Details (--verbose)
**14:32:15 - fastapi-reviewer**
Trigger: User prompt contained "FastAPI" Detection: Found fastapi in requirements.txt Context: Reviewing routers/users.py Token estimate: 2,100 tokens
/skill-log --tail 5
/skill-log --filter security-scanner
/skill-log --verbose