From claude-view
Shows dashboards summarizing Claude Code projects with sessions, branches, contributions, and activity stats. Activates on 'project overview', 'show project X', or similar queries.
npx claudepluginhub tombelieber/claude-viewThis skill is limited to using the following tools:
You have access to the claude-view MCP server which provides tools for monitoring, analyzing, and managing Claude Code sessions. The claude-view server must be running on localhost (it auto-starts via the plugin hook).
Searches Claude Code session history using full-text search on summaries, commits, projects, and branches. Use for queries like 'find where I discussed X' or 'search for Y'.
Analyzes local Claude Code session logs to evaluate prompt quality, tool usage, efficiency metrics, productivity patterns, error recovery, and context switching. Ideal for optimizing AI-assisted coding workflows.
Generates usage analytics dashboard from Claude Code sessions with epistemic protocol coverage metrics, friction analysis, growth timelines, and improvement recommendations.
Share bugs, ideas, or general feedback.
You have access to the claude-view MCP server which provides tools for monitoring, analyzing, and managing Claude Code sessions. The claude-view server must be running on localhost (it auto-starts via the plugin hook).
Important: All tool names are prefixed with mcp__claude-view__. When calling a tool, always use the full prefixed name.
Error handling: If a tool returns an error about the server not being detected, tell the user to start it with npx claude-view.
Show project details, sessions, branches, and contribution data.
List projects. Call mcp__claude-view__projects_list_projects to get all projects. If the user asked about a specific project, find the match.
Get project sessions. For the target project, call mcp__claude-view__projects_list_project_sessions with the project slug to get session history.
Get branches. Call mcp__claude-view__projects_list_project_branches with the project slug to see branch activity.
Get contributions. Call mcp__claude-view__contributions_get_contributions to get commit and contribution data.
Present the project dashboard:
## Project Overview — [project name]
**Path:** [project path]
**Sessions:** N total | **Branches:** M active
### Recent Sessions
- [date] — [branch] — [summary] (Xm, $X.XX)
- [date] — [branch] — [summary] (Xm, $X.XX)
### Active Branches
- `[branch]` — N sessions, last active [date]
- `[branch]` — N sessions, last active [date]
### Contributions
- Commits: N | Lines changed: +X / -Y
## All Projects
| Project | Sessions | Last Active | Branches |
|---------|----------|-------------|----------|
| [name] | N | [date] | M |
| Tool | Description |
|---|---|
| Session Tools | |
list_sessions | List sessions with filters |
get_session | Get session details |
search_sessions | Full-text search across sessions |
| Stats Tools | |
get_stats | Dashboard statistics |
get_fluency_score | AI Fluency Score (0-100) |
get_token_stats | Token usage statistics |
| Live Tools | |
list_live_sessions | Currently running sessions |
get_live_summary | Aggregate live session summary |
| Classify Tools | |
classify_start_classification | Trigger a classification job. |
classify_cancel_classification | Cancel a running classification job. |
classify_single_session | Classify a single session synchronously. |
classify_get_classification_status | Get classification status. |
| Coaching Tools | |
coaching_list_rules | - List all coaching rules from the rules directory. |
coaching_apply_rule | - Create a new coaching rule file. |
coaching_remove_rule | - Remove a coaching rule file. |
| Contributions Tools | |
contributions_get_contributions | Main contributions page data. |
contributions_get_branch_sessions | Sessions for a branch. |
contributions_get_session_contribution | Session contribution detail. |
| Export Tools | |
export_sessions | Export all sessions. |
| Facets Tools | |
facets_facet_badges | Quality badges (outcome + satisfaction) for the requested session IDs |
facets_trigger_facet_ingest | Start facet ingest from the Claude Code insights cache |
facets_pattern_alert | Check the most recent sessions for a negative satisfaction pattern |
facets_facet_stats | Aggregate statistics across all session facets. |
| Health Tools | |
health_config | config |
health_check | Health check endpoint. |
health_get_status | Get index metadata and data freshness info. |
| Ide Tools | |
ide_get_detect | GET /api/ide/detect — return cached list of installed IDEs. |
ide_post_open | POST /api/ide/open — open a file in the requested IDE. |
| Insights Tools | |
insights_get_insights | Compute and return behavioral insights. |
insights_get_benchmarks | Compute personal progress benchmarks. |
insights_get_categories | Returns hierarchical category data. |
insights_get_insights_trends | Get time-series trend data for charts. |
insights_list_invocables | List all invocables with their usage counts. |
insights_get_fluency_score | Get the current AI Fluency Score. |
| Jobs Tools | |
jobs_list_jobs | List all active jobs. |
| Monitor Tools | |
monitor_snapshot | - One-shot JSON snapshot of current resources. |
| Oauth Tools | |
oauth_get_auth_identity | oauth identity |
oauth_get_oauth_usage | oauth usage |
oauth_post_oauth_usage_refresh | oauth usage refresh |
| Pairing Tools | |
pairing_list_devices | GET /pairing/devices — List paired devices. |
pairing_unpair_device | DELETE /pairing/devices/:id — Unpair a device. |
pairing_generate_qr | GET /pairing/qr — Generate QR payload for mobile pairing. |
| Plans Tools | |
plans_get_session_plans | - returns plan documents for the session's slug. |
| Plugins Tools | |
plugins_list_plugins | - Unified view of installed + available plugins. |
plugins_list_marketplaces | plugins marketplaces |
plugins_refresh_all | all |
plugins_refresh_status | status |
plugins_list_ops_handler | List all queued/running/completed ops. |
plugins_enqueue_op | Enqueue a plugin mutation, return immediately. |
| Processes Tools | |
processes_cleanup_processes | processes cleanup |
processes_kill_process | processes {pid} kill |
| Projects Tools | |
projects_list_projects | List all projects as lightweight summaries. |
projects_list_project_branches | List distinct branches with session counts. |
projects_list_project_sessions | Paginated sessions for a project. |
| Prompts Tools | |
prompts_list_prompts | List prompt history with optional search/filter. |
prompts_get_prompt_stats | Aggregate prompt statistics. |
prompts_get_prompt_templates | Detected prompt templates. |
| Reports Tools | |
reports_list_reports | List all saved reports. |
reports_get_preview | Aggregate preview stats for a date range. |
reports_get_report | Get a single report. |
reports_delete_report | Delete a report. |
| Search Tools | |
search_handler | Full-text search across sessions. |
| Settings Tools | |
settings_get_settings | Read current app settings. |
settings_update_settings | Update app settings (partial). |
settings_update_git_sync_interval | Update the git sync interval. |
| Share Tools | |
share_create_share | sessions {session_id} share |
share_revoke_share | sessions {session_id} share |
share_list_shares | shares |
| Sync Tools | |
sync_indexing_status | - lightweight JSON snapshot of indexing progress. |
sync_trigger_deep_index | Trigger a full deep index rebuild. |
sync_trigger_git_sync | Trigger git commit scanning (A8.5). |
| System Tools | |
system_check_path | Check whether a filesystem path still exists. |
system_get_system_status | Get comprehensive system status. |
system_clear_cache | Clear search index and cached data. |
system_trigger_git_resync | Trigger full git re-sync. |
system_trigger_reindex | Trigger a full re-index. |
system_reset_all | Factory reset all data. |
| Teams Tools | |
teams_list_teams | List all teams. |
teams_get_team | Get team detail. |
teams_get_team_inbox | Get team inbox messages. |
| Telemetry Tools | |
telemetry_set_consent | Set telemetry consent preference. |
| Turns Tools | |
turns_get_session_turns | - Per-turn breakdown for a historical session. |
| Workflows Tools | |
workflows_list_workflows | workflows |
workflows_create_workflow | workflows |
workflows_control_run | workflows run {run_id} control |
workflows_get_workflow | workflows {id} |
workflows_delete_workflow | workflows {id} |