← getcli

Registry

14 CLI tools available

AWS CLIaws

Official CLI for Amazon Web Services — manage AWS resources

agent-friendly--json
getcli install aws --yesvia brew
$ aws s3 ls$ aws ec2 describe-instances --output json$ aws sts get-caller-identity

Docker CLIdocker

Build, run, and manage containers and images

agent-friendly--json
getcli install docker --yesvia brew
$ docker ps$ docker build -t myapp .$ docker compose up -d$ docker images --format json

Firebase CLIfirebase

Manage Firebase projects — hosting, functions, Firestore, and auth

agent-friendly--json
getcli install firebase --yesvia npm
$ firebase projects:list$ firebase deploy --only hosting$ firebase emulators:start

Fly.io CLIfly

Deploy and manage apps on Fly.io's global platform

agent-friendly--json
getcli install fly --yesvia brew
$ fly apps list$ fly deploy$ fly status --json

GitHub CLIgh

Official CLI for GitHub — manage repos, PRs, issues, and more

agent-friendly--json
getcli install github --yesvia brew
$ gh repo list$ gh issue list$ gh pr create --title "fix: typo" --body "Fixed a typo"

kubectlkubectl

Kubernetes CLI — manage clusters, deployments, and services

agent-friendly--json
getcli install kubectl --yesvia brew
$ kubectl get pods -A$ kubectl apply -f deployment.yaml$ kubectl logs -f deployment/myapp$ kubectl get nodes -o json

Netlify CLInetlify

Deploy sites and manage Netlify services from the command line

agent-friendly--json
getcli install netlify --yesvia npm
$ netlify deploy --prod$ netlify sites:list --json$ netlify dev

Railway CLIrailway

Deploy and manage projects on Railway — databases, services, and more

agent-friendly--json
getcli install railway --yesvia brew
$ railway status$ railway up$ railway logs

Stripe CLIstripe

Official CLI for Stripe — test webhooks, manage resources, and trigger events

agent-friendly--json
getcli install stripe --yesvia brew
$ stripe listen --forward-to localhost:3000/webhook$ stripe trigger payment_intent.succeeded$ stripe resources list

Supabase CLIsupabase

Manage Supabase projects — database, auth, storage, and edge functions

agent-friendly--json
getcli install supabase --yesvia brew
$ supabase projects list$ supabase db push$ supabase functions deploy my-function

Terraform CLIterraform

Infrastructure as Code — provision and manage cloud resources declaratively

agent-friendly--json
getcli install terraform --yesvia brew
$ terraform init$ terraform plan -out=plan.tfplan$ terraform apply plan.tfplan$ terraform state list

Turso CLIturso

CLI for Turso — the edge SQLite database built on libSQL

agent-friendly--json
getcli install turso --yesvia brew
$ turso db list$ turso db create my-db$ turso db shell my-db

Vercel CLIvercel

Deploy and manage Vercel projects from the command line

agent-friendly--json
getcli install vercel --yesvia npm
$ vercel deploy$ vercel env ls$ vercel domains ls

Cloudflare Wranglerwrangler

CLI for Cloudflare Workers — develop, test, and deploy serverless functions

agent-friendly
getcli install wrangler --yesvia npm
$ wrangler init my-project$ wrangler deploy$ wrangler dev