feat: polecats run with --dangerously-skip-permissions

Gas Town is for grownups. Polecats now start Claude with full
permissions to enable autonomous operation without prompts.

🤖 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-17 14:45:00 -08:00
parent be26248037
commit ec29ca0738

View File

@@ -117,7 +117,8 @@ func (m *Manager) Start(polecat string, opts StartOptions) error {
// Send initial command // Send initial command
command := opts.Command command := opts.Command
if command == "" { if command == "" {
command = "claude" // Polecats run with full permissions - Gas Town is for grownups
command = "claude --dangerously-skip-permissions"
} }
if err := m.tmux.SendKeys(sessionID, command); err != nil { if err := m.tmux.SendKeys(sessionID, command); err != nil {
return fmt.Errorf("sending command: %w", err) return fmt.Errorf("sending command: %w", err)