Wisps are now just a flag on regular beads issues (Wisp=true). No separate directory needed - hooks stored in .beads/. Changes: - wisp package: WispDir now points to .beads/, removed PatrolCycle - manager.go: removed initWispBeads() - no separate dir to create - mrqueue.go: MRs stored in .beads/mq/ instead of .beads-wisp/mq/ - doctor: removed obsolete wisp directory checks - docs: updated wisp-architecture.md to reflect simplified model 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
583 B
Go
15 lines
583 B
Go
package doctor
|
|
|
|
// Legacy wisp directory checks removed.
|
|
// Wisps are now just a flag on regular beads issues (Wisp: true).
|
|
// Hook files are stored in .beads/ alongside other beads data.
|
|
//
|
|
// These checks were for the old .beads-wisp/ directory infrastructure:
|
|
// - WispExistsCheck: checked if .beads-wisp/ exists
|
|
// - WispGitCheck: checked if .beads-wisp/ is a git repo
|
|
// - WispOrphansCheck: checked for old wisps
|
|
// - WispSizeCheck: checked size of .beads-wisp/
|
|
// - WispStaleCheck: checked for inactive wisps
|
|
//
|
|
// All removed as of the wisp simplification (gt-5klh, bd-bkul).
|