nav-statslisted
Install: claude install-skill alekspetrov/navigator
# Navigator Session Statistics Skill
Show real-time efficiency reporting with baseline comparisons, making Navigator's value quantifiable and shareable.
## When to Invoke
Invoke this skill when the user:
- Says "show my stats", "show session stats", "show metrics"
- Asks "how efficient am I?", "how much did I save?"
- Says "show my Navigator report", "efficiency report"
- Wants to see token savings or session performance
- Says "show impact", "prove Navigator works"
**DO NOT invoke** if:
- User just started session (< 5 messages)
- Navigator not initialized in project
- User asking about specific metrics only (answer directly)
## Execution Steps
### Step 1: Check Navigator Initialized
Verify Navigator is set up:
```bash
if [ ! -f ".agent/DEVELOPMENT-README.md" ]; then
echo "❌ Navigator not initialized in this project"
echo "Run 'Initialize Navigator' first"
exit 1
fi
```
### Step 2: Run Enhanced Session Stats
Execute the enhanced session statistics script:
```bash
PLUGIN_DIR="${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/cache/navigator-marketplace/navigator}"
[ -d "$PLUGIN_DIR" ] || PLUGIN_DIR="$HOME/.claude/plugins/marketplaces/navigator-marketplace"
# Check if enhanced script exists
if [ ! -f "$PLUGIN_DIR/scripts/session-stats.sh" ]; then
echo "❌ Session stats script not found"
echo "Reinstall or update Navigator to restore scripts/session-stats.sh"
exit 1
fi
# Run stats script
bash "$PLUGIN_DIR/scripts/session-stats.sh"
```
This script outputs shel