- Remove hook functions from internal/wisp/io.go (WriteSlungWork, ReadHook, BurnHook, etc.) - Remove hook types from internal/wisp/types.go (SlungWork, Wisp, etc.) - Update up.go to query pinned beads instead of reading hook files - Remove SlungWork field from molecule_status.go - Remove hook-*.json pattern from .beads/.gitignore - Delete live hook file /Users/stevey/gt/deacon/.beads/hook-deacon.json Work is now tracked exclusively via pinned beads (status=pinned, assignee=agent). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
358 B
Go
10 lines
358 B
Go
// Package wisp provides utilities for working with the .beads directory.
|
|
//
|
|
// This package was originally for "hook files" but those are now deprecated
|
|
// in favor of pinned beads. The remaining utilities help with directory
|
|
// management for the beads system.
|
|
package wisp
|
|
|
|
// WispDir is the directory where beads data is stored.
|
|
const WispDir = ".beads"
|