fix: Remove hardcoded actors, let bd use default chain

bd defaults to $BD_ACTOR → git config user.name → $USER, which is
more accurate for system tools like doctor and rig init.

🤖 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-26 19:50:19 -08:00
parent d3ed26f7a8
commit 8122a9e944
2 changed files with 0 additions and 2 deletions

View File

@@ -118,7 +118,6 @@ func (c *PatrolMoleculesExistCheck) Fix(ctx *CheckContext) error {
"--title="+mol,
"--description="+desc,
"--priority=2",
"--actor=gt-doctor",
)
cmd.Dir = rigPath
if err := cmd.Run(); err != nil {

View File

@@ -534,7 +534,6 @@ func (m *Manager) seedPatrolMoleculesManually(rigPath string) error {
"--title="+mol.title,
"--description="+mol.desc,
"--priority=2",
"--actor=gt-rig-init",
)
cmd.Dir = rigPath
if err := cmd.Run(); err != nil {