From claude-pulse
Show the latest work across all projects — recent sessions, what was accomplished, and what's blocked. Use when the user asks "what did I work on", "what's the latest", "show recent activity", "where did I leave off", or wants a cross-project summary.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-pulse:pulse-latestThis 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 recent activity and insights across all projects.
Show recent activity and insights across all projects.
The user may specify a number of days in $ARGUMENTS (default: 3).
sqlite3 ~/.claude-pulse/tracker.db "
SELECT
project,
started_at,
duration_seconds / 60 as minutes,
status,
substr(summary, 1, 200) as summary
FROM sessions
WHERE started_at >= datetime('now', '-${DAYS} days')
ORDER BY started_at DESC
LIMIT 20;
"
sqlite3 ~/.claude-pulse/tracker.db "
SELECT
project,
type,
content,
created_at
FROM insights
WHERE created_at >= datetime('now', '-${DAYS} days')
ORDER BY created_at DESC
LIMIT 20;
"
sqlite3 ~/.claude-pulse/tracker.db "
SELECT project, content, created_at
FROM insights
WHERE type = 'blocked'
ORDER BY created_at DESC
LIMIT 5;
"
Group by project. For each project show:
End with a summary: "Across X projects in the last Y days: Z sessions, N insights captured."
If there are active blockers, highlight them at the top.
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