refactor: remove Go patrol logic from witness manager (gt-kh6q)

Patrol logic is now handled by mol-witness-patrol molecule executed by Claude.
Removed ~985 lines of Go code:
- run(), checkAndProcess(), healthCheck()
- handleStuckPolecat(), getNudgeCount(), recordNudge(), clearNudgeCount()
- processShutdownRequests(), verifyPolecatState()
- autoSpawnForReadyWork(), getActivePolecatCount(), isAlreadySpawned(), spawnPolecat()
- Plus all helper functions

Kept: NewManager(), stateFile(), loadState(), saveState(), Status(), Start(), Stop()

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Steve Yegge
2025-12-23 23:44:54 -08:00
parent c29396d929
commit c483602231
4 changed files with 373 additions and 1376 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -442,7 +442,7 @@ func runSpawn(cmd *cobra.Command, args []string) error {
witnessMgr := witness.NewManager(r)
if witStatus, err := witnessMgr.Status(); err == nil && witStatus.State != witness.StateRunning {
fmt.Printf("Starting witness for %s...\n", rigName)
if err := witnessMgr.Start(false); err != nil {
if err := witnessMgr.Start(); err != nil {
if err != witness.ErrAlreadyRunning {
fmt.Printf(" %s\n", style.Dim.Render(fmt.Sprintf("Warning: could not start witness: %v", err)))
}

View File

@@ -131,14 +131,16 @@ func runWitnessStart(cmd *cobra.Command, args []string) error {
fmt.Printf("Starting witness for %s...\n", rigName)
if witnessForeground {
// Foreground mode: run monitoring loop in current process (blocking)
if err := mgr.Start(true); err != nil {
// Foreground mode is no longer supported - patrol logic moved to mol-witness-patrol
if err := mgr.Start(); err != nil {
if err == witness.ErrAlreadyRunning {
fmt.Printf("%s Witness is already running\n", style.Dim.Render("⚠"))
return nil
}
return fmt.Errorf("starting witness: %w", err)
}
fmt.Printf("%s Note: Foreground mode no longer runs patrol loop\n", style.Dim.Render("⚠"))
fmt.Printf(" %s\n", style.Dim.Render("Patrol logic is now handled by mol-witness-patrol molecule"))
return nil
}
@@ -155,7 +157,7 @@ func runWitnessStart(cmd *cobra.Command, args []string) error {
}
// Update manager state to reflect running session
_ = mgr.Start(false) // Mark as running in state file
_ = mgr.Start() // Mark as running in state file
fmt.Printf("%s Witness started for %s\n", style.Bold.Render("✓"), rigName)
fmt.Printf(" %s\n", style.Dim.Render("Use 'gt witness attach' to connect"))
@@ -399,7 +401,7 @@ func runWitnessRestart(cmd *cobra.Command, args []string) error {
}
if created {
_ = mgr.Start(false) // Mark as running in state file
_ = mgr.Start() // Mark as running in state file
}
fmt.Printf("%s Witness restarted for %s\n", style.Bold.Render("✓"), rigName)

File diff suppressed because it is too large Load Diff