nav-stats

Solid

Display session efficiency report showing token savings, cache performance, and optimization recommendations. Use when user asks "show my stats", "how efficient am I?", "show session metrics", or wants to see Navigator's impact.

AI & Automation 232 stars 12 forks Updated today

Install

View on GitHub

Quality Score: 82/100

Stars 20%
79
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
0
Description 5%
100

Skill Content

# 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...

Details

Author
alekspetrov
Repository
alekspetrov/navigator
Created
11 months ago
Last Updated
today
Language
Python
License
None

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category