Chore/add beads (#52)

* chore: added beads

* more on beads

---------

Co-authored-by: hugo <hugoms@me.com>
This commit is contained in:
Georg Bauer
2026-03-13 18:39:03 +01:00
committed by GitHub
parent 914af9831d
commit 3c7590f009
15 changed files with 456 additions and 0 deletions

11
.mux/init Executable file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env bash
set -euo pipefail
# BEGIN BEADS MUX HOOK
# Claude SessionStart equivalent for Mux: prime beads context when workspace initializes.
if command -v bd >/dev/null 2>&1; then
bd prime --stealth >/dev/null 2>&1 || true
elif [ -x "$HOME/bin/bd" ]; then
"$HOME/bin/bd" prime --stealth >/dev/null 2>&1 || true
fi
# END BEADS MUX HOOK