@sudoingX: anyone thinking about, learning, or already working with agentic systems, you should know this. the first few steps of …
Summary
A Twitter thread outlines five foundational tools for building agentic systems: Tailscale for mesh networking, Termius for SSH access, tmux for persistent sessions, a private git repo for memory, and scripting everything from day one. The post emphasizes that these basics matter more than any specific model or framework.
View Cached Full Text
Cached at: 05/17/26, 10:24 PM
anyone thinking about, learning, or already working with agentic systems, you should know this.
the first few steps of your setup matter more than any model or framework you pick later. get them right and you never lose your flow.
the foundation nobody posts about:
- tailscale. a private mesh network across every machine you own. laptop, desktop, rented node, all on one secure tailnet, reachable from anywhere. nothing else works well until this does.
- termius, over that tailnet. one SSH client that reaches every node, phone included. you are never away from your stack.
- tmux. persistent sessions. disconnect, close the laptop, come back, every session exactly where you left it. agentic work runs long, your terminal has to survive that.
- a private git repo. the one i am most glad i found. it is the memory layer across all my agents, they pull, they work, they merge back, the codebase stays alive between sessions. context that would die in a chat window lives in the repo instead.
- script everything from day one. ssh aliases for every node, setup scripts, the boring boilerplate automated. if you will do a thing more than twice, it is a script.
everything past these five is decorative. know these cold.
and the habit that ties it together: ask the AI itself. for the config, for the error, for any of it, let the agent do the lifting, then double check what it hands you.
lock the five, build the habit, and you make it. skip it, anon, and you ngmi.
this is the setup i like to see. hermes agents in a gke cluster with self hosted models behind them, that’s the cluster scale version of the same idea. curious, what pushed you to GKE over a single box, orchestration, or scaling the agent count?
yeah, this is the sovereignty upgrade. headscale and forgejo are the move once you want to own the control plane too. and you’re right on github, it’s microsoft, getting off it is the right call. good comment.
good add. reptyr is the rescue tool, for when you started a process bare and need to pull it into a tmux session after the fact. start in tmux and you never reach for it, but the day you forget, it saves you.
good question. short version, your agents need to reach every machine you run, and tailscale turns them into one private network reachable from anywhere. dropping the full breakdown as a QT now.
valid, but you don’t run it flat. tailscale ACLs let you lock down what each box can reach, so one breach can’t open everything. and a tailnet’s still way less exposed than port forwarding ssh to the open internet. ACLs are the thing to read up on.
glad it landed.
Similar Articles
@DeRonin_: anybody who uses or learns agentic systems, SHOULD READ THIS the install order I run before any new agentic project: 1.…
A thread sharing a structured install order for agentic projects: using direnv with a secrets manager for credential safety, litellm or portkey as a model proxy for cost and fallback management, uv+git commits on passing evals for reproducibility, and mitmproxy for full observability of LLM calls. Highlights common failure modes and security gaps.
@paulmillr: https://x.com/paulmillr/status/2075335421920239651
This thread describes a secure and reliable development setup for agentic AI using a dedicated server accessed via SSH with tmux for session persistence, a terminal emulator with native tmux integration, and a VPN for secure access. The author advocates for this over local agent execution due to security and reliability concerns.
@jamonholmgren: I'm just going to dump my whole agentic setup out here, because I see too many people missing giant chunks of this and …
Jamon Holmgren shares his comprehensive agentic development setup, including workflow docs, self-healing docs, cross-agent review, automated testing, and autonomous agent loops.
@yoheinakajima: great article, mostly focused on coding agents but applies elsewhere impo. aligns w a lot of my prior thoughts: - agent…
A tweet highlighting key principles for building agent systems, emphasizing scaffolding, memory, and reusable tools, based on an article by Yohei Nakajima.
@heyshrutimishra: Someone quietly open-sourced an agentic OS. Skills, memory, crons, bring your own model. It's called PilotDeck. Here's …
PilotDeck, an open-source agentic OS with skills, memory, cron jobs, and support for bring your own model, has been quietly released.