A GitHub Copilot CLI skill that analyzes your local session history to reveal your AI-assisted development evolution, recommend next steps, and estimate value gained.
| Feature | Description |
|---|---|
| 🗺️ Journey Analysis | Maps your evolution from first session to current usage patterns |
| 🏆 Milestone Timeline | Highlights your "firsts" — first multi-file build, first PR, first plugin use |
| 💡 Next Steps | Personalized recommendations based on features you haven't explored |
| 💰 ROI Estimate | Transparent time-saved calculation with conservative/moderate/aggressive ranges |
From within Copilot CLI, run:
/plugin install timschps/copilot-learning-journey
That's it! The skill is immediately available.
# macOS/Linux
git clone https://github.com/timschps/copilot-learning-journey.git ~/.copilot/installed-plugins/_direct/timschps--copilot-learning-journey
# Windows (PowerShell)
git clone https://github.com/timschps/copilot-learning-journey.git "$env:USERPROFILE\.copilot\installed-plugins\_direct\timschps--copilot-learning-journey"Place the skills/ folder at the root of any repository to make it available when working in that repo.
Once installed, the skill activates automatically when you ask about your learning journey. Try:
"Show me my learning journey""How have I evolved with Copilot?""What should I try next?""Is Copilot worth it? Show me my ROI""Copilot stats""How much time have I saved?"
The skill queries your local session store database (session_store) — the same SQLite DB that Copilot CLI uses to track your conversations. No data leaves your machine.
It analyzes:
- Session frequency and depth over time
- Files touched and repos worked in
- Features used (skills, MCP, plugins, /review, /delegate, etc.)
- Delivery signals (commits, PRs linked)
- Usage consistency (streaks, gaps)
- ✅ All analysis happens locally — no external API calls
- ✅ No session content is shown in output — only patterns and aggregates
- ✅ Project names and sensitive details are generalized
- ✅ You can inspect exactly what's queried in
SKILL.md
The skill uses transparent assumptions for ROI (documented in SKILL.md). If you want to adjust multipliers or phase thresholds, edit the SKILL.md file directly.
- GitHub Copilot CLI (any version with session history)
- At least 1 session in your history (5+ recommended for meaningful insights)
MIT