From claude-pulse
List all tracked projects with session counts, last activity, and recent insights. Use when the user asks "what projects am I working on", "show my projects", "list projects", or wants cross-project context.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-pulse:pulse-projectsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Show all tracked projects or details for a specific one.
Show all tracked projects or details for a specific one.
If the user provided a project name in $ARGUMENTS, show details for that project. Otherwise list all projects.
sqlite3 ~/.claude-pulse/tracker.db "
SELECT
s.project,
COUNT(DISTINCT s.id) as sessions,
COALESCE(SUM(s.duration_seconds), 0) / 60 as total_minutes,
MAX(s.started_at) as last_active,
(SELECT COUNT(*) FROM insights i WHERE i.project = s.project) as insights,
(SELECT content FROM insights i WHERE i.project = s.project AND i.type = 'progress' ORDER BY i.created_at DESC LIMIT 1) as last_progress
FROM sessions s
GROUP BY s.project
ORDER BY last_active DESC;
"
sqlite3 ~/.claude-pulse/tracker.db "
SELECT type, content, created_at FROM insights
WHERE project = '<project-name>'
ORDER BY created_at DESC LIMIT 10;
"
Format the output as a clean table. For each project show:
If showing a specific project, show the last 10 insights as a timeline.
npx claudepluginhub bolivar1234/claude-pulseGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.
2plugins reuse this skill
First indexed Jul 8, 2026