Swe Cli Skills logo

Swe Cli Skills

Organization
SylphAI-Inc
swe-cli-skills

Senior engineer CLI expertise for AI agents — workflows, safety guardrails, gotchas, and anti-patterns across cloud, IaC, containers, databases, dev tools, and platforms

Overview

PublisherSylphAI-Inc
Repositoryskills
Skill nameswe-cli-skills
Stars
110
Forks
10
Bundled files
34
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 34 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by SylphAI-Inc on GitHub. Read the source before you install it.

Installation

Install the Swe Cli Skills AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/SylphAI-Inc/skills.git /tmp/skills
mkdir -p .claude/skills
cp -r /tmp/skills/skills/swe-cli-skills .claude/skills/swe-cli-skills
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Swe Cli Skills in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Swe Cli Skills on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Swe Cli Skills is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

SWE CLI Skills

man pages for machines — Your agent knows the commands. We teach it the workflows.

This skill provides expert-level CLI knowledge for the tools software engineers use daily. Each guide encodes senior engineer judgment — not reference docs, but operational workflows, safety guardrails, flag gotchas, error recovery, and composition patterns.

When to Use This Skill

Load a specific CLI guide when:

  • You need to run complex CLI operations (multi-step workflows, piped commands)
  • You're unsure about flag ordering, safety checks, or non-interactive alternatives
  • You encounter a CLI error and need the actual fix (not generic advice)
  • You need to compose multiple CLIs together (e.g., aws → jq → xargs)

Available CLI Guides

Guides are organized by category. Read the category index or jump directly to a CLI guide.

☁️ Cloud (skills/cloud/)

CLIFileUse For
AWS CLIskills/cloud/aws.mdS3 filter ordering, IAM auth, EC2 queries, JMESPath, Lambda
gcloudskills/cloud/gcloud.mdGCP project/config management, GKE, Cloud Run, IAM, logging
Azure CLIskills/cloud/azure.mdResource groups, AKS, App Service, RBAC, ARM deployments

🏗️ Infrastructure as Code (skills/iac/)

CLIFileUse For
Terraformskills/iac/terraform.mdState management, import workflows, safe apply, workspace migration

🐳 Containers & Orchestration (skills/containers/)

CLIFileUse For
Dockerskills/containers/docker.mdBuild cache, multi-stage builds, compose v2, cleanup, debugging
kubectlskills/containers/kubectl.mdContext safety, namespace gotchas, rollout/rollback, pod debugging
Helmskills/containers/helm.mdValues precedence, upgrade resets, rollback, chart debugging

🔀 Git & Version Control (skills/git-vcs/)

CLIFileUse For
Gitskills/git-vcs/git.mdNon-interactive alternatives, rebase, merge, conflict resolution
GitHub CLIskills/git-vcs/gh.mdPR workflows, issue management, releases, Actions

🛠️ Dev Tools (skills/dev-tools/)

CLIFileUse For
jqskills/dev-tools/jq.mdJSON filtering, select vs map, array ops, shell variable injection
sedskills/dev-tools/sed.mdStream editing, in-place substitution, macOS vs Linux portability
makeskills/dev-tools/make.mdBuild automation, Makefile patterns, phony targets, variables
curlskills/dev-tools/curl.mdAuth headers, multipart uploads, API debugging, response handling
SSH/SCPskills/dev-tools/ssh.mdTunneling, ProxyJump, key management, agent-safe patterns

📦 Package Managers (skills/package-managers/)

CLIFileUse For
npmskills/package-managers/npm.mdDependency management, scripts, workspaces, publishing, lockfiles
pip & uvskills/package-managers/pip-uv.mdVirtual envs, dependency resolution, uv acceleration, constraints

🗄️ Databases (skills/databases/)

CLIFileUse For
psqlskills/databases/psql.mdConnection strings, non-interactive queries, backup/restore, meta-commands
redis-cliskills/databases/redis.mdConnection, key operations, debugging, persistence, cluster management

🚀 Platforms & Services (skills/platforms/)

CLIFileUse For
Stripe CLIskills/platforms/stripe.mdWebhook testing, API debugging, fixtures, payment flow testing
Sentry CLIskills/platforms/sentry.mdRelease management, sourcemap uploads, deploy tracking
Vercel CLIskills/platforms/vercel.mdDeployments, env vars, serverless functions, domains
Firebase CLIskills/platforms/firebase.mdHosting deploy, Firestore rules, auth emulators, Cloud Functions
flyctlskills/platforms/fly.mdApp deployment, scaling, secrets, regions, Machines API

Quick Reference: Critical Gotchas

These are the highest-impact mistakes — check the full guide for details:

  • AWS S3: --exclude must come BEFORE --include (left-to-right evaluation)
  • Terraform: Always terraform plan after terraform import (detects drift)
  • Docker: Copy dependency files before source code (cache optimization)
  • kubectl: ALWAYS verify kubectl config current-context before apply
  • Helm: helm upgrade RESETS values not specified — use --reuse-values
  • Git: Use git --no-pager and --no-edit flags (agents have no TTY)
  • SSH: Use BatchMode=yes to prevent password prompt hangs
  • psql: Always use -v ON_ERROR_STOP=1 in scripts (psql continues after errors by default)
  • Redis: NEVER use KEYS * in production — use SCAN instead (blocks server)
  • gcloud: Always set --project explicitly in automation (don't rely on default project)
  • npm: Use npm ci in CI/CD, not npm install (ensures reproducible builds)
  • sed: sed -i behaves differently on macOS vs Linux — use -i.bak for portability
  • make: Indentation MUST be real tabs, not spaces (invisible error)
  • Stripe: stripe listen webhook secret changes on every restart — update your env var
  • Sentry: Sourcemap --url-prefix must exactly match browser request paths
  • Vercel: vercel without --prod deploys to preview, not production
  • Firebase: firebase deploy without --only deploys EVERYTHING

Token Efficiency

This skill uses a category sub-index architecture. Instead of loading all CLI guides at once:

  1. Read this root SKILL.md to find the right category
  2. Read only the specific CLI guide you need (e.g., skills/cloud/aws.md)

This keeps token usage minimal — load one guide (~200-400 lines) instead of the entire library.

Each Guide Contains

  1. Setup & Auth — Installation and credential configuration
  2. Core Workflows — The 20% of commands covering 80% of usage
  3. Flag Gotchas — Ordering traps, version quirks, surprising defaults
  4. Error Patterns — Real error messages → real fixes
  5. Anti-Patterns — "Never do X because Y" with safe alternatives
  6. Composability — How to pipe this CLI with others
  7. Agent Constraints — Non-interactive alternatives, TTY workarounds

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Swe Cli Skills AI skill do?

Senior engineer CLI expertise for AI agents — workflows, safety guardrails, gotchas, and anti-patterns across cloud, IaC, containers, databases, dev tools, and platforms

Why use Swe Cli Skills on TypingMind?

Because you install it once and use it with any model. Swe Cli Skills is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Swe Cli Skills in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/SylphAI-Inc/skills/tree/main/skills/swe-cli-skills. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Swe Cli Skills?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Swe Cli Skills?

As many as you like. As long as a model supports skills, you can use Swe Cli Skills with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Swe Cli Skills AI skill free?

It is published on GitHub by SylphAI-Inc. Check the repository for licensing terms. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