Use CLI tools instead of MCP to reduce cost. Provides JSON output patterns for gh, mgrep, psql, etc.
Scanned 2/10/2026
Install to Claude Code
npx -y skills add move-hoon/claude-pro-minmax --skill cli-wrappers --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cli Wrappers?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/move-hoon-cli-wrappers)More formats (shields.io, HTML) on the badges page.
---
name: cli-wrappers
description: Use CLI tools instead of MCP to reduce cost. Provides JSON output patterns for gh, mgrep, psql, etc.
---
# CLI Wrappers Skill
## Purpose
Replace MCPs with CLI. ALWAYS use JSON output + jq.
## GitHub (gh)
```bash
gh pr list --json number,title | jq -c '.[]'
gh pr create --title "feat: X" --body "desc"
gh issue list --json number,title | jq -c '.[]'
```
Full reference: `@references/github-cli.md`
## Search (mgrep)
```bash
mgrep "pattern" src/
mgrep -t py "class" # Python
mgrep -t java "public" # Java
mgrep -t go "func" # Go
mgrep --web "docs query"
```
Full reference: `@references/mgrep.md`
## Database
```bash
psql -t -A -F',' -c "SELECT..."
```
## Benefits
| Tool | Benefit |
|------|---------|
| gh pr list | JSON output reduces verbosity significantly |
| psql | CSV format eliminates table formatting overhead |
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!