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

推荐订阅源

L
LINUX DO - 热门话题
Stack Overflow Blog
Stack Overflow Blog
B
Blog
WordPress大学
WordPress大学
Project Zero
Project Zero
P
Palo Alto Networks Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - 司徒正美
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
小众软件
小众软件
T
Tailwind CSS Blog
Forbes - Security
Forbes - Security
F
Full Disclosure
SecWiki News
SecWiki News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hacker News: Ask HN
Hacker News: Ask HN
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
F
Fortinet All Blogs
Cisco Talos Blog
Cisco Talos Blog
G
Google Developers Blog
J
Java Code Geeks
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Recorded Future
Recorded Future
O
OpenAI News
Spread Privacy
Spread Privacy
MongoDB | Blog
MongoDB | Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
C
Cybersecurity and Infrastructure Security Agency CISA
S
Securelist
V
Vulnerabilities – Threatpost
Y
Y Combinator Blog
IT之家
IT之家
U
Unit 42
腾讯CDC
S
Security Affairs
C
Cisco Blogs
Schneier on Security
Schneier on Security
The Last Watchdog
The Last Watchdog
B
Blog RSS Feed
宝玉的分享
宝玉的分享
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Security @ Cisco Blogs
Cyberwarzone
Cyberwarzone
T
The Blog of Author Tim Ferriss

Jordan Fulghum

I built a private ChatGPT for my family OpenAI has a branding problem Post-primary-care On Mystery I Used Claude Code + Autoresearch to Trace My Family History Back to Jamestown POST-SOFTWARE (March 2026) Your Product Is No Longer the Center of Gravity Remote Work, AI, and the Disappearing Engineer Mastery Fun vs Frontier Fun 2026 is the Year of Self-hosting Cassette — The Simple Computer in the Cloud VocalMaze - A 60-Second Screen for Cognitive Decline Album Cards: Rebuilding the Joy of Music Discovery for My 10-Year-Old Vibecoding Took Away the Fun
I Prototyped an IDE for How We Actually Code Now
Jordan Fulghum · 2025-06-08 · via Jordan Fulghum

by Jordan Fulghum, June 2025

Like most devs, I've spent the last six months adjusting to this new AI-assisted coding world. Very quickly vibecoding has become my default way of working, but I find that existing tools fall short during this transition.

Current IDEs feel compromised:

  • Cursor bolts AI onto VS Code's legacy architecture, cramming its primary interaction into a third of the window.
  • Claude Code gets closer to the conversational model but strips away too much context so it feels like coding through a keyhole.
  • Codex optimizes for pull requests, neglecting immediate, iterative cycles.
  • Replit simplifies technical details but isolates its LLM as another abstraction rather than integrating it natively into the development process.

What I think I've realized is that we've approached this backward. Instead of forcing conversational interactions onto traditional IDE architectures, we need tools built primarily around conversation. We're currently in the "horseless carriage" phase of software development.

The core IDE

The core IDE, showing a demo SaaS app ("PropertySync") in the preview pane

A Task-Centric, Conversational IDE

I prototyped a native Mac IDE from scratch, centered around the reality of modern application development—conversations with an LLM as the primary interface. The core insight is that coding today isn't about managing files and directories but about managing context, intent, and tasks. You're constantly navigating between questions like "show me this," "change that," and "make it work."

A new prompt kicks off the task workflow: automatically tracked via a transparent implementation plan.

The atomic unit of work isn't a file or a project—it's a task. Think feature branches, but richer. Here's the core loop:

  1. Describe what you want in natural language.
  2. The agent creates a markdown-based implementation plan, which evolves dynamically.
  3. Automated tests are created and updated as changes happen.
  4. Test suites automatically run before marking a task as ready.
  5. Human review and approval trigger deployment to production, linking tasks directly to application versions.

Multiple tasks run concurrently, each managing their own context and state. Reverting or undoing a deployment is as simple as a single click.

Solving the Blank Page Problem

Vibecoding increases my ambition level, and I consequently am creating more new projects/repositories than ever. But LLMs haven't yet made it easier to start building new apps; picking a stack, running the right commands, getting the database schema and system architecture framed out before writing views, etc.

If there's not a project open, starter templates are outcome-oriented and get you going

Here, getting started isn't staring at a blank file. Instead, you choose outcome-oriented templates (SaaS app, ecommerce store, REST API, blog platform) or simply describe your goal in plain English. The IDE recognizes your intent, suggests appropriate tech stacks, sets up scaffolding automatically, and creates implementation plan markdown files for tracking progress.

Preview > Files

The dominant element in the IDE is a visual preview of your application, instead of a file editor. There's no separation between "writing code," "conversing with AI," and "viewing outcomes." Context naturally flows among these interactions, and literally seeing the changes in real-time creates a super fast iteration cycle.

Built-in Data Exploration

The IDE includes a native database viewer and admin panel (I always loved this about e.g. Django). You can explore your data schema and visualize records. A built-in chatbot assistant provides insights directly from your data context, like having an analyst embedded in your environment.

The data explorer is a built-in view into the database with a chatbot assistant

A native database view, with a chatbot that has your data as context, because why not?

To Production

I suspect many vibecoders struggle with traditional environment management (the whole 'hey guys look at this new app i built: http://localhost:3000' meme). Tasks can be promoted to production, or reverted with one click. I also built an intuitive local-to-production toggle—think Stripe's test mode switch but for your app. Flip the switch to seamlessly view live data, users, and everything else, then toggle back safely to local development.

Production view shows 'tasks' as 'app versions'.

Instead of the conventional write-compile-debug cycle, this approach fosters fluid collaboration, like sketching and refining ideas in real-time. Your IDE becomes a genuine partner rather than an advanced typewriter. It's more like managing a team of engineers working in parallel.

Application Development for Everyone

When building this, I couldn't help but fondly recall tools like Coda, where every part—from CSS to HTML to preview—felt unified. Similarly, Canva democratized desktop publishing, turning previously complex tasks into accessible, intuitive processes with the right level of abstractions that lowered the barrier to entry.

Application development is undergoing similar democratization. Our tools should follow suit and embrace the conversational, iterative, and collaborative ways we code today.


This IDE is still very much a prototype—rough around the edges and full of assumptions—but building it helped clarify what I actually want from my tools.

If you have thoughts or want to jam on this idea, reach out! I'm at jordan@fulghum.io.