bd init: initialize beads issue tracking

This commit is contained in:
2026-03-01 21:13:42 -05:00
commit a5b03d72c6
15 changed files with 393 additions and 0 deletions

9
.beads/hooks/pre-commit Normal file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env sh
# --- BEGIN BEADS INTEGRATION v0.57.0 ---
# This section is managed by beads. Do not remove these markers.
if command -v bd >/dev/null 2>&1; then
export BD_GIT_HOOK=1
bd hooks run pre-commit "$@"
_bd_exit=$?; if [ $_bd_exit -ne 0 ]; then exit $_bd_exit; fi
fi
# --- END BEADS INTEGRATION ---