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

推荐订阅源

L
LangChain Blog
J
Java Code Geeks
P
Proofpoint News Feed
Recent Announcements
Recent Announcements
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园_首页
Hugging Face - Blog
Hugging Face - Blog
MongoDB | Blog
MongoDB | Blog
人人都是产品经理
人人都是产品经理
博客园 - 【当耐特】
雷峰网
雷峰网
D
DataBreaches.Net
B
Blog RSS Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东
V
Visual Studio Blog
Apple Machine Learning Research
Apple Machine Learning Research
N
Netflix TechBlog - Medium
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Martin Fowler
Martin Fowler
有赞技术团队
有赞技术团队
Blog — PlanetScale
Blog — PlanetScale
Engineering at Meta
Engineering at Meta

Peter Steinberger

OpenClaw, OpenAI and the future | Peter Steinberger Shipping at Inference-Speed | Peter Steinberger The Signature Flicker | Peter Steinberger Just Talk To It - the no-bs Way of Agentic Engineering | Peter Steinberger Claude Code Anonymous | Peter Steinberger Live Coding Session: Building Arena | Peter Steinberger My Current AI Dev Workflow | Peter Steinberger Essential Reading for Agentic Engineers - August 2025 | Peter Steinberger Just One More Prompt | Peter Steinberger Poltergeist: The Ghost That Keeps Your Builds Fresh | Peter Steinberger Don't read this Startup Slop | Peter Steinberger Essential Reading for Agentic Engineers - July 2025 | Peter Steinberger Self-Hosting AI Models After Claude's Usage Limits | Peter Steinberger Logging Privacy Shenanigans | Peter Steinberger Making AppleScript Work in macOS CLI Tools: The Undocumented Parts | Peter Steinberger Peekaboo 2.0 – Free the CLI from its MCP shackles | Peter Steinberger Command your Claude Code Army, Reloaded | Peter Steinberger Essential Reading for Agentic Engineers | Peter Steinberger Slot Machines for Programmers: How Peter Builds Apps 20x Faster with AI | Peter Steinberger My AI Workflow for Understanding Any Codebase | Peter Steinberger stats.store: Privacy-First Sparkle Analytics | Peter Steinberger Showing Settings from macOS Menu Bar Items: A 5-Hour Journey | Peter Steinberger VibeTunnel: Turn Any Browser into Your Mac's Terminal | Peter Steinberger Vibe Meter 2.0: Calculating Claude Code Usage with Token Counting | Peter Steinberger llm.codes: Make Apple Docs AI-Readable | Peter Steinberger Automatic Observation Tracking in UIKit and AppKit: The Feature Apple Forgot to Mention | Peter Steinberger Peekaboo MCP – lightning-fast macOS screenshots for AI agents | Peter Steinberger Migrating 700+ Tests to Swift Testing: A Real-World Experience | Peter Steinberger Commanding Your Claude Code Army | Peter Steinberger Code Signing and Notarization: Sparkle and Tears | Peter Steinberger
VibeTunnel's first AI-anniversary | Peter Steinberger
Peter Steinberger · 2025-07-17 · via Peter Steinberger

It’s been one month since we released the first version of VibeTunnel - let’s call it VibeTunnel’s first anniversary!

VibeTunnel is an app that turns your web browser into a terminal for your Mac (or Linux), perfect for running agents like claude code or gemini from anywhere. Because these slot machines aren’t addictive enough already!

TL;DR – 2.8k commits, 147k LOC, Mac/Linux/npm releases, 1.0 coming late July. Agents + humans = 🚀

Growth & Velocity

Let’s start with some hard data. VibeTunnel has grown from 4,012 lines of code in b1 to 147,226 lines in b11 – that’s a 37x increase in just one month! Through 2,842 commits from 32 contributors, we’ve built something that might convince non-believers that large projects can indeed be built with agents.

ReleaseDateTotal LOCTestsMacWeb
beta.1Jun 174,012004,012
beta.3Jun 2349,1338,32414,26618,082
beta.6Jul 3106,26327,89020,30561,554
beta.10Jul 15144,02136,07934,46283,009
beta.11Jul 16147,22637,43034,95983,894

