fix: Change 'Pinned' to 'Hooked' in gt mol status output (gt-d9smb)
- Changed icon from 📌 to 🪝 for hooked beads - Changed label from "Pinned" to "Hooked" - Added 🚀 AUTONOMOUS MODE banner when work is on hook - Clarified that hooked bead triggers autonomous work even without molecule 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -568,12 +568,17 @@ func outputMoleculeStatus(status MoleculeStatusInfo) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Show pinned bead info
|
// Show hooked bead info
|
||||||
if status.PinnedBead == nil {
|
if status.PinnedBead == nil {
|
||||||
fmt.Printf("%s\n", style.Dim.Render("Work indicated but no bead found"))
|
fmt.Printf("%s\n", style.Dim.Render("Work indicated but no bead found"))
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
fmt.Printf("%s %s: %s\n", style.Bold.Render("📌 Pinned:"), status.PinnedBead.ID, status.PinnedBead.Title)
|
|
||||||
|
// AUTONOMOUS MODE banner - hooked work triggers autonomous execution
|
||||||
|
fmt.Println(style.Bold.Render("🚀 AUTONOMOUS MODE - Work on hook triggers immediate execution"))
|
||||||
|
fmt.Println()
|
||||||
|
|
||||||
|
fmt.Printf("%s %s: %s\n", style.Bold.Render("🪝 Hooked:"), status.PinnedBead.ID, status.PinnedBead.Title)
|
||||||
|
|
||||||
// Show attached molecule
|
// Show attached molecule
|
||||||
if status.AttachedMolecule != "" {
|
if status.AttachedMolecule != "" {
|
||||||
@@ -589,7 +594,7 @@ func outputMoleculeStatus(status MoleculeStatusInfo) error {
|
|||||||
fmt.Printf(" %s %s\n", style.Bold.Render("Args:"), status.AttachedArgs)
|
fmt.Printf(" %s %s\n", style.Bold.Render("Args:"), status.AttachedArgs)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
fmt.Printf("%s\n", style.Dim.Render("No molecule attached"))
|
fmt.Printf("%s\n", style.Dim.Render("No molecule attached (hooked bead still triggers autonomous work)"))
|
||||||
}
|
}
|
||||||
|
|
||||||
// Show progress if available
|
// Show progress if available
|
||||||
|
|||||||
Reference in New Issue
Block a user