From ec29ca0738657972142a5967f5a3c833bb305375 Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Wed, 17 Dec 2025 14:45:00 -0800 Subject: [PATCH] feat: polecats run with --dangerously-skip-permissions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- internal/session/manager.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/session/manager.go b/internal/session/manager.go index 44eadcc9..3ef85a95 100644 --- a/internal/session/manager.go +++ b/internal/session/manager.go @@ -117,7 +117,8 @@ func (m *Manager) Start(polecat string, opts StartOptions) error { // Send initial command command := opts.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 { return fmt.Errorf("sending command: %w", err)