Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From ticket-workflows
Guides branch-based ticket workflows: warns on session end if workflow context exists, blocks commits without changelog fragments, and prompts initialization on new branches. Executes bash commands.
3 events · 3 hooks
npx claudepluginhub thebranchdriftcatalyst/catalyst-agentic-sdlc --plugin ticket-workflowsSafety 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
sh -c 'BRANCH=$(git branch --show-current 2>/dev/null); if [ -n "$BRANCH" ]; then TYPE=${BRANCH%%/*}; REST=${BRANCH#*/}; TICKET=${REST%%/*}; DESC=${REST#*/}; DIR=".scratch/ticket-workflows/$TYPE/$TICKET-$DESC"; if [ -d "$DIR" ]; then echo "[ticket-workflows] workflow context exists at $DIR - consider updating before ending session."; fi; fi'Bash(git commit*)sh -c 'if ! ls changes/*.* 2>/dev/null | head -1 > /dev/null; then echo "[ticket-workflows] no changelog fragment found in changes/"; fi'Bash(git checkout -b*)echo 'New branch detected. Run /ticket-workflows:begin to initialize workflow context.'Share bugs, ideas, or general feedback.