Englishell – Plain english shell command executor, powered by ChatGPT
There are easy and there are hard unix shell commands to remember, nobody knows them all. Why not use ChatGPT to translate plain english instructions into executable shell commands. Here are a few examples how `englishell` CLI can be used: $ englishell kill the process that listens to port 8080 -> lsof -i :8080 | awk '{print $2}' | tail -n 1 | xargs kill -9 $ englishell print current git branch -> git branch --show-current $ englishell show the sizes of all folders in parent of the current directory -> du -sh ../* $ englishell how long the system has been running -> uptime $ englishell…
What it does
In the maker’s words, at launch
There are easy and there are hard unix shell commands to remember, nobody knows them all. Why not use ChatGPT to translate plain english instructions into executable shell commands. Here are a few examples how `englishell` CLI can be used: $ englishell kill the process that listens to port 8080 -> lsof -i :8080 | awk '{print $2}' | tail -n 1 | xargs kill -9 $ englishell print current git branch -> git branch --show-current $ englishell show the sizes of all folders in parent of the current directory -> du -sh ../* $ englishell how long the system has been running -> uptime $ englishell generate strong password -> openssl rand -base64 14
Does the same job
all alternatives →
- SBShellTalk brings deterministic text-to-bashApr 2026 · barrasso.me · ▲9
Hi HN! I built a CLI tool called ShellTalk for macOS, Linux, and web (WebAssembly) that maps English text to the corresponding Bash commands. ShellTalk is written in Swift and available under the Apache 2.0 license on GitHub. I was inspired a few weeks ago after reading the Meta-Harness paper and seeing a tool called Hunch that did something similar using the Apple Foundation model. I often forget flag names and orders, but I wanted something that worked consistently. The 3B AFM worked surprisingly well with Hunch, but it felt slow and sometimes slight changes in what I wrote would result in…


- UNUse Natural Language to Run Terminal Commands (Ghost in the Shell)2025 · github.com · ▲6
Hi HN, I just released a very simple AI Shell / CLI tool that lets you convert natural language directly into executable shell commands. Built with python to simplify terminal workflows and help you quickly run commands without memorizing syntax. It has two main usage modes: One-shot mode: Quickly execute commands using natural language. Example: ai "find all PNG files larger than 5MB" The AI responds with the appropriate command and asks if you want to execute it. Interactive chat mode: Start a terminal chat session with the AI (ai -i) to iteratively build commands or scripts. Some…

More dev tools this month
the category →



Open-source GTM skills for technical founders
Dev tools · 29d ago · gtmcofounder.com

OpenTrailPaper is open-source bike computer firmware for the LilyGO T5S3 4.7" E-Paper PRO. It supports offline maps, GPX routes, FIT recording and Bluetooth sensors.
Dev tools · 1d ago · opentrailpaper.com

Launched alongside, August 2023
the whole month →



Lottielab▲871Create and ship lottie animations to sites and apps faster
Dev tools · 2023 · lottielab.com
- LC
Outlines is a Python library that focuses on text generation with large language models. Brandon and I are not LLM experts and started the project a few months ago because we wanted to understand better how the generation process works. Our original background is probabilistic, relational and symbolic programming. Recently we came up with a fast way to generate text that matches a regex (https://blog.normalcomputing.ai/posts/2023-07-27-regex-guide...). The basic idea is simple: regular expressions have an equivalent Deterministic-Finite Automaton (DFA) representation. We…
AI · 2023 · github.com