The pace has been intense: 436 commits in the explosive growth phase (beta.2 to beta.3) where we added Mac and iOS apps, averaging 126 commits per release. Test coverage improved dramatically, and we even went full circle through Rust, Go, to Node as server backends, with plans to bring Rust back. And aren’t languages really just implementation details, when you have agents?

Memorable Milestones

Terminal Title Management (b6)

My personal fav feature landed in b6: the vt title command. As a maniac who runs multiple Claudes in parallel, I needed a way to track what each agent is up to. This feature lets you dynamically update session names from within the terminal, and then vt updates the title of your terminal window.

The Node-pty Fork (b9)

We had to fork Microsoft’s node-pty. Using VibeTunnel randomly caused crashes in VS Code - which should be completely unrelated. After some gnarly debugging, I found a thread-safety issue and some totally unnecessary socket code. Forked it and things are better now, eliminating the random crashes that were frustrating early adopters. Eventually though that code will be burned and replaced with Rust.

Repository Discovery (b10)

Once the core features were stable, I could focus more on the Mac side. The new session picker automatically scans your project folder and shows your git repos. Small feature, but so convenient - saving developers 10-20 seconds per session start!

Key Lessons

Agents Need Railguards

In the beginning we’ve been vibing this project pretty hard and just pushed to main, full chaos mode. It worked quite well, but as the project grew, structure is needed. We started adding tests once we felt the pain of things breaking all the time, and there’s still work to do to increase test coverage. Tests are even more important with agents, since you can’t trust them. They’ll eventually break stuff and prompt that everything’s great and ready to ship.

Agents Need Thinking

I approach almost every new feature with a prompt that includes an issue, plenty of brabble from me in how I think that feature should be tackled, and then I add “ultrathink, make a plan first and give me at least 3 options”. Then either I pick one of the options or add more info to further refine the plan, before agents do anything. This is much more effective than just letting them run loose without a plan - as they’ll usually pick the simplest one, with the most technical debt.

Pathfinder Principle

I prefer opportunistic refactoring - fixing related issues while you’re in the code anyway. Consider this PR: I could have merged the bandaid fix, but then opted to not only fix the root issue, but completely overhaul how messages are sent in the unix socket.

Key lesson: Even “good first issues” can hide complexity. This PR fixed keyboard capture on macOS, but broke it elsewhere. The real fix took days of research across all platforms. Now we have “good first issues” that are actually good first issues, and a Discord to coordinate the vibing.

It’s Not Just Code

Agents help with code, but product management, support, and documentation still need human touch - people want to read my voice, not just my intent.

Thank You!

VibeTunnel wouldn’t be where it is today without our amazing contributors:

Core Team: Mario Zechner (291 commits) and Armin Ronacher (132 commits) who helped build the foundation and shaped the architecture.

Major Contributors: Manuel Maly (72), Helmut Januschka (55), and Jeff Hurray (36) for their significant contributions.

Community Heroes: Billy Irwin, Igor Tarasenko, David, Thomas Ricouard, Piotr, hewigovens, Clay Warren, Chris Reynolds, Madhava Jay, Michi Hoffmann, Raghav Sethi, Tao Xu, Devesh Shetty, Jan Remeš, Luis Nell, Luke, Marek Šuppa, Sandeep Aggarwal, Zhiqiang Zhou, and noppe - every contribution matters!

Our Robot Overlords: Claude, Cursor, and Devin - in all honesty tho, it’s 98% Claude 🤖.

Whether you fixed a typo, squashed a bug, or built entire features - thank you for vibing with us! 🚀

Looking Forward

We just shipped beta 11 and a standalone npm with Linux support and the bug list is slowing down. 1.0 ships end of July, followed by the iOS app and some wild ideas in the pipeline: Agent Mode, Apple Watch app, voice mode. The future of terminal access is bright!

Oh, and one more thing - we’re creating a VibeTunnel organization! As the project grows beyond its scrappy startup phase, we’ll be moving the repository to its own org. This will help us better manage the ecosystem of tools, plugins, and integrations that are starting to emerge around VibeTunnel.

Since agents can’t eat cake, I made them a different present: VibeTunnel is now on vt.sh! If you haven’t tried it yet, now’s the perfect time - download the Mac app and post a picture on Twitter of the weirdest place you’re vibin’!