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. Blocks sleep commands, blocks wrapping ssh/scp/sftp/rsync-over-ssh in timeout (steers to native ConnectTimeout fast-fail), blocks Write/Edit to the built-in memory directory (~/.claude/projects/*/memory/), enforces cron interval/count limits, and blocks a single Read call from returning more than a configurable byte limit of text file content (images/PDFs/notebooks skipped). Configurable via GUARDRAILS_MAX_CRONS, GUARDRAILS_MIN_CRON_MINUTES, and GUARDRAILS_MAX_READ_BYTES (default 64 KiB). |
| herdr-kit | Herdr agent tools: checkpoint-and-relaunch a running claude/pi/codex agent in place (including self-rotation via a detached daemon), plus non-blocking async inter-agent messaging. Configurable via ROTATE_DROP_FLAGS_<KIND> (e.g. ROTATE_DROP_FLAGS_CODEX) to drop a shell-alias-supplied launch flag from the replayed argv entirely, for CLIs (like codex) that error on a repeated flag rather than tolerate it. |
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,
"herdr-kit@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.