本文由 AI 分析生成
建立時間: 2026-05-30 來源: https://x.com/mvanhorn/status/2035857346602340637
Summary
A practitioner’s guide to an extreme Claude Code workflow: no IDE, voice input via Monologue, 4-6 parallel sessions in Ghostty, plan.md files as the atomic unit of work. The author has 70 plan files and 263 commits in 30 days, using the Compound Engineering plugin (/ce:plan + /ce:work), /last30days for pre-planning research, and a Mac Mini for remote sessions. The core insight is that the planning-to-execution ratio should be inverted: 80% planning (with Opus), 20% mechanical execution (by subagents/Codex).
極端 Claude Code 工作流實戰指南:無 IDE、語音輸入、4-6 個並行會話、plan.md 作為工作原子單元。核心洞察:規劃與執行比例應倒置——80% 規劃(Opus),20% 機械執行(子代理/Codex)。
Key Points
- /ce:plan spins up parallel research agents: one analyzes codebase, one searches docs/solutions/, others research external best practices simultaneously
- Plan.md is a persistent checkpoint: context lost? New session pointing at plan.md picks up exactly where it left off
- 3 essential settings: bypass permissions (defaultMode: bypassPermissions), Stop hook with sound notification (afplay Blow.aiff), Zed autosave at 500ms
- /last30days searches Reddit/X/YouTube/HN/Polymarket in parallel; 78 Reddit threads + 76 X posts analyzed before planning a library choice
- Mac Mini + Telegram integration: send /ce:plan from phone, plan is waiting in Zed when back at desk
- tmux on airplane: sessions run on Mac Mini, laptop is just a window — WiFi drops don’t kill work
- Combined Claude Max (200) plans: Claude for planning/orchestration, Codex for heavy implementation when Claude credits low
Insights
The “No IDE, just plan.md files and voice” answer to “what IDE do you use?” is a provocation that encapsulates a genuine architectural insight: IDEs are optimized for humans editing code, but agentic coding needs an artifact (the plan) that both human and agent can reference, update, and hand off. The sound notification for Stop hook + 4-6 parallel sessions is a practical solution to the context-switching problem — you don’t need to watch each session, you react when it finishes. The Mac Mini as always-on compute for remote Claude Code access is an underexplored pattern for power users.
Connections
Raw Excerpt
Traditional dev is 80% coding, 20% planning. This flips it. The thinking happens in the plan. The execution is mechanical.