EveryDev.ai
Subscribe
Home
Tools

3,750+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. HumanSH
    HumanSH icon

    HumanSH

    Command Line Assistants
    Featured

    HumanSH is an open-source CLI tool that translates plain English into reviewable shell commands directly in your terminal, without switching apps or auto-executing anything.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Free and open source under MIT license. Bring your own supported AI provider subscription.

    Engagement

    Available On

    macOS
    Linux
    API
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Command Line AssistantsAI Coding AssistantsTerminal & Session Management

    Alternatives

    NotchywallfacerSessionCast
    Developer
    agenticlab-aiagenticlab-ai builds open-source developer tools that bring…

    Listed Aug 2026

    About HumanSH

    HumanSH is a free, MIT-licensed command-line tool built by agenticlab-ai that lets you describe what you want to do in plain English at your shell prompt and receive a real, reviewable shell command in return. It integrates at the ZLE/Readline layer of Zsh and Bash, so it works inside your existing terminal without a wrapper shell, REPL, or separate app. The project is open source, hosted on GitHub, and reached its v0.1.4 release in August 2026.

    What It Is

    HumanSH is a shell-native AI translation layer for developers who forget exact command syntax but don't want to leave their terminal to look it up. Instead of switching to a chatbot tab, rebuilding context, copying a command, and pasting it back, you type a natural-language description at the prompt and HumanSH inserts the generated command into your editable command line for review. Nothing runs until you press Enter yourself. The tool is written in Go and targets macOS and Linux on arm64 and amd64.

    How the Review-First Workflow Works

    The core interaction is a deliberate two-Enter flow:

    • Describe: Type what you want in plain English, e.g. show me which process is listening on port 3000
    • Review: HumanSH inserts the generated command (lsof -nP -iTCP:3000 -sTCP:LISTEN) into your editable prompt — nothing has run yet
    • Run: Press Enter when the command looks right, or edit or cancel it

    Commands with destructive patterns require a second, deliberate key sequence (Ctrl-X Enter) rather than an ordinary Enter, adding a risk gate for higher-stakes operations. Zsh gets a "Smart Enter" mode that classifies each line automatically; Bash uses an explicit Ctrl-G shortcut for translation because Readline cannot safely make Enter conditionally replace the buffer.

    Local Classification Before Any Provider Call

    HumanSH classifies intent locally before making any provider request. Every line gets one of three outcomes: literal (runs normally, no provider call), natural_language (translated and inserted for review), or ambiguous (left untouched, no provider call). The classifier is scoring-based and inspectable via humansh classify, and it uses the resolved executable's own --help output to understand subcommands and options — there is no per-command catalog baked into the binary. This means git status runs immediately without consuming any model quota, while git is failing please authenticate is correctly left ambiguous.

    Provider Model and Privacy Design

    HumanSH connects to AI providers the user already has access to rather than requiring a new paid API:

    • ChatGPT subscription via Codex CLI
    • Claude subscription via Claude Code CLI
    • Cursor subscription via Cursor CLI
    • OpenRouter metered API as an explicit, opt-in fourth path — never a silent fallback

    Each translation runs in an isolated, empty temporary directory with a minimal environment. What leaves the machine is limited to: the English request, shell type, OS, architecture, a privacy-normalized directory label, and a fixed list of detected tools. Shell history, environment variables, file contents, credentials, and usernames are never sent.

    Architecture and Setup Path

    HumanSH is distributed as a single Go binary installed via a one-line curl script that verifies a SHA-256 checksum before writing to ~/.local/bin — no sudo required. A guided humansh setup command detects every supported shell, shows the exact startup-file patches it will apply, and writes nothing until the user confirms. Configuration lives under $XDG_CONFIG_HOME/humansh/; secrets are stored in the OS keychain and never written to config.toml. Diagnostics are available via humansh doctor, and humansh uninstall --purge cleanly removes all configuration and credentials after explicit confirmation.

    Update: v0.1.4

    The latest release is v0.1.4, published on August 26, 2026. The repository was created on August 20, 2026, making this a very early-stage project with active development. The GitHub repository shows 5 stars and 5 open issues as of late August 2026, with the primary language being Go and the license being MIT.

    HumanSH - 1

    Community Discussions

    Be the first to start a conversation about HumanSH

    Share your experience with HumanSH, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Free and open source under MIT license. Bring your own supported AI provider subscription.

    • Plain English to shell command translation
    • Review-before-execute workflow
    • Local intent classification
    • Supports Codex, Claude, Cursor, and OpenRouter providers
    • No telemetry or analytics

    Capabilities

    Key Features

    • Plain English to shell command translation
    • Review-before-execute workflow
    • Local intent classification (no provider call for real commands)
    • Smart Enter for Zsh (auto-classify on Enter)
    • Explicit Ctrl-G force-translation for Bash
    • Risk-gated confirmation for destructive commands
    • Supports ChatGPT (Codex), Claude, Cursor, and OpenRouter providers
    • No telemetry or analytics
    • No shell history, env vars, or file contents sent
    • Isolated empty temp directory for each translation
    • OS keychain credential storage
    • Customizable key bindings
    • humansh doctor health check and repair
    • Custom classifier training for project-specific commands
    • SHA-256 verified binary install, no sudo required

    Integrations

    Codex CLI (ChatGPT)
    Claude Code CLI
    Cursor CLI
    OpenRouter API
    Zsh (ZLE layer)
    Bash 4.3+ (Readline layer)
    macOS Keychain
    Linux secret store
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate HumanSH and help others make informed decisions.

    Developer

    agenticlab-ai

    agenticlab-ai builds open-source developer tools that bring AI capabilities directly into existing workflows without requiring new accounts, services, or context switches. The organization's flagship project, HumanSH, integrates AI-powered shell command translation at the ZLE/Readline layer of Zsh and Bash. The team prioritizes privacy-by-design, review-before-execute safety, and minimal data footprint in all tooling.

    Read more about agenticlab-ai
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Notchy icon

    Notchy

    A macOS menu bar app that puts Claude Code right in your MacBook's notch, with a floating terminal panel and automatic Xcode project detection.

    wallfacer icon

    wallfacer

    A terminal session manager for Claude Code, Cursor CLI, Kiro CLI, and Codex that lets you name, tag, search, resume, or delete AI coding sessions from a TUI or CLI.

    SessionCast icon

    SessionCast

    Monitor and control your AI CLI terminal sessions from your mobile device with real-time streaming and bidirectional input.

    Browse all tools

    Related Topics

    Command Line Assistants

    AI-powered command-line assistants that help developers navigate, search, and execute terminal commands with intelligent suggestions and context awareness.

    232 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    804 tools

    Terminal & Session Management

    Terminal emulators, multiplexers, and session managers that help developers run parallel AI coding agents, manage multiple workspaces, and maintain persistent terminal sessions.

    44 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions