A collection of Claude Code plugins for development workflow automation.
| Plugin | Description |
|---|---|
| recall | Automatic branch-aware recall system. Tracks project knowledge across branches and tasks with layered overlays, conditional topic loading, auto-save rules, and merge promotion. |
| ntfy | Push notifications via ntfy.sh when the agent asks a question. Off by default; toggle per-session with /ntfy-on and /ntfy-off. Uses PreToolUse on AskUserQuestion (precise) plus Stop hook with ? grep (best-effort fallback for plain-text questions). |
| guardrails | Enforces safe agent behavior by blocking tool usage patterns that degrade session quality. Currently blocks sleep commands and enforces cron interval/count limits. Configurable via GUARDRAILS_MAX_CRONS and GUARDRAILS_MIN_CRON_MINUTES. |
This repo is a local Claude Code marketplace. Add it to ~/.claude/settings.json:
{
"extraKnownMarketplaces": {
"agent-plugins": {
"source": {
"source": "directory",
"path": "/path/to/agent-plugins"
}
}
},
"enabledPlugins": {
"recall@agent-plugins": true,
"ntfy@agent-plugins": true,
"guardrails@agent-plugins": true
}
}Enable only the plugins you want — each key is independent.
Plugins are loaded automatically by Claude Code when enabled. See each plugin's README for setup and configuration details.