Alternatives
Products that do what Termitty – Open Source Terminal Automation Framework (Selenium for SSH) does
Hey HN! I built Termitty because I was tired of the hacky solutions I kept writing for SSH automation. While building my workflow automation SaaS, I had this seemingly simple requirement: workflows needed to execute tasks on remote servers, not just in browsers. Selenium made the browser part elegant - you could wait for elements, handle dynamic content, maintain session state. But for SSH? I was stuck in the stone age. I ended up writing this monster of a custom driver that: - Maintained persistent SSH connections in a pool - Kept track of working directories between commands - Tried to…
- 1

- 2HS
Hi everyone, I'm working for a startup called BugFree Software and would love to hear your feedback on a new product we are launching today. Helium is a library that wraps around Selenium to simplify web automation. It does away with many of the technicalities involved with web scripting. For example: Here is a Selenium script. Can you guess what it does? >>> ff = Firefox() ... >>> text_area = ff.find_element_by_id("u_0_1q") >>> text_area.send_keys("Hello World!") >>> button = ff.find_element_by_class_name("_42g-") >>> button.click() Here is the same script rewritten using Helium: >>>…
2013 · heliumhq.com
- 3TA
Termix is a modern SSH client and terminal developed by a European team of cybersecurity experts. It offers an unrivaled SSH and SFTP experience that enhances your productivity without compromising your privacy. With zero ads and a strict no-data-collection policy, Termix uses the most secure open-source libraries to keep your connections safe. Let us know what you think! More information about its key features: Ultimate SSH & SFTP Client: Enjoy seamless SSH and SFTP support right out of the box for a full terminal experience on any Apple device. Advanced File Manager & Code Editor: Inspired…
2025 · apps.apple.com
- 4HL
2020 · github.com
- 5

- 6
- 7

- 8

- 9

- 10SA
2015 · github.com
- 11TC
Agents can run non-interactive commands, but they often fail once a workflow needs a real terminal (SSH sessions, installers, debuggers, REPLs, TUIs). I built term-cli so an agent can drive an interactive terminal session (keystrokes in, output out, wait for prompts). And it comes with agent skill for easy integration. It supports in-band file transfer: the agent can move files through the terminal stream itself (same channel as the interactive session), which is useful when the agent doesn’t have scp/sftp, shared volumes, or direct filesystem access across boundaries. Recent example:…
Mar 2026 · github.com
- 12IC
In my last project, I was struggling to create and monitor cron jobs. So, instead of creating hundreds of standalone scrips and executing them with cron, I decided to turn those scripts into multiple endpoints. Next, I created a single service that I could schedule HTTP requests to those endpoints and monitor its execution. No more scripts, now everything is endpoints that I can run manually at any time I turned this scheduler service into a Micro-SaaS so you don't have to build it yourself: beew.io I know you can Schedule HTTP requests with Zapier but come on... I will not pay 50 bucks for…
2021
- 13TA
I do a surprising amount of dev from my phone now: SSH into a box, attach to tmux, and drive couple of coding agents here and there. Termux gets me pretty far on Android, and I still love it for its simplicity. But once I had a few tmux sessions across a couple of hosts, I wanted something that reduced keystrokes and felt friendlier for driving AI agents, especially things like sending them images. On iOS, I couldn't find something that gave me a similar experience to Termux. So I built TermRover: a native iOS/Android terminal built around tmux sessions and windows, with shortcuts for…
Jun 2026 · termrover.sh
- 14SL
2019 · fleetapp.cc
- 15HC
This is a model I’ve been thinking about lately. It demonstrates a pattern that I’m wondering could exist, where terminal applications, BBS-style shared user boards, and other expressions of creativity and sharing are created with web technologies but rendered into the terminal and accessed over SSH. I like that this brings back some kind of old days of the internet feeling and uses web technologies but sidesteps the public World Wide Web, even though it’s still on the internet. You can try it out too right now, and I’m thinking about making the self-hosting specialized applications part a…
Jul 2026 · duetbrowser.com
- 16DO
Coding agents spend a lot of time in the shell. When exploring a codebase, they usually reach for the same handful of tools: grep, find, ls, cat. We built a public SSH server that hosts Supabase docs as markdown files so that agents can explore them the same way they explore code: ssh supabase.sh grep -rl 'RLS' docs ssh supabase.sh cat docs/guides/database/postgres/row-level-security.md | head -10 Under the hood commands run inside Vercel's just-bash [1] library - an emulated bash shell sandboxed within the JS runtime. It uses a VFS where the docs are mounted as markdown…
Apr 2026 · github.com
- 17IB
As a software engineer, my reflex has always been to script everything I can. Scripting is easy, but everything around it is tricky: scripts have to run somewhere, they need access to credentials, they need to be monitored. None of it is simple. No-code automation platforms such as Zapier or IFTTT are too restrictive for technical tasks; CI/CD platforms make it easy to script tasks related to a repository, but are limited when trying to do anything else. I wanted the low level control you have when writing scripts while retaining the comfort of a platform managing execution for me. So I…
2022 · exograd.com
- 18SB
Hey all. I built ShellDash, an interactive server admin dashboard with shell scripting and an appealing globe UI. https://shelldash.com The goal is to provide a global monitoring view of your servers, with shell script access, in a way that feels natural and productive, plus a minimal and appealing UI/UX. The technology is fairly interesting. This being a browser app, I built a Go WASM SSH client running in the browser, proxied through my server WebSocket endpoints. This means I can provide you a Web UI to access your servers via SSH, without ever needing to see your…
Nov 2025 · shelldash.com
- 19RW
Hey Hackernews! My names Olly (a Designer from the UK). I’ve been a long time lurker on Hackernews but now I finally have something to share with the community. Along with my friend Oliver (Developer, Sweden/Japan) we have been working on Remotewise.io. It’s a new resource and learning platform dedicated to remote work. We’ve both been working remotely for most of our careers. Over this time remote work has been gaining huge momentum as a viable and desirable way to work and we believe it’s the future. We’ve been working on this during our evenings and weekends in between our full-time…
2019
- 20TA
Hi everyone! I built this because I wanted a little bit more organization around my Claude sessions, worktrees and plans while staying in the terminal and not relying on another SaaS tool. Since it's a command line tool, the added bonus is that Claude can use `td` directly. The td calendar was just a fun add-on but the Claude session stats have been pretty interesting! Let me know what you think!
Apr 2026 · github.com
- 21TB
2019 · github.com
- 22

- 23JU
Author here. Got tired of checking Upwork, NoFluffJobs, eFinancialCareers, LinkedIn and HN threads separately, so I built a CLI that scrapes them into a local SQLite DB and lets me browse everything in one web UI with filters and semantic search. Details: - Scraping via real browser over CDP (your own logged-in session, no API keys) - Embeddings run locally (nomic-embed-text via fastembed), stored in Lance - Rust backend, SolidJS frontend embedded in binary, single static executable Works for my use case (Europe-based contractor). It's my first rust project, decided to do local CLI, it's…
Jul 2026 · github.com
- 24CL
Hey HN, this is a side-project I've been working on for my senior year independent work in CS. Would appreciate any comments or feedback. www.aperator.com Thanks!
2012
Ranked by how close each launch is in meaning, then by votes. Refine with a description →