From claude-pulse
Query the insights/brain database — search decisions, progress, blockers, patterns across all projects. Use when the user asks "what decisions did I make", "show me blockers", "what patterns have I noticed", "search my insights for X", or wants to find a past decision.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-pulse:pulse-insightsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search and filter the insights database.
Search and filter the insights database.
Parse $ARGUMENTS:
type: — filter by that insight typesqlite3 ~/.claude-pulse/tracker.db "
SELECT project, type, content, created_at
FROM insights
WHERE type = '<type>'
ORDER BY created_at DESC
LIMIT 20;
"
sqlite3 ~/.claude-pulse/tracker.db "
SELECT project, type, content, created_at
FROM insights
WHERE content LIKE '%<search-term>%'
ORDER BY created_at DESC
LIMIT 20;
"
sqlite3 ~/.claude-pulse/tracker.db "
SELECT type, COUNT(*) as count FROM insights GROUP BY type ORDER BY count DESC;
"
Then show the 5 most recent insights:
sqlite3 ~/.claude-pulse/tracker.db "
SELECT project, type, content, created_at
FROM insights
ORDER BY created_at DESC
LIMIT 5;
"
Format as a timeline with type badges. Group by date if there are many results. If searching, highlight the matching term in the results.
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