Stats
Actions
Tags
From agentic-workflow-framework
Runs a swarm coordination system: a file guard script on Write/Edit calls, init on session start, and sync on user prompts. Implemented in Node.js.
3 events · 4 hooks
Safety signals detected in this hook configuration
Where this hook configuration is defined
Defined inline in plugin.json manifest
Event handlers and matchers — expand Raw Configuration for the full JSON
Write|Editbash "${CLAUDE_PLUGIN_ROOT}/hooks/allow-workflow-paths.sh"5msbash "${CLAUDE_PLUGIN_ROOT}/hooks/inject-agentic-context.sh"5msif [ -d .localdev/workflow ]; then found=0; if grep -qE '^## [0-9]{4}-' .localdev/workflow/blockers.md 2>/dev/null; then echo 'Active blockers: .localdev/workflow/blockers.md'; found=1; fi; for f in .localdev/workflow/handoffs/*.md; do [ -e "$f" ] && { mtime=$(stat -f %m "$f" 2>/dev/null || stat -c %Y "$f" 2>/dev/null); mtime=${mtime:-$(date +%s)}; age=$(( ( $(date +%s) - mtime ) / 86400 )); if [ "$age" -gt 7 ]; then echo "Open handoff: $f (age: ${age}d) — stale, resume or absorb into done.md"; else echo "Open handoff: $f (age: ${age}d)"; fi; found=1; }; done; if grep -qE '^## \[(doing|blocked)\]' .localdev/workflow/todo.md 2>/dev/null; then echo 'Open tasks: .localdev/workflow/todo.md'; found=1; fi; if [ "$found" -eq 0 ]; then echo 'agentic: armed'; fi; fi5msbash "${CLAUDE_PLUGIN_ROOT}/hooks/orchestrator.sh"5ms13plugins reuse this hooks config
First indexed Dec 4, 2025
Showing the 6 earliest of 13 plugins
npx claudepluginhub jeanfbrito/agentic-workflow-framework --plugin agentic-workflow-framework