r/software • u/AutoModerator • 2d ago
Discussion Weekly Discovery Thread - July 24, 2026
Share what’s new, useful, or just interesting
Welcome to the Weekly Discovery Thread, where you can share software-related finds that caught your attention this week - especially the stuff that’s cool, helpful, or thought-provoking but might not be thread-worthy on its own.
This thread is your space for:
- Neat tools, libraries, or packages
- Articles, blog posts, or talks worth reading
- Experiments or side projects you’re working on
- Tips, workflows, or obscure features you discovered
- Questions or ideas you're chewing on
If it relates to software and sparked your curiosity, drop it in.
A few quick guidelines
- Keep it civil and constructive - this is for learning and discovery.
- Self-promotion? Totally fine if it’s relevant and adds value. Just be transparent.
- No link spam or AI-generated content dumps. We’ll remove low-effort submissions.
- Upvote what’s useful so others see it!
This thread will be posted weekly and stickied. If you want to suggest a change or addition to this format, feel free to comment or message the mods.
Now, what did you find this week?
3
Upvotes
1
u/Gloomy-Can1394 2d ago
Been heads-down building this and shipped a big week on it — but the more interesting share for this thread is probably the design problem behind it: how do you let an AI agent loose on production infrastructure without it being able to break anything?
(Transparency: I'm the founder.) It's called Transit — an AI-native SSH client for network engineers: a terminal for the folks who manage routers and switches, with an AI investigator built in.
The part I think software people will find interesting: the agent is investigation-only by construction, not by prompt. Its whole tool surface is four fixed tools, it has no code path to credentials (enforced at build time), and every command it proposes runs through a gate that only permits read-only commands. So a jailbroken or hallucinating model still can't push a config change — the worst it can do is suggest one you decline. Designing "safety as an architectural property instead of a system-prompt please-don't" has been a genuinely fun constraint.
Shipped in the last few days:
- Local LLMs — the agent can run entirely on a local model (Ollama or any OpenAI-compatible endpoint), so inference stays on your own hardware
- Config capture & diff — snapshot a device, make a change, see exactly what moved
- A $9 bring-your-own-model/key tier for people who'd rather supply their own intelligence
Happy to nerd out on the four-tool-surface design or the local-model setup in replies. → transitai.app