惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
Jina AI
Jina AI
C
Check Point Blog
V
V2EX
H
Help Net Security
Microsoft Azure Blog
Microsoft Azure Blog
P
Proofpoint News Feed
A
About on SuperTechFans
D
DataBreaches.Net
腾讯CDC
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
IT之家
IT之家
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
T
The Blog of Author Tim Ferriss
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
云风的 BLOG
云风的 BLOG
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
博客园_首页
T
Tailwind CSS Blog
M
MIT News - Artificial intelligence
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

herrkaefer

"Anything to Markdown" "Built anocus: anonymous commenting for static sites" "日记与小说 -- AI 续写小说欣赏" "Any-podcast: from newsletters to a podcast" "Made MicPipe: a simple voice input tool using ChatGPT dictation" "关于 Tools 和 Skills 的一点感想" "Realtime monitoring of ComEd hourly price" "Introducing SwiftEdgeTTS" "Thoughts on the philosophy of building AI-native apps" "jelly鼻屎" "等饭的人" "Use home assistant to motivate my kid to brush teeth" "Migrated Blog to Hugo and Cloudflare Pages" "Easy Aspen monitoring for Chicago parents" "Introducing HabitBuilder: A simple Telegram bot for habit tracking" "鼓捣" "Open folder or file with Sublime Text from Finder toolbar" "Python dev workflow on macOS" "Create new text file from Finder toolbar" "Uno reinvented for 3-year-old kids" "Uno变身儿童数字游戏" "自动转发Twitter到微博" "Handle annoying operations of objects in Realm DB" "Move Jekyll blog to Ubuntu VPS" "Introducing Mole" "Note taking without note taking app" "Deploy Python web application on Ubuntu server" "Setup Shadowsocks / VPN on Ubuntu Server" "Linode Notes - Basic Setup" "CLASS Style Adapted for Embedded Systems"
"Vibe planning \u003e vibe coding"
"herrkaefer" · 2026-03-01 · via herrkaefer

I recently tried using Minimax (M2.5) to build a few features. I found that for tasks that aren’t too complex, it can do the job very well, as long as you describe the task clearly and let it test after implementation.

For example, I asked it to add an “insert image by drag-and-drop or paste” feature to my Markdown tool Mai. After some analysis, it proposed a plan and implemented it. It didn’t handle the screenshot input correctly, but made it work after a few iterations.

However, I didn’t fully trust it (maybe due to I was not familiar with it yet), so I asked Claude Code to review the implementation. Claude was straightforward and gave me five or six criticisms. They seemed solid. Most of them weren’t about the feature itself, but about the overall app architecture and macOS best practices.

So I asked Claude Code to fix them. Here’s the interesting part: Claude code broke the screenshot paste function that used to work. After a few more iterations, Claude fixed that of course.

This whole experience clarified something for me: for straightforward features, plan execution or building isn’t the main differentiator anymore. Claude Code or Codex might not be dramatically ahead for small to medium tasks if they are precisely described. Other models such as minimax can often get to a working version too.

What feels truly different is planning.

Claude Code and Codex seem much better at placing a request in a larger context, which changes the trade-offs they pick, and the plan they propose. This planning power is especially crucial for complex tasks, where vibe planning is where the real productivity gain is.

But even with Claude code or codex, human out of the loop is still not there based on my practices. You still need a human in the loop to control complexity and handle details efficiently.

Every developer has limits. None of us can be an expert in everything, so we naturally frame problems and search for solutions inside the space we already know.

AI has seen far more patterns and possibilities. It can explore a much larger solution space and often comes back with better options.

Our job is to ask for directions and suggestions, learn quickly during the planning stage (with AI’s help), and for now keep the final decisions in human hands.