[
  {
    "path": ".github/PULL_REQUEST_TEMPLATE.md",
    "content": "<!---\nThank you for your pull request.\nPlease check the contribution guidelines for what is required of the app and this PR.\n-->\n\n#### New App Submission\n\n- [ ] I've read the [contribution guidelines](https://github.com/agarrharr/awesome-cli-apps/blob/master/contributing.md).\n\n**Repo or homepage link:**\n\n**Description:**\n\n**Why I think it's awesome:**\n\n"
  },
  {
    "path": "check-for-deprecation.sh",
    "content": "#! /bin/bash\n\nJ=6\nOUT_FILE=deprecated.txt\n\nif [ \"$1\" = \"--help\" ] || [ \"$1\" = \"-h\" ] || [ \"$1\" = \"help\" ]; then\n  cat <<EOF\n$ check-for-deprecation.sh\nCheck all github apps in the readme for deprecation.\nRunning $J processes in parallel.\n\nFound deprecated repos are written to: $OUT_FILE\nEOF\n  exit\nfi\n\ncheck_if_archived_on_github() {\n  APPS=$(grep -e \"- \\[.\\+\\]\\(.\\+\\)\\s\" readme.md | grep 'github.com' | awk -F \"(\" '{ print $2 }' | cut -d \")\" -f1)\n\n  check_deprecation() {\n    REPO=\"$1\"\n    if nice curl -SsL \"$REPO\" | grep \"This repository has been archived by the owner on\" >/dev/null; then\n      echo \"DEPRECATED $REPO\" | tee -a $OUT_FILE\n    else\n      echo \"CHECKED $REPO\"\n    fi\n  }\n\n  # parallel exec: https://unix.stackexchange.com/a/216475\n  for app in $(echo $APPS); do\n    ((i=i%J)); ((i++==0)) && wait\n    check_deprecation \"$app\" &\n  done\n}\n\ncheck_if_link_is_dead() {\n  command -v deadlink >/dev/null || { echo \"deadlink is not installed\" 1>&2; exit 127; }\n\n  tmp=$(mktemp)\n  grep -Po \"http[^)]+\" readme.md | grep -v \"https://github.com\" >$tmp\n  deadlink check $tmp\n}\n\ncheck_if_archived_on_github\ncheck_if_link_is_dead\n"
  },
  {
    "path": "contributing.md",
    "content": "# Contribution Guidelines\n\n## App to be submitted\n\nNot all tools can be considered.\nThe aim of the list is to provide a concise list of awesome CLI tools and apps.\nThis means that all suggested software should:\n  \n- Do one thing and do it well.\n- Have a free and open source license.\n- Be easy to install.\n- Be well documented.\n- Be older than 90 days.\n- Have more than 20 stars (if it is hosted on GitHub.)\n\n## Pull request to add an app\n\n**Contents:**\n\nAdd the app at the bottom of the relevant category.\nUse the following format for the entry: `[APP_NAME](LINK) - DESCRIPTION.`\nWhere:\n- The description starts with a capital and ends with a full stop (period).\n- The description is short and concise. No redundant information like \"CLI\" or \"terminal\"\n  Usually the apps repository description or tag line is a good starting point.\n- There is no trailing whitespace.\n\n**Style:**\n\nOpen one pull request per app suggestion and title it simply `Add APP_NAME`.\nUse the provided pull request template.\nFailure to follow this point means the PR will be closed without being looked at.\n\nThank you for contributing :)\n\n## Other Pull Requests\n\nPull requests that are not adding a new app, but introduce new categories or improve the readme are always welcome!\nIn that case feel free to disregard the given structure above.\n"
  },
  {
    "path": "readme.md",
    "content": "<p align=\"center\">\n\t<img width=\"763\" src=\"https://cdn.rawgit.com/aharris88/awesome-cli-apps/master/media/banner.png\" alt=\"awesome cli apps\">\n</p>\n\n<p align=\"center\">\n  Proudly maintained by:\n  <a href=\"https://jneidel.com\">\n    <img width=\"24px\" src=\"https://jneidel.com/img/logo.png\" alt=\"jneidel.com logo\">\n    <span>jneidel.com</span>\n  </a>\n</p>\n\n---\n\n[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)\n\n> A curated list of command line apps.\n\nInspired by the [awesome](https://github.com/sindresorhus/awesome) list thing.\n\n## Table of Contents\n\n<!-- START doctoc generated TOC please keep comment here to allow auto update -->\n<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->\n\n- [Entertainment](#entertainment)\n  - [Music](#music)\n  - [Video](#video)\n  - [Movies](#movies)\n  - [Games](#games)\n  - [Books](#books)\n  - [Chat](#chat)\n- [Development](#development)\n  - [Text Editors](#text-editors)\n  - [Frontend Development](#frontend-development)\n  - [Public localhost](#public-localhost)\n  - [Mobile Development](#mobile-development)\n  - [Database](#database)\n  - [Devops](#devops)\n  - [Docker](#docker)\n  - [Release](#release)\n  - [Npm](#npm)\n  - [Boilerplate](#boilerplate)\n  - [HTTP Server](#http-server)\n  - [HTTP Client](#http-client)\n  - [Testing](#testing)\n- [Productivity](#productivity)\n  - [Time Tracking](#time-tracking)\n  - [Note Taking and Lists](#note-taking-and-lists)\n  - [Finance](#finance)\n  - [Presentations](#presentations)\n  - [Calendars](#calendars)\n- [Utilities](#utilities)\n  - [macOS](#macos)\n  - [Terminal Sharing Utilities](#terminal-sharing-utilities)\n  - [SSH](#ssh)\n  - [Network Utilities](#network-utilities)\n  - [Theming and Customization](#theming-and-customization)\n  - [Shell Utilities](#shell-utilities)\n  - [System Interaction Utilities](#system-interaction-utilities)\n  - [Markdown](#markdown)\n  - [Security](#security)\n  - [Math](#math)\n  - [Academia](#academia)\n  - [Weather](#weather)\n  - [Browser Replacement](#browser-replacement)\n  - [Internet Speedtest](#internet-speedtest)\n  - [Science](#science)\n  - [Professional: Resume](#professional-resume)\n- [Command Line Learning](#command-line-learning)\n- [Data Manipulation](#data-manipulation)\n  - [Processors](#processors)\n  - [JSON](#json)\n  - [YAML](#yaml)\n  - [Columns](#columns)\n  - [Text](#text)\n- [Files and Directories](#files-and-directories)\n  - [File Managers](#file-managers)\n  - [Deleting, Copying, and Renaming](#deleting-copying-and-renaming)\n  - [Disk Usage](#disk-usage)\n  - [Files](#files)\n  - [File Sync/Sharing](#file-syncsharing)\n  - [Directory Listing](#directory-listing)\n  - [Directory Navigation](#directory-navigation)\n  - [Search](#search)\n- [Version Control](#version-control)\n  - [Git](#git)\n  - [GitHub](#github)\n  - [Emoji](#emoji)\n- [Images](#images)\n  - [Gif Creation](#gif-creation)\n  - [Image Conversion](#image-conversion)\n- [Screensavers](#screensavers)\n- [Graphics](#graphics)\n- [Just for Fun](#just-for-fun)\n  - [Emoji](#emoji-1)\n- [AI](#ai)\n  - [Agents](#agents)\n  - [LLM Interaction](#llm-interaction)\n- [Other Resources](#other-resources)\n- [License](#license)\n\n<!-- END doctoc generated TOC please keep comment here to allow auto update -->\n\n---\n\n## Entertainment\n\n- [newsboat](https://github.com/newsboat/newsboat) - An extendable RSS feed reader for text terminals.\n- [mal-cli](https://github.com/L4z3x/mal-cli) - MyAnimeList client.\n\n### Music\n\n- [cmus](https://github.com/cmus/cmus) - Small, fast and powerful console music player.\n- [Instant-Music-Downloader](https://github.com/yask123/Instant-Music-Downloader) - Instant music downloader.\n- [itunes-remote](https://github.com/mischah/itunes-remote) - Control iTunes via CLI.\n- [pianobar](https://6xq.net/pianobar/) - Pandora client.\n- [somafm-cli](https://github.com/rockymadden/somafm-cli) - Listen to SomaFM in your terminal.\n- [mpd](https://github.com/MusicPlayerDaemon/MPD) - Music Player Daemon.\n- [ncmpcpp](https://github.com/arybczak/ncmpcpp) - mpd client.\n- [moc](http://moc.daper.net/) - Console audio player for Linux/UNIX.\n- [musikcube](https://github.com/clangen/musikcube) - Cross-platform, terminal-based music player, audio engine, metadata indexer, and server.\n- [beets](https://github.com/beetbox/beets) - Music library manager and tagger.\n- [spotatui](https://github.com/LargeModGames/spotatui) - Spotify client.\n- [swaglyrics-for-spotify](https://github.com/SwagLyrics/SwagLyrics-For-Spotify) - Spotify lyrics.\n- [dzr](https://github.com/yne/dzr) - deezer.com player.\n- [radio-active](https://github.com/deep5050/radio-active) - Internet radio player with 40k+ stations.\n- [mpvc](https://github.com/gmt4/mpvc) - Music player interfacing mpv.\n- [TUISIC](https://github.com/Dark-Kernel/tuisic) - Login-free music streaming.\n\n### Video\n\n- [youtube-dl](https://github.com/ytdl-org/youtube-dl) - Download videos from YouTube.com and many other video sites.\n- [streamlink](https://github.com/streamlink/streamlink) - Extract streams from various websites to a video player of your choosing.\n- [mps-youtube](https://github.com/mps-youtube/mps-youtube) - Youtube player.\n- [mpv](https://mpv.io) - Superior video player.\n- [editly](https://github.com/mifi/editly) - Declarative video editing.\n- [yt-dlp](https://github.com/yt-dlp/yt-dlp) - A `youtube-dl` fork with additional features and fixes.\n\n### Movies\n\n- [moviemon](https://github.com/iCHAIT/moviemon) - Everything about your movies.\n- [movie](https://github.com/mayankchd/movie) - Get movie info or compare movies.\n\n### Games\n\n- [Dwarf Fortress](http://www.bay12games.com/dwarves/) - Roguelike construction and management simulation.\n- [Cataclysm-DDA](https://cataclysmdda.org) - Turn-based survival game set in a post-apocalyptic world.\n- [Pokete](https://github.com/lxgr-linux/Pokete) - Pokemon-like.\n- [NetHack](https://www.nethack.org) - Roguelike dungeon crawler.\n\n### Books\n\n- [epr](https://github.com/wustho/epr), [epy](https://github.com/wustho/epy) - EPUB reader.\n- [Bible.Js CLI](https://github.com/BibleJS/BibleApp) - Bible.\n- [SpeedRead](https://github.com/sunsations/speed_read) - Spritz-alike speedreader.\n- [medium-cli](https://github.com/djadmin/medium-cli) - Read [medium.com](https://medium.com/) stories.\n- [hygg](https://github.com/kruserr/hygg) - Document reader.\n\n### Chat\n\n- [WeeChat](https://weechat.org/) - Fast, light and extensible chat client.\n- [irssi](https://github.com/irssi/irssi) - IRC chat client.\n- [kirc](https://github.com/mcpcpc/kirc) - Tiny IRC client.\n\n## Development\n\n- [legit](https://github.com/captainsafia/legit) - Generate Open Source licences as files or file headers.\n- [mklicense](https://github.com/cezaraugusto/mklicense) - Create a custom LICENSE file painlessly with customized info.\n- [rebound](https://github.com/shobrook/rebound) - Fetch Stack Overflow results on compiler error.\n- [foy](https://github.com/zaaack/foy) - Lightweight general purpose task runner/build tool.\n- [just](https://github.com/casey/just) - Modern `make`-like command runner.\n- [bcal](https://github.com/jarun/bcal) - Byte CALculator for storage conversions and calculations.\n- [bitwise](https://github.com/mellowcandle/bitwise) - Base conversion and bit manipulation.\n- [cgasm](https://github.com/bnagy/cgasm) - x86 assembly documentation.\n- [grex](https://github.com/pemistahl/grex) - Generate regular expressions from user-provided test cases.\n- [iola](https://github.com/pvarentsov/iola) - Socket client with REST API.\n- [add-gitignore](https://github.com/TejasQ/add-gitignore) - Interactively generate a .gitignore for your project based on your needs.\n- [is-up-cli](https://github.com/sindresorhus/is-up-cli) - Check if a domain is up.\n- [reachable](https://github.com/italolelis/reachable) - Check if a domain is up.\n- [diff2html-cli](https://github.com/rtfpessoa/diff2html-cli) - Create pretty HTML from diffs.\n- [mk](https://github.com/pycontribs/mk) - Exposes most common actions you can run in unfamiliar repos.\n\n### Text Editors\n\n- [emacs](https://github.com/emacs-mirror/emacs) - An extensible, customizable, free/libre text editor — and more.\n- [vim](https://github.com/vim/vim) - Vim - the ubiquitous text editor.\n- [neovim](https://github.com/neovim/neovim) - Modern vim.\n- [kakoune](https://github.com/mawww/kakoune) - Modal editor inspired by vim.\n- [micro](https://github.com/zyedidia/micro) - A simple and intuitive editor.\n- [o](https://github.com/xyproto/o) - Configuration-free text editor and IDE.\n- [helix](https://github.com/helix-editor/helix) - Modal editor inspired by kakoune.\n\n### Frontend Development\n\n- [caniuse-cmd](https://github.com/sgentle/caniuse-cmd) - Search [caniuse.com](https://caniuse.com) about browser support of features.\n- [strip-css-comments-cli](https://github.com/sindresorhus/strip-css-comments-cli) - Strip comments from CSS.\n- [viewport-list-cli](https://github.com/kevva/viewport-list-cli) - Return a list of devices and their viewports.\n- [surge](https://surge.sh) - Publish static websites for free.\n\n### Public localhost\n\nExpose a service running on localhost to the public web for testing and sharing.\n\n- [localtunnel](https://github.com/localtunnel/localtunnel)\n- [tunnelmole](https://github.com/robbie-cahill/tunnelmole-client)\n- [ngrok](https://ngrok.com/)\n\n### Mobile Development\n\n- [mobicon-cli](https://github.com/SamVerschueren/mobicon-cli) - Mobile app icon generator.\n- [mobisplash-cli](https://github.com/SamVerschueren/mobisplash-cli) - Mobile app splash screen generator.\n- [deviceframe](https://github.com/c0bra/deviceframe) - Put device frames around your mobile/web/progressive app screenshots.\n\n### Database\n\n- [mycli](https://github.com/dbcli/mycli) - MySQL client with autocompletion and syntax highlighting.\n- [pgcli](https://github.com/dbcli/pgcli) - Postgres client with autocompletion and syntax highlighting.\n- [sqlline](https://github.com/julianhyde/sqlline) - Shell for issuing SQL via JDBC.\n- [iredis](https://github.com/laixintao/iredis) - Redis client with autocompletion and syntax highlighting.\n- [usql](https://github.com/xo/usql) - Universal SQL client with autocompletion and syntax highlighting.\n- [rdsai-cli](https://github.com/aliyun/rdsai-cli) - AI-powered MySQL client.\n\n### Devops\n\n- [htconvert](https://github.com/lukechilds/htconvert) - Convert .htaccess redirects to nginx.conf redirects.\n- [SAWS](https://github.com/donnemartin/saws) - Supercharged AWS CLI.\n- [s3cmd](https://github.com/s3tools/s3cmd) - Fully-Featured S3 client.\n- [pm2](https://github.com/Unitech/pm2) - Production Process Manager for Node.js.\n- [ops](https://github.com/nanovms/ops) - Unikernel compilation and orchestration tool.\n- [flog](https://github.com/mingrammer/flog) - A fake log generator for log formats such as apache-common, apache error and RFC3164 syslog.\n- [k9s](https://github.com/derailed/k9s) - Manage Kubernetes Clusters.\n- [PingMe](https://github.com/kha7iq/pingme) - Send messages/alerts to multiple messaging platforms & email.\n- [ipfs-deploy](https://github.com/agentofuser/ipfs-deploy) - Deploy static websites to [IPFS](https://github.com/ipfs/ipfs#overviewhttps://github.com/ipfs/ipfs#overview).\n- [Discharge](https://github.com/brandonweiss/discharge) - Deploy static websites to Amazon S3.\n- [updatecli](https://github.com/updatecli/updatecli) - A declarative dependency management tool.\n- [telert](https://github.com/navig-me/telert) - Multi-channel alerts for long-running commands and process/log/uptime monitoring.\n- [logdy](https://github.com/logdyhq/logdy-core) - Supercharge terminal logs with web UI.\n- [s5cmd](https://github.com/peak/s5cmd) - Blazing fast S3 and local filesystem execution tool.\n- [updo](https://github.com/Owloops/updo) - Website monitoring tool.\n- [cronboard](https://github.com/antoniorodr/Cronboard) - Dashboard for managing cron jobs.\n- [s3m](https://github.com/s3m/s3m) - Stream of data into S3 buckets.\n- [bencher](https://github.com/bencherdev/bencher) - A continuous benchmarking tool.\n\n### Docker\n\n- [lstags](https://github.com/ivanilves/lstags) - Synchronize images across registries.\n- [dockly](https://github.com/lirantal/dockly) - Interactively manage containers.\n- [lazydocker](https://github.com/jesseduffield/lazydocker) - Simple docker/docker-compose interface.\n- [docker-pushrm](https://github.com/christian-korneck/docker-pushrm) - Push a readme to container registries.\n- [ctop](https://github.com/bcicen/ctop) - Top like interface for container metrics.\n- [decompose](https://github.com/s0rg/decompose) - Create connections graph for running docker containers.\n- [kool](https://github.com/kool-dev/kool) - Web development with containers made easy. \n\n### Release\n\n- [release-it](https://github.com/webpro/release-it) - Automate releases for Git repositories and/or npm packages. Changelog generation, GitHub/GitLab releases, etc.\n- [clog](https://github.com/clog-tool/clog-cli) - A conventional changelog for the rest of us.\n- [np](https://github.com/sindresorhus/np) - A better `npm publish`.\n- [release](https://github.com/vercel/release) - Generate changelogs with a single command.\n- [semantic-release](https://github.com/semantic-release/semantic-release) - Fully automated version management and package publishing.\n\n### Npm\n\n- [npm-name-cli](https://github.com/sindresorhus/npm-name-cli) - Check whether a package name is available on npm.\n- [npm-user-cli](https://github.com/sindresorhus/npm-user-cli) - Get user info of a npm user.\n- [npm-home](https://github.com/sindresorhus/npm-home) - Open the npm page of the package in the current directory.\n- [pkg-dir-cli](https://github.com/sindresorhus/pkg-dir-cli) - Find the root directory of a npm package.\n- [npm-check-updates](https://github.com/tjunnone/npm-check-updates) - Find newer versions of package dependencies than what your package.json allows.\n- [updates](https://github.com/silverwind/updates) - Flexible npm dependency update tool.\n- [wipe-modules](https://github.com/bntzio/wipe-modules) - Remove `node_modules` of inactive projects.\n- [npm-deprecated-check](https://github.com/KID-joker/npm-deprecated-check) - Check for deprecated dependencies.\n\n### Boilerplate\n\n- [yo](https://github.com/yeoman/yo) - Scaffolding tool for running Yeoman generators.\n- [boilr](https://github.com/tmrts/boilr) - Create projects from boilerplate templates.\n- [cookiecutter](https://github.com/audreyr/cookiecutter) - Create projects from templates.\n- [mevn-cli](https://github.com/madlabsinc/mevn-cli) - Light speed setup for MEVN (Mongo Express Vue Node) Apps.\n- [scaffold-static](https://github.com/jamesgeorge007/scaffold-static) - Scaffolding utility for vanilla JS.\n\n### HTTP Server\n\n- [serve](https://github.com/vercel/serve) - Serve static files (https, CORS, GZIP compression, etc).\n- [simplehttp](https://github.com/snwfdhmp/simplehttp) - Easily serve a local directory over HTTP.\n- [shell2http](https://github.com/msoap/shell2http) - Shell script based HTTP server.\n\n### HTTP Client\n\n- [HTTPie](https://github.com/httpie/httpie) - A user-friendly HTTP client.\n- [HTTP Prompt](https://github.com/eliangcs/http-prompt) - Interactive HTTP client featuring autocomplete and syntax highlighting.\n- [ain](https://github.com/jonaslu/ain) - HTTP client with a simple format to organize API endpoints.\n- [curlie](https://github.com/rs/curlie) - A curl frontend with the ease of use of HTTPie.\n- [ATAC](https://github.com/Julien-cpsn/ATAC) - A feature-full TUI API client made in Rust.\n\n### Testing\n\n- [shellspec](https://github.com/shellspec/shellspec) - A full-featured BDD unit-testing framework for all POSIX shells.\n- [gdb-dashboard](https://github.com/cyrus-and/gdb-dashboard) - Modular visual interface for GDB.\n- [loadtest](https://github.com/alexfernandez/loadtest) - Run load tests.\n- [Step CI](https://github.com/stepci/stepci) - API testing and QA framework.\n- [bats-core](https://github.com/bats-core/bats-core) - Bash Automated Testing System.\n- [cmdperf](https://github.com/miklosn/cmdperf) - Quickly benchmark and compare command performance.\n\n## Productivity\n\n- [doing](https://github.com/ttscoff/doing/) - Keep track of what you’re doing and track what you’ve done.\n- [ffscreencast](https://github.com/cytopia/ffscreencast) - A ffmpeg screencast with video overlay and multi monitor support.\n- [meetup-cli](https://github.com/specious/meetup-cli) - Meetup.com client.\n- [NeoMutt](https://neomutt.org) - Email client.\n- [terjira](https://github.com/keepcosmos/terjira) - Jira client.\n- [ipt](https://github.com/drselump14/ipt) - Pivotal Tracker client.\n- [uber-cli](https://github.com/jaebradley/uber-cli) - Uber client.\n- [Buku](https://github.com/jarun/Buku) - Browser-independent bookmark manager.\n- [fjira](https://github.com/mk-5/fjira) - Fuzzy finder and TUI application for Jira.\n- [OverTime](https://github.com/diit/overtime-cli) - Time-overlap tables for remote teams.\n- [CookCLI](https://github.com/cooklang/CookCLI) - Full-featured recipe manager.\n- [hns](https://github.com/primaprashant/hns) - Speech-to-text tool to transcribe voice from microphone.\n- [mynav](https://github.com/GianlucaP106/mynav) - Workspace and session management TUI.\n\n### Time Tracking\n\n- [Timetrap](https://github.com/samg/timetrap) - Simple timetracker.\n- [moro](https://github.com/omidfi/moro) - Simple tool for tracking work hours.\n- [Timewarrior](https://github.com/GothenburgBitFactory/timewarrior) - Utility with simple stopwatch, calendar-based backfill and flexible reporting.\n- [Watson](https://github.com/TailorDev/Watson) - Generate reports for clients and manage your time.\n- [utt](https://github.com/larose/utt) - Simple time tracking tool.\n- [Bartib](https://github.com/nikolassv/bartib) - Easy to use time tracking tool.\n- [arttime](https://github.com/reportaman/arttime) - Featureful timer with native desktop notifications and curated ASCII art.\n- [Tock](https://github.com/kriuchkov/tock) - Powerful time tracking tool.\n- [Helm](https://github.com/0xjuanma/helm) - Minimalistic timer.\n\n### Note Taking and Lists\n\n- [idea](https://github.com/IonicaBizau/idea) - A lightweight tool for keeping ideas in a safe place quick and easy.\n- [geeknote](https://github.com/vitaly-zdanevich/geeknote) - Evernote client.\n- [Taskwarrior](https://taskwarrior.org/) - Manage your TODO list.\n- [Terminal velocity](https://vhp.github.io/terminal_velocity/) - A fast note-taking app.\n- [eureka](https://github.com/simeg/eureka) - Input and store your ideas.\n- [sncli](https://github.com/insanum/sncli) - Simplenote client.\n- [td-cli](https://github.com/darrikonn/td-cli) - A TODO manager to organize and manage your TODO's across multiple projects.\n- [taskbook](https://github.com/klaussinani/taskbook) - Tasks, boards & notes for the command-line habitat.\n- [dnote](https://github.com/dnote/dnote) - A interactive, multi-device notebook.\n- [nb](https://github.com/xwmx/nb) - A note‑taking, bookmarking, archiving, and knowledge base application.\n- [notesmd-cli](https://github.com/Yakitrak/notesmd-cli) - Interact with your Obsidian vault.\n- [journalot](https://github.com/jtaylortech/journalot) - Journaling tool with git sync.\n- [rucola](https://github.com/Linus-Mussmaecher/rucola) - Manage your markdown notes.\n- [kanban.bash](https://github.com/coderofsalvation/kanban.bash) - Kanban todo manager with a CSV backend.\n\n### Finance\n\nSee [plaintextaccounting.org](https://plaintextaccounting.org) for a great overview of relevant tools.\n\n- [ledger](https://ledger-cli.org/) - Powerful, double-entry accounting system.\n- [hledger](https://hledger.org/) - Robust, fast, intuitive plain text accounting tool with CLI, TUI and web interfaces.\n- [moeda](https://github.com/thompsonemerson/moeda) - Foreign exchange rates and currency conversion.\n- [cash-cli](https://github.com/xxczaki/cash-cli) - Convert Currency Rates.\n- [cointop](https://github.com/miguelmota/cointop) - Track cryptocurrencies.\n- [ticker](https://github.com/achannarasappa/ticker) - Stock ticker.\n- [lakshmi](https://github.com/sarvjeets/lakshmi) - Bogleheads inspired tool for managing your investing portfolio.\n\n### Presentations\n\n- [WOPR](https://github.com/yaronn/wopr) - A simple markup language for creating rich terminal reports, presentations and infographics.\n- [decktape](https://github.com/astefanutti/decktape) - PDF exporter for HTML presentations.\n- [mdp](https://github.com/visit1985/mdp) - A markdown presentation tool.\n- [sent](https://tools.suckless.org/sent/) - Simple plaintext presentation tool.\n- [slides](https://github.com/maaslalani/slides) - A markdown presentation tool.\n- [marp](https://github.com/marp-team/marp-cli) - Export Markdown to HTML/PDF/Powerpoint presentations.\n\n### Calendars\n\n- [calcurse](https://calcurse.org/) - Calendar and scheduling.\n- [gcalcli](https://github.com/insanum/gcalcli) - Google calendar client.\n- [khal](https://github.com/pimutils/khal) - CalDAV ready CLI and TUI calendar.\n- [vdirsyncer](https://github.com/pimutils/vdirsyncer) - CalDAV sync.\n- [remind](https://dianne.skoll.ca/projects/remind/) - A sophisticated calendar and alarm program.\n- [birthday](https://github.com/IonicaBizau/birthday) - Know when a friend's birthday is coming.\n\n## Utilities\n\n- [aria2](https://github.com/tatsuhiro-t/aria2) - HTTP, FTP, SFTP, BitTorrent and Metalink download utility.\n- [bitly-client](https://github.com/specious/bitly-client) - Bitly client.\n- [deadlink](https://github.com/nschloe/deadlink) - Find dead links in files.\n- [crawley](https://github.com/s0rg/crawley) - Unix-way web crawler.\n- [kill-tabs](https://github.com/sindresorhus/kill-tabs) - Kill all Chrome tabs.\n- [alex](https://github.com/get-alex/alex) - Catch insensitive, inconsiderate writing.\n- [clevercli](https://github.com/clevercli/clevercli) - Collection of ChatGPT powered utilities.\n- [OctoType](https://github.com/mahlquistj/octotype) - A customizable typing trainer.\n\n### macOS\n\n- [open-pip-cli](https://github.com/albinekb/open-pip-cli) - Watch videos in picture-in-picture player.\n- [osx-wifi-cli](https://github.com/danyshaanan/osx-wifi-cli) - Manage wifi connections.\n- [active-win-cli](https://github.com/sindresorhus/active-win-cli) - Get the title/id/etc of the active window.\n- [stronghold](https://github.com/alichtman/stronghold) - Configure security settings from the terminal.\n- [dark-mode](https://github.com/sindresorhus/dark-mode) - Toggle dark mode.\n- [clippy](https://github.com/neilberkman/clippy) - Clipboard tool for interacting with GUI applications.\n- [anvil](https://github.com/0xjuanma/anvil) - Config management and app installations.\n\n### Terminal Sharing Utilities\n\n- [gotty](https://github.com/yudai/gotty) - Share your terminal as a web application.\n- [tmate](https://tmate.io/) - Instant terminal (tmux) sharing.\n- [warp](https://github.com/spolu/warp) - Secure and simple terminal sharing.\n\n### SSH\n\n- [mosh](https://mosh.org/) - Remote SSH client that allows roaming with intermittent connectivity.\n- [xxh](https://github.com/xxh/xxh) - Bring your favorite shell wherever you go through SSH.\n\n### Network Utilities\n\n- [get-port-cli](https://github.com/sindresorhus/get-port-cli) - Get an available port.\n- [is-reachable-cli](https://github.com/beatfreaker/is-reachable-cli) - Check if hostnames are reachable or not.\n- [acmetool](https://github.com/hlandau/acmetool) - Automatic certificate acquisition for ACME (Let's Encrypt).\n- [certificate-ripper](https://github.com/Hakky54/certificate-ripper) - Extract server certificates.\n- [neoss](https://github.com/PabloLec/neoss) - User-friendly and detailed socket statistics.\n- [gg](https://github.com/mzz2017/gg) - One-click proxy without installing v2ray or anything else.\n- [rustnet](https://github.com/domcyrus/rustnet) - Network monitoring with process identification and deep packet inspection.\n- [sshuttle](https://github.com/sshuttle/sshuttle) - Transparent proxy server that works as a poor man's VPN.\n\n### Theming and Customization\n\n- [splash-cli](https://github.com/splash-cli/splash-cli) - Beautiful wallpapers from Unsplash.\n- [wallpaper-cli](https://github.com/sindresorhus/wallpaper-cli) - Get or set the desktop wallpaper.\n- [themer](https://github.com/mjswensen/themer) - Generate personalized themes for your editor, terminal, wallpaper, Slack, and more.\n- [JackPaper](https://github.com/jackel27/jackpaper) - Set images from Unsplash as wallpaper.\n- [QuickWall](https://github.com/deepjyoti30/QuickWall) - Directly set wallpapers from Unsplash.\n- [oh-my-posh](https://ohmyposh.dev) - Prompt theme engine.\n- [starship](https://github.com/starship/starship) - Minimal, blazing-fast, and infinitely customizable prompt for any shell.\n- [gowall](https://github.com/Achno/gowall) - Extract image color pallet, recolor images/icon and more.\n\n### Shell Utilities\n\n- [has](https://github.com/kdabir/has) - Checks for the presence of various commands and their versions on the path.\n- [Ultimate Plumber](https://github.com/akavel/up) - Write Linux pipes with live previews.\n- [fkill-cli](https://github.com/sindresorhus/fkill-cli) - Simple cross-platform process killer.\n- [task-spooler](https://tracker.debian.org/pkg/task-spooler) - Queue jobs for linear execution.\n- [undollar](https://github.com/ImFeelingDucky/undollar) - Strip the '$' preceding copy-pasted terminal commands.\n- [pipe_exec](https://github.com/koraa/pipe_exec) - Run executables from stdin, pipes and ttys without creating a temporary file.\n- [intelli-shell](https://github.com/lasantosr/intelli-shell) - Manage command templates/snippets.\n- [envio](https://github.com/envio-cli/envio) - Manage environment variables securely.\n- [await](https://github.com/slavaGanzin/await) - Runs commands in parallel and waits for their termination.\n- [aha](https://github.com/theZiz/aha) - Convert ANSI output to HTML.\n\n### System Interaction Utilities\n\n- [fastfetch](https://github.com/fastfetch-cli/fastfetch) - System information tool.\n- [battery-level-cli](https://github.com/gillstrom/battery-level-cli) - Get current battery level.\n- [brightness-cli](https://github.com/kevva/brightness-cli) - Change screen brightness ([windows](https://github.com/sondreb/win-brightness)).\n- [Clipboard](https://github.com/Slackadays/Clipboard) - Cut, copy, and paste anything, anywhere.\n- [yank](https://github.com/mptre/yank) - Yank terminal output to clipboard.\n- [screensaver](https://github.com/gillstrom/screensaver) - Start the screensaver.\n- [google-font-installer](https://github.com/lordgiotto/google-font-installer) - Download and install Google Web Fonts on your local machine.\n- [glances](https://nicolargo.github.io/glances/) - System monitoring tool.\n- [tiptop](https://github.com/nschloe/tiptop) - System monitor.\n- [gzip-size-cli](https://github.com/sindresorhus/gzip-size-cli) - Get the gzipped size of a file.\n\n### Markdown\n\n- [DocToc](https://github.com/thlorenz/doctoc) - Generates table of contents for markdown files.\n- [grip](https://github.com/joeyespo/grip) - Preview markdown files as GitHub would render them.\n- [mdv](https://github.com/axiros/terminal_markdown_viewer) - Styled terminal markdown viewer.\n- [glow](https://github.com/charmbracelet/glow) - Styled markdown rendering.\n- [gtree](https://github.com/ddddddO/gtree) - Use markdown to generate directory trees and the directories itself.\n- [Jimmy](https://github.com/marph91/jimmy) - Convert various note formats to markdown.\n\n### Security\n\n- [pass](https://www.passwordstore.org) - Password manager.\n- [gopass](https://github.com/gopasspw/gopass) - Fully-featured password manager.\n- [xiringuito](https://github.com/ivanilves/xiringuito) - SSH-based VPN.\n- [hasha-cli](https://github.com/sindresorhus/hasha-cli) - Get the hash of text or stdin.\n- [ots](https://github.com/sniptt-official/ots) - Share secrets with others via a one-time URL.\n\n### Math\n\n- [mdlt](https://github.com/metadelta/mdlt) - Do quick math right from the command line.\n- [Qalculate](https://github.com/Qalculate/libqalculate) - Calculate non-trivial math expressions. Unit conversions, symbolic calculations and more.\n\n### Academia\n\n- [papis](https://github.com/papis/papis) - Extensible document and bibliography manager.\n- [pubs](https://github.com/pubs/pubs) - Scientific bibliography manager.\n- [OneCite](https://github.com/HzaCode/OneCite) - Universal toolkit to generate citations.\n\n### Weather\n\n- [wttr.in](https://github.com/chubin/wttr.in)\n- [wego](https://github.com/schachmat/wego)\n- [weather-cli](https://github.com/riyadhalnur/weather-cli)\n- [weathr](https://github.com/veirt/weathr) - ASCII animations.\n\n### Browser Replacement\n\n- [s](https://github.com/zquestz/s) - Open a web search in your terminal.\n- [hget](https://github.com/bevacqua/hget) - Render websites in plain text from your terminal.\n- [mapscii](https://github.com/rastapasta/mapscii) - Terminal Map Viewer.\n- [nasa-cli](https://github.com/xxczaki/nasa-cli) - Download NASA Picture of the Day.\n- [getnews.tech](https://github.com/omgimanerd/getnews.tech) - Fetch news headlines from various news outlets.\n- [trino](https://github.com/eneserdogan/trino) - Translation of words and phrases.\n- [translate-shell](https://github.com/soimort/translate-shell) - Google Translate interface.\n\n### Internet Speedtest\n\n- [speedtest-net](https://github.com/ddsol/speedtest.net) - Test internet connection speed and ping using speedtest.net.\n- [speed-test](https://github.com/sindresorhus/speed-test) - `speedtest-net` wrapper with different UI.\n- [speedtest-cli](https://github.com/sivel/speedtest-cli) - Test internet bandwidth using speedtest.net.\n- [bandwhich](https://github.com/imsnif/bandwhich) - Track bandwidth utilization by process.\n\n### Science\n\n- [periodic-table-cli](https://github.com/spirometaxas/periodic-table-cli) - View and explore the Periodic Table of Elements.\n- [astroterm](https://github.com/da-luce/astroterm) - An ASCII planetarium.\n\n### Professional: Resume\n\n- [resumx](https://github.com/resumx/resumx) - Markdown resume renderer with auto page-fitting.\n- [YAMLResume](https://github.com/yamlresume/yamlresume) - Resumes as code.\n\n## Command Line Learning\n\n- [cmdchallenge](https://cmdchallenge.com) - Presents small shell challenge with user submitted solutions.\n- [explainshell](https://www.explainshell.com/) - Type a snippet to see the help text for each argument.\n- [howdoi](https://github.com/gleitz/howdoi) - Instant coding answers.\n- [how2](https://github.com/santinic/how2) - Node.js implementation of howdoi.\n- [The Fuck](https://github.com/nvbn/thefuck) - Magnificent app which corrects your previous console command.\n- [tldr](https://github.com/tldr-pages/tldr) - Simplified and community-driven man pages.\n- [Wat](https://github.com/dthree/wat) - Instant, central, community-built docs.\n- [teachcode](https://github.com/madlabsinc/teachcode) - Guide for the earliest lessons of coding.\n- [navi](https://github.com/denisidoro/navi) - Interactive cheatsheet tool.\n- [yai](https://github.com/ekkinox/yai) - AI powered terminal assistant.\n- [Linux Command Library](https://linuxcommandlibrary.com) - Comprehensive command reference including basic knowledge, tips, and examples.\n\n## Data Manipulation\n\n- [visidata](https://github.com/saulpw/visidata) - Spreadsheet multitool for data discovery and arrangement.\n- [sc-im](https://github.com/andmarti1424/sc-im) - Vim-like spreadsheet calculator.\n\n### Processors\n\n- [jq](https://github.com/stedolan/jq) - JSON processor.\n- [yq](https://github.com/kislyuk/yq) - YAML processor.\n- [dasel](https://github.com/tomwright/dasel) - JSON/YAML/TOML/XML processor (like jq/yq).\n- [yaml-cli](https://github.com/pandastrike/yaml-cli) - Query/update YAML.\n- [ramda-cli](https://github.com/raine/ramda-cli) - Process data with functional pipelines.\n- [xq](https://github.com/sibprogrammer/xq) - XML and HTML beautifier and content extractor.\n\n### JSON\n\n- [jp](https://github.com/therealklanni/jp) - JSON parser.\n- [fx](https://github.com/antonmedv/fx) - Command-line JSON viewer.\n- [vj](https://github.com/busyloop/vj) - Makes JSON human readable.\n- [underscore-cli](https://github.com/ddopson/underscore-cli) - Utility-belt for hacking JSON and Javascript.\n- [strip-json-comments-cli](https://github.com/sindresorhus/strip-json-comments-cli) - Strip comments from JSON.\n- [GROQ](https://github.com/sanity-io/groq-cli) – JSON processor with queries and projections.\n- [gron](https://github.com/tomnomnom/gron) - Make JSON greppable.\n- [config-file-validator](https://github.com/Boeing/config-file-validator) - Validate configuration files.\n\n### YAML\n\n- [dyff](https://github.com/homeport/dyff) - YAML diff tool.\n- [config-file-validator](https://github.com/Boeing/config-file-validator) - Validate configuration files.\n\n### Columns\n\n- [parse-columns-cli](https://github.com/sindresorhus/parse-columns-cli) - Parse text columns to JSON.\n- [q](http://harelba.github.io/q/) - Execution of SQL-like queries on CSV/TSV/tabular text file.\n\n### Text\n\n- [figlet](http://www.figlet.org/) - Creates large text out of ASCII characters.\n- [stegcloak](https://github.com/kurolabs/stegcloak) - Hide secrets with invisible characters in plain text securely.\n\n## Files and Directories\n\n### File Managers\n\n- [ranger](https://github.com/ranger/ranger) - A console file manager with VI key bindings.\n- [midnight-commander](https://github.com/MidnightCommander/mc) - A feature rich visual file manager.\n- [Vifm](https://vifm.info/) - VI influenced file manager.\n- [nnn](https://github.com/jarun/nnn) - File browser and disk usage analyzer with excellent desktop integration.\n- [lf](https://github.com/gokcehan/lf) - Fast, extensively customizable file manager.\n- [clifm](https://github.com/leo-arch/clifm) - The command line file manager.\n- [far2l](https://github.com/elfmz/far2l) - Orthodox file manager.\n- [yazi](https://github.com/sxyazi/yazi) - Blazing fast file manager.\n- [xplr](https://github.com/sayanarijit/xplr) - A hackable, minimal, fast TUI file explorer.\n\n### Deleting, Copying, and Renaming\n\n- [trash-cli](https://github.com/sindresorhus/trash-cli) - Move files and directories to the trash.\n- [empty-trash-cli](https://github.com/sindresorhus/empty-trash-cli) - Empty the trash.\n- [del-cli](https://github.com/sindresorhus/del-cli) - Delete files and folders.\n- [cpy-cli](https://github.com/sindresorhus/cpy-cli) - Copies files.\n- [rename-cli](https://github.com/jhotmann/node-rename-cli) - Rename files quickly.\n- [renameutils](https://www.nongnu.org/renameutils/) - Mass renaming in your editor.\n- [nomino](https://github.com/yaa110/nomino) - Batch rename utility for developers.\n\n### Disk Usage\n\n- [diskonaut](https://github.com/imsnif/diskonaut) - Disk space navigator.\n- [dua-cli](https://github.com/Byron/dua-cli) - Disk usage analyzer.\n- [duf](https://github.com/muesli/duf) - A better `df` alternative.\n- [dust](https://github.com/bootandy/dust) - A more intuitive version of `du` in Rust.\n- [dutree](https://github.com/nachoparker/dutree) - A tool to analyze file system usage written in Rust.\n- [NCDu](https://dev.yorhel.nl/ncdu) - A disk usage analyzer with an ncurses interface.\n\n### Files\n\n- [chokidar-cli](https://github.com/open-cli-tools/chokidar-cli) - CLI to watch file system changes.\n- [file-type-cli](https://github.com/sindresorhus/file-type-cli) - Detect the file type of a file or stdin.\n- [bat](https://github.com/sharkdp/bat) - A cat clone with syntax highlighting.\n- [unix-permissions](https://github.com/ehmicky/unix-permissions) - Swiss Army knife for Unix permissions.\n- [transmission-cli](https://transmissionbt.com) - Torrent client for your command line.\n- [webtorrent-cli](https://github.com/feross/webtorrent-cli) – Streaming torrent client.\n- [entr](https://github.com/eradman/entr) - Run an arbitrary command when files change.\n- [organize-cli](https://github.com/ManrajGrover/organize-cli) - Organize your files automatically.\n- [organize-rt](https://gitlab.com/foxido/organize-rt) - organize-cli in Rust with more customization.\n- [RecoverPy](https://github.com/PabloLec/RecoverPy) - Recover overwritten or deleted files.\n- [f2](https://github.com/ayoisaiah/f2) - A cross-platform tool for fast, safe, and flexible batch renaming.\n- [scc](https://github.com/boyter/scc) - Count lines of code, blank lines, comment lines, and physical lines of source code.\n- [chkbit](https://laktak.github.io/chkbit/) - Check your files for data corruption.\n\n### File Sync/Sharing\n\n- [rclone](https://github.com/ncw/rclone) - Sync files with various cloud providers.\n- [ffsend](https://github.com/timvisee/ffsend) - Quick file share.\n- [share-cli](https://github.com/marionebl/share-cli) - Share files with your local network.\n- [google-drive-upload](https://github.com/labbots/google-drive-upload) - Upload/sync with Google Drive.\n- [gdrive-downloader](https://github.com/Akianonymus/gdrive-downloader) - Download files/folders from Google Drive.\n- [portal](https://github.com/ZinoKader/portal) - Send files between computers.\n- [shbin](https://github.com/Shiphero/shbin/) - Turn a Github repo into a pastebin.\n- [sharing](https://github.com/parvardegr/sharing) - Send and receive files on your mobile device.\n- [ncp](https://github.com/kha7iq/ncp) - Transfer files and folders, to and from NFS servers.\n- [share](https://github.com/beavailable/share) - Share and receive files effortlessly over HTTP.\n- [shuk](https://shuk.rs) - Quicky share files using Amazon S3 buckets.\n- [croc](https://github.com/schollz/croc) - Easily send things from one computer to another.\n\n### Directory Listing\n\n- [alder](https://github.com/aweary/alder) - Minimal `tree` with colors.\n- [eza](https://github.com/eza-community/eza) - Improved version of `ls`.\n- [tre](https://github.com/dduan/tre) - `tree` with git awareness, editor aliasing, and more.\n- [ll](https://github.com/antonmedv/ll) - `ls` with git status.\n- [lsd](https://github.com/Peltoche/lsd) - `ls` with many extra features.\n- [lla](https://github.com/triyanox/lla) - Improved `ls` with plugins.\n- [pls](https://github.com/pls-rs/pls)  - `ls` for the pros.\n\n### Directory Navigation\n\n- [autojump](https://github.com/wting/autojump) - A cd command that learns - easily navigate directories from the command line.\n- [pm](https://github.com/Angelmmiguel/pm) - The easy way to switch to your projects on the shell.\n- [z](https://github.com/rupa/z) - z is the new j, yo.\n- [PathPicker](https://github.com/facebook/pathpicker/) - After parsing the output from a command, PathPicker presents you with a nice UI to select which files you're interested in.\n- [fz](https://github.com/changyuheng/fz.sh) - Seamless fuzzy tab completion for z.\n- [goto](https://github.com/iridakos/goto) - Directory aliases for the shell with autocomplete.\n- [z.lua](https://github.com/skywind3000/z.lua) - `cd` command that learns your habits.\n- [zoxide](https://github.com/ajeetdsouza/zoxide) - Fast directory jumper in Rust.\n- [tere](https://github.com/mgunyho/tere) - A faster alternative to using cd and ls.\n\n### Search\n\n- [happyfinder](https://github.com/hugows/hf) - (another) Fuzzy file finder for the command line.\n- [find-up-cli](https://github.com/sindresorhus/find-up-cli) - Find a file by walking up parent directories.\n- [ripgrep](https://github.com/BurntSushi/ripgrep) - A line-oriented search tool that recursively searches your current directory for a regex pattern.\n- [fzf](https://github.com/junegunn/fzf) - A general purpose command-line fuzzy finder, can be used with any list: files/directories, command history, processes, hostnames, bookmarks, git commits, etc.\n- [fselect](https://github.com/jhspetersson/fselect) - Find files with SQL-like queries.\n- [fd](https://github.com/sharkdp/fd) - A simple, fast and user-friendly alternative to `find`.\n- [broot](https://github.com/Canop/broot) - Fuzzy finder similar to fzf, but with space usage visualization.\n- [rare](https://github.com/zix99/rare) - Real-time regex aggregation and analysis.\n- [skim](https://github.com/lotabout/skim) - A general fuzzy finder written in Rust, similar to fzf.\n- [ast-grep](https://github.com/ast-grep/ast-grep) - A tool for code structural search, linting and rewriting.\n- [television](https://github.com/alexpasmantier/television) - A very fast general purpose fuzzy finder.\n- [srgn](https://github.com/alexpovel/srgn/) - A grep-like tool which understands code syntax and also allows for manipulation.\n- [rawhide](https://github.com/raforg/rawhide) - Find files using pretty C expressions.\n- [semantic-grep](https://github.com/arunsupe/semantic-grep) - A tool for semantic search using word embeddings (e.g. search for \"death\" and find \"dead\", \"killing\", \"murder\".)\n\n## Version Control\n\n- [SnowFS](https://github.com/snowtrack/snowfs) - A fast, scalable version control system for binaries.\n\n### Git\n\n- [git commander](https://github.com/golbin/git-commander) - Interactive git tool.\n- [git-stats](https://github.com/IonicaBizau/git-stats) - A local GitHub-like contributions calendar.\n- [dev-time](https://github.com/samverschueren/dev-time-cli) - Get the current local time of a GitHub user.\n- [tig](https://github.com/jonas/tig) - Text-mode interface for git.\n- [grv](https://github.com/rgburke/grv) - Text-mode interface for git with customisable vi bindings.\n- [git-standup](https://github.com/kamranahmedse/git-standup) - Recall what you did on the last working day.\n- [git-secret](https://github.com/sobolevn/git-secret) - Store your private data inside a git repository.\n- [gitlab-cli](https://github.com/vishwanatharondekar/gitlab-cli) - Create GitLab merge requests.\n- [git-extras](https://github.com/tj/git-extras) - Git utilities.\n- [gita](https://github.com/nosarthur/gita) - Manage multiple git repos side by side.\n- [readme-md-generator](https://github.com/kefranabg/readme-md-generator) - Interactively generate README.md files.\n- [semantic-git-commit-cli](https://github.com/JPeer264/node-semantic-git-commit-cli) - Ensure semantic commits messages.\n- [import-github-labels-cli](https://github.com/abhijithvijayan/import-github-labels-cli) - Sync labels between Github repos.\n- [git-all-branches](https://github.com/zacanger/git-all-branches) - Improved `git branch -a`.\n- [czg](https://github.com/Zhengqbbb/cz-git/tree/main/packages/cli) - Interactively generate standardized commit messages.\n- [shallow-backup](https://github.com/alichtman/shallow-backup) - Git integrated backup tool.\n- [lazygit](https://github.com/jesseduffield/lazygit) - Simple TUI for git commands.\n- [bash-git-prompt](https://github.com/magicmonty/bash-git-prompt) - Informative and fancy bash prompt for Git users.\n- [gitui](https://github.com/extrawurst/gitui) - Blazing fast terminal-ui for git written in Rust.\n- [ggc](https://github.com/bmf-san/ggc) - A modern Git tool with both CLI and interactive incremental-search UI.\n- [AI Git Narrator](https://github.com/pmusolino/AI-Git-Narrator) - [macOS]: Generate commit messages with AI.\n- [gibr](https://github.com/ytreister/gibr) - Easily create consistent git branch names.\n\n### GitHub\n\n- [CLI GitHub](https://github.com/IonicaBizau/cli-github) - Fancy GitHub client.\n- [hub](https://github.com/github/hub) - Make git easier to use with GitHub.\n- [git-labelmaker](https://github.com/himynameisdave/git-labelmaker) - Edit GitHub labels.\n\n### Emoji\n\n- [gitmoji-cli](https://github.com/carloscuesta/gitmoji-cli) - Use emoji in commit messages.\n- [gitmoji-changelog](https://github.com/frinyvonnick/gitmoji-changelog) - Generate gitmoji changelogs.\n\n## Images\n\n- [SVGO](https://github.com/svg/svgo) - Optimize SVG files.\n- [carbon-now-cli](https://github.com/mixn/carbon-now-cli) - Generate beautiful images of your code.\n- [imgur-uploader-cli](https://github.com/kevva/imgur-uploader-cli) - Upload images to imgur.\n- [pageres-cli](https://github.com/sindresorhus/pageres-cli) - Capture website screenshots.\n- [optimizt](https://github.com/343dev/optimizt) - Helps prepare images for the web.\n- [freeze](https://github.com/charmbracelet/freeze) - Generate images of code and terminal output.\n\n### Gif Creation\n\n- [gifgen](https://github.com/lukechilds/gifgen) - Simple high quality GIF encoding.\n- [gifsicle](https://github.com/kohler/gifsicle) - Create, manipulate, and optimize GIF images and animations.\n- [ttygif](https://github.com/icholy/ttygif) - Convert terminal recordings to animated gifs.\n- [ttygif](https://github.com/sugyan/ttygif) - ttyrec to gif.\n- [ttystudio](https://github.com/chjj/ttystudio) - A terminal-to-gif recorder minus the headaches.\n- [asciinema](https://github.com/asciinema/asciinema) - Terminal session recorder and companion app for asciinema.org.\n- [givegif](https://github.com/passy/givegif) - GIFs on the command line.\n\n### Image Conversion\n\n- [imagemagick](https://imagemagick.org) - Gold standard for anything images.\n- [imgp](https://github.com/jarun/imgp) - Blazing fast batch image resizer and rotator.\n- [korkut](https://github.com/oguzhaninan/korkut) - Quick and simple image processing.\n- [pdfjuicer](https://github.com/dmikhr/pdfjuicer) - Extract PDF pages as images.\n- [gowall](https://github.com/Achno/gowall) - Recolor images, OCR, image upscaling and more.\n- [img2ascii](https://github.com/JosefVesely/Image-to-ASCII) - Convert images to ASCII art.\n\n## Screensavers\n\n- [cmatrix](https://github.com/Treri/cmatrix) - Scrolling 'Matrix'-like screen.\n- [pipes.sh](https://github.com/pipeseroni/pipes.sh) - Random pipes that grow across the screen.\n- [YuleLog](https://github.com/Duroktar/YuleLog) - Christmas Yule Log fireplace.\n- [cli-fireplace](https://github.com/dolsup/cli-fireplace) - Digital fireplace.\n- [gitlogue](https://github.com/unhappychoice/gitlogue) - Cinematic git commit replay.\n\n## Graphics\n\n- [cli-mandelbrot](https://github.com/danyshaanan/cli-mandelbrot) - Traverse the Mandelbrot fractal.\n- [sparkly-cli](https://github.com/sindresorhus/sparkly-cli) - Generate sparklines ▁▂▃▅▂▇..\n- [pastel](https://github.com/sharkdp/pastel) - Generate, analyze, convert and manipulate colors.\n- [lowcharts](https://github.com/juan-leon/lowcharts) - Draw low-resolution graphs.\n\n## Just for Fun\n\n- [quote-cli](https://github.com/riyadhalnur/quote-cli) - Get a random quote or the quote of the day in your CLI.\n- [fortune](https://github.com/shlomif/fortune-mod) - Shows a random fortune.\n- [ponysay](https://github.com/erkin/ponysay) - Pony rewrite of cowsay.\n- [yosay](https://github.com/yeoman/yosay) - Like cowsay, but for yeoman.\n- [lolcat](https://github.com/busyloop/lolcat) - Outputs text in rainbow colors.\n- [terminaltexteffects](https://github.com/ChrisBuilds/terminaltexteffects) - Plays elaborate animations of text input.\n- [text-meme](https://github.com/beatfreaker/text-meme-cli) - Generate text memes.\n- [dankcli](https://github.com/sggts04/dankcli) - Add text to meme image templates.\n- [ricksay](https://github.com/roma-guru/ricksay) - Quotes from Rick and Morty.\n\n### Emoji\n\n- [emoj](https://github.com/sindresorhus/emoj) - Find relevant emoji from text on the command-line.\n- [emoji-finder](https://github.com/dematerializer/emoji-finder) - Quickly find and copy emoji to the clipboard via the command-line.\n- [oji](https://github.com/xxczaki/oji) - Interactive text emoji maker.\n\n## AI\nInclusion criteria are less strict for this fast-moving field.\n\n### Agents\n- [greywall](https://github.com/GreyhavenHQ/greywall) - Deny-by-default sandbox with filesystem and network isolation.\n- [agent-of-empires](https://github.com/njbrake/agent-of-empires) - Coding agent session manager via tmux and git worktrees.\n- [agent-deck](https://github.com/asheshgoplani/agent-deck) - Dashboard for managing multiple AI coding agent sessions.\n- [Sugar](https://github.com/roboticforce/sugar) - Autonomous agent that queues and executes tasks in the background.\n\n### LLM Interaction\n- [aye-chat](https://github.com/acrotron/aye-chat) - Workspace for editing, running commands, and chatting with your codebase.\n- [cmd-ai](https://github.com/BrodaNoel/cmd-ai) - Turns natural language into executable shell commands.\n\n## Other Resources\n\n- [awesome-cli-apps-in-a-csv](https://github.com/toolleeo/awesome-cli-apps-in-a-csv) - Extensive list of CLI apps.\n- [Terminal Trove](https://terminaltrove.com/) - List of CLI apps.\n- [awesome-shell](https://github.com/alebcay/awesome-shell#readme) – Command-line utilities and frameworks.\n- [terminals-are-sexy](https://github.com/k4m4/terminals-are-sexy#readme) – Terminal frameworks, plugins & resources.\n- [awesome-zsh-plugins](https://github.com/unixorn/awesome-zsh-plugins#readme) – ZSH frameworks, plugins, tutorials & themes.\n- [awesome-nodejs clis](https://github.com/sindresorhus/awesome-nodejs#command-line-apps) – Node.js modules and resources.\n- [awesome-git-addons](https://github.com/stevemao/awesome-git-addons#readme) - Addons that extend git cli.\n- [x-cmd](https://github.com/x-cmd/x-cmd) - Ecosystem of cli tools, featuring a wide array of improve core utils, AI access and more.\n\n## License\n\n[![CC0](https://licensebuttons.net/p/zero/1.0/88x31.png)](https://creativecommons.org/publicdomain/zero/1.0/)\n\nTo the extent possible under law, [Adam Garrett-Harris](https://twitter.com/agarrharr) has waived all copyright and related or neighboring rights to this work.\n"
  }
]