Get live statistics and analysis of Mitchell Hashimoto's profile on X / Twitter

Creator of Ghostty. đŸ‘» Prev founded @HashiCorp, created Vagrant, Terraform, Vault, and others.

146 following210k followers

The Innovator

Mitchell Hashimoto is a builder of developer-facing infrastructure tools and the founder behind HashiCorp, known for Terraform, Vagrant, and Vault. Now building Ghostty, a new terminal, he blends deep engineering craftsmanship with product vision and an occasional pilot's log. His feed mixes technical awe, candid takes, and high-engagement engineering insights.

Impressions
0
$0
Likes
0
0%
Retweets
0
0%
Replies
0
0%
Bookmarks
0
0%

You built the tools that tame the cloud and own a jet, but insist the best engineers vanish from the internet, congrats, you’re single-handedly creating stealth-mode unicorns while commuting above them.

Founding HashiCorp and shipping industry-defining open-source projects (Terraform, Vagrant, Vault) that changed how infrastructure is provisioned and secured worldwide.

To make complex infrastructure simple, reliable, and extensible for engineers everywhere, by inventing tools and patterns that let teams automate, collaborate, and scale with confidence. He pursues practical elegance: ship durable systems that others can build on.

Believes in engineering craftsmanship, open-source ecosystems, composable systems (plugins and APIs over monoliths), and empowering quiet, focused talent. Values autonomy, pragmatic engineering over hype, and writing software that respects operators and developers equally.

Exceptional product instinct for developer tools, deep technical credibility, ability to design extensible plugin systems, and a magnetic thought leadership voice that drives large community engagement.

Can come off contrarian or blunt (great for sparking debate, risky for diplomacy), and favors substance over self-promotion which sometimes limits broader mainstream storytelling of wins.

To grow your audience on X: share short dev-ops stories and bite-sized design threads that unpack design trade-offs (1, 6 tweet threads), post short demo videos of Ghostty features, pin a clear mission thread, engage in high-signal replies to community questions, host periodic AMAs or Spaces about architecture and plugins, and amplify community-created projects that use your tools to turn users into advocates.

Fun fact: He not only founded HashiCorp and created staples like Terraform and Vault, he's also a Vision Jet pilot, so he literally builds clouds and flies above them.

Top tweets of Mitchell Hashimoto

I strongly believe there are entire companies right now under heavy AI psychosis and its impossible to have rational conversations about it with them. I can't name any specific people because they include personal friends I deeply respect, but I worry about how this plays out. I lived through the great MTBF vs MTTR (mean-time-between-failure vs. mean-time-to-recovery) reckoning of infrastructure during the transition to cloud and cloud automation. All those arguments are rearing their ugly heads again but now its... the whole software development industry (maybe the whole world, really). It's frightening, because the psychosis folks operate under an almost absolute "MTTR is all you need" mentality: "its fine to ship bugs because the agents will fix them so quickly and at a scale humans can't do!" We learned in infrastructure that MTTR is great but you can't yeet resilient systems entirely. The main issue is I don't even know how to bring this up to people I know personally, because bringing this topic up leads to immediately dismissals like "no no, it has full test coverage" or "bug reports are going down" or something, which just don't paint the whole picture. We already learned this lesson once in infrastructure: you can automate yourself into a very resilient catastrophe machine. Systems can appear healthy by local metrics while globally becoming incomprehensible. Bug reports can go down while latent risk explodes. Test coverage can rise while semantic understanding falls. Changes happens so fast that nobody notices the underlying architecture decaying. I worry.

1M

ghostty.org đŸ‘»

1M

I've got an agent in a loop optimizing a renderer with the goal to minimize frame times (and tests to measure). It got times down from 88ms to 2ms and allocations down from ~150K to 500. Sounds good, right? Wrong. This is exactly why agent psychosis is a big fucking problem. As an experiment, I rewrote the Ghostty core render state in Go, with access to identically laid out data structures as Ghostty and the exact same validation tests. I made a purposely naive renderer (simple, correct, but slow). 88ms per frame with 150,000 allocations (horrendous, lol)! I then kickstarted a Ralph loop to bring the frame times down. I told it it can't modify input data structures or the public API or tests (they're correct), but it can do anything else it wants. It got to work. It has worked for about 4 hours. I've spent around $350 on this experiment so far. The results? 88ms => 1.5ms 150K allocs => ~500 allocs Incredible right? Nope. My hand-written renderer I ported has frame times (same benchmark) of ~20us (0.020ms) and 0 allocations in the update path. This is the problem with psychosis and lacking systems understanding. If you don't understand the system, you're going to accept that this is an incredible result. If you understand the system, you'll see better solutions immediately and can do roughly 75x better on throughput. The people who blindly trust agent output are in the former camp. They're sheeple, overdrinking from a fountain of mediocrity. Standard disclaimer: I use AI all the time. I like AI. The point I'm making is to not blindly accept results. Think. Analyze. Learn.

793k

Most engaged tweets of Mitchell Hashimoto

I strongly believe there are entire companies right now under heavy AI psychosis and its impossible to have rational conversations about it with them. I can't name any specific people because they include personal friends I deeply respect, but I worry about how this plays out. I lived through the great MTBF vs MTTR (mean-time-between-failure vs. mean-time-to-recovery) reckoning of infrastructure during the transition to cloud and cloud automation. All those arguments are rearing their ugly heads again but now its... the whole software development industry (maybe the whole world, really). It's frightening, because the psychosis folks operate under an almost absolute "MTTR is all you need" mentality: "its fine to ship bugs because the agents will fix them so quickly and at a scale humans can't do!" We learned in infrastructure that MTTR is great but you can't yeet resilient systems entirely. The main issue is I don't even know how to bring this up to people I know personally, because bringing this topic up leads to immediately dismissals like "no no, it has full test coverage" or "bug reports are going down" or something, which just don't paint the whole picture. We already learned this lesson once in infrastructure: you can automate yourself into a very resilient catastrophe machine. Systems can appear healthy by local metrics while globally becoming incomprehensible. Bug reports can go down while latent risk explodes. Test coverage can rise while semantic understanding falls. Changes happens so fast that nobody notices the underlying architecture decaying. I worry.

1M

ghostty.org đŸ‘»

1M

I've got an agent in a loop optimizing a renderer with the goal to minimize frame times (and tests to measure). It got times down from 88ms to 2ms and allocations down from ~150K to 500. Sounds good, right? Wrong. This is exactly why agent psychosis is a big fucking problem. As an experiment, I rewrote the Ghostty core render state in Go, with access to identically laid out data structures as Ghostty and the exact same validation tests. I made a purposely naive renderer (simple, correct, but slow). 88ms per frame with 150,000 allocations (horrendous, lol)! I then kickstarted a Ralph loop to bring the frame times down. I told it it can't modify input data structures or the public API or tests (they're correct), but it can do anything else it wants. It got to work. It has worked for about 4 hours. I've spent around $350 on this experiment so far. The results? 88ms => 1.5ms 150K allocs => ~500 allocs Incredible right? Nope. My hand-written renderer I ported has frame times (same benchmark) of ~20us (0.020ms) and 0 allocations in the update path. This is the problem with psychosis and lacking systems understanding. If you don't understand the system, you're going to accept that this is an incredible result. If you understand the system, you'll see better solutions immediately and can do roughly 75x better on throughput. The people who blindly trust agent output are in the former camp. They're sheeple, overdrinking from a fountain of mediocrity. Standard disclaimer: I use AI all the time. I like AI. The point I'm making is to not blindly accept results. Think. Analyze. Learn.

793k

People with Innovator archetype

The Innovator
@virattt

Founder @findatasets, market infra for your agents.

89 following49k followers
The Innovator
@sylvechv

🍊 speedran the blockchain endgame @hyli_org with @wraitii. be kind

3k following6k followers
The Innovator
@su_dreams

Founder & Somatic IFS coach exploring AI + self-inquiry + distraction. Experimenting in public with myflowcus.com and letsflowork.com

1k following4k followers
The Innovator
@riabhutoria

stablecoins @stripe

2k following15k followers
The Innovator
@oguzyagizkara

Co-Founder & Designer @LueStudio

1k following61k followers
The Innovator
@nateherk

Founder & CEO @ AI Automation Society | 750k on YT

33 following21k followers
The Innovator
@nake13

A real cyborg vibe coder | Study @ChainFeedsxyz | ex Research @ChainNewscom, @MyToken, @IBM | Holding and accumulating BTC since 2011.

3k following45k followers
The Innovator
@mckaywrigley

I build & teach AI stuff. Founder @TakeoffAI + @AgentShare.

374 following227k followers
The Innovator
@mamo

Your personal finance companion, here to help grow your money. Reach out if you need help: help.mamo.bot

47 following15k followers
The Innovator
@lm_zheng

Inference @meta | Prev: Engineer @xAI, Ph.D. @UCBerkeley, Co-founder @lmsysorg

665 following16k followers
The Innovator
@linear

The product development system for teams and agents.

49 following106k followers
The Innovator
@kieranklaassen

building @coracomputer | EIR @every | compound engineering | agent-ophile | composer | maker | baker

1k following17k followers

Explore Related Archetypes

If you enjoy the innovator profiles, you might also like these personality types:

Ready to grow on 𝕏?

Join 9,000+ creators who are posting smarter, engaging better, and growing faster with SuperX.