I've been building CLI tools for Claude Code for six months. Tested over 50. These 10 fundamentally changed how I work.

Every tool: one-line install. Copy, paste, done.
Why CLI Over MCP?
Claude Code lives in the terminal. CLI tools live there too. No middleware, no overhead, no wasted tokens.
Playwright ran a direct comparison: CLI vs. MCP. CLI was faster and consumed 90,000 fewer tokens.
- CLI Anything — Build CLIs for Any Open-Source Tool Points at any open-source project and auto-generates a CLI wrapper. I've used it on Blender, OBS, Inkscape. Now Claude Code controls them directly.
pip install cli-anything
cli-anything init
GitHub: https://github.com/HKUDS/CLI-Anything
- Notebook LM CLI — My Daily Driver Claude Code struggles with video. Notebook LM doesn't. Throw a YouTube link at it—heavy processing runs on Google's servers (free), output comes back to Claude Code. Podcasts, slides, quizzes, flashcards, all terminal-automated.
pip install notebooklm-py
GitHub: https://github.com/teng-lin/notebooklm-py
- Stripe CLI — Kill the Dashboard Stripe's UI is painful. Stripe CLI eliminates it. Claude Code knows Stripe deeply—tell it what you want, it calls the CLI automatically.
scoop install stripe # Windows
brew install stripe/stripe-cli/stripe # macOS
GitHub: https://github.com/stripe/stripe-cli
- FFmpeg — One Tool for All Media Compress, convert, extract, subtitle. Claude Code writes the commands itself—give it a goal, it looks up the docs and tunes parameters.
sudo apt install ffmpeg
GitHub: https://github.com/FFmpeg/FFmpeg
- GitHub CLI — Non-Negotiable Commits, pushes, PRs, branches—all terminal-native. No reason not to use this if you're pushing to GitHub.
brew install gh
GitHub: https://github.com/cli/cli
- Vercel CLI — One-Command Deploys Full deployment flow from the terminal. Vercel ships official Claude Code Skills: Deploy, Browser Automation, UI Design.
npm install -g vercel
GitHub: https://github.com/vercel/vercel
- Supabase CLI — Open-Source Backend Database + auth in one tool. Free tier is generous. Runs fully locally too.
npm install -g supabase
GitHub: https://github.com/supabase/cli
- Playwright CLI — Browser Automation Claude Code launches its own Chrome, scrapes data, fills forms, takes screenshots. Parallel tabs, fully automated.
npm install -g playwright
playwright install
GitHub: https://github.com/EvoLinkAI/playwright-cli-skill-for-claude-code
- LLMFit — Pick the Right Local Model Ollama has hundreds of models, 9 versions each. LLMFit scans your hardware and recommends the best fit.
pip install llmfit
llmfit scan
GitHub: https://github.com/AlexsJones/llmfit
- GWS — All of Google Workspace, Terminalized Email, docs, sheets, calendar—Claude Code controls it all. Google Armor protection keeps it secure.
npm install -g @googleworkspace/cli
gws auth login
GitHub: https://github.com/googleworkspace/cli
Where to Start
My daily stack is just 5: Notebook LM CLI, GitHub CLI, Vercel CLI, Playwright CLI, FFmpeg. Start with GitHub CLI + Vercel CLI if you're new.
Installation ≠ mastery. There's a curve. But past it, the productivity gain is exponential.
The ecosystem is pivoting to CLI. Early movers are already ahead.
Now is the time.
Found this useful? Leave a reaction—it helps other devs discover it.
Top comments (0)