CLI Tools

Command line utilities

Showing 8041-8064 of 8162 skills
nikaakin

Project Context for AI Assistants

by nikaakin

```

Automation 2 3mo ago
saizeng

PDF Skill

by saizeng

Always use run_python_script

CLI Tools 0 3mo ago
blackhaj

vscode

by blackhaj

VS Code integration for viewing diffs and comparing files. Use when showing file differences to the user.

CLI Tools 0 4mo ago
vanman2024

cobra-patterns

by vanman2024

Production-ready Cobra CLI patterns including command structure, flags (local and persistent), nested commands, PreRun/PostRun hooks, argument validation, and initialization patterns used by kubectl and hugo. Use when building Go CLIs, implementing Cobra commands, creating nested command structures, managing flags, validating arguments, or when user mentions Cobra, CLI development, command-line tools, kubectl patterns, or Go CLI frameworks.

CLI Tools 0 6mo ago
yldgio

gh-cli

by yldgio

GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.

CLI Tools 0 4mo ago
sanool

mood

by sanool

When the user shows signs of emotional distress during coding — including frustration ("this stupid code"), self-doubt ("am I too dumb"), anxiety about deadlines, giving up ("I quit"), negative self-talk, or expressing hopelessness. Also use when the user explicitly asks for emotional support, wants to vent, or mentions feeling stressed, anxious, or overwhelmed.

CLI Tools 0 4mo ago
avesh-h

fdk-file-fetcher

by avesh-h

Fetch one source file from any installed package import path and either return code in chat mode or create a local file in create mode.

CLI Tools 0 3mo ago
ylt

git-rebase-squash

by ylt

Clean up git commit history by squashing/reorganizing commits using non-interactive rebase. Use when user asks to "tidy up commits", "squash commits", "clean up history", "rebase", or wants N specific commits total. This skill handles the mechanics of rebasing in non-interactive environments where git rebase -i won't work.

CLI Tools 0 3mo ago
markab21

voluum-setup-install

by markab21

Install and configure voluum-cli on Linux/macOS, with Windows support via WSL.

Auth 0 3mo ago
mike-north

ofocus

by mike-north

Interact with OmniFocus on macOS via CLI. Manage tasks, projects, folders, tags, and perspectives using the ofocus command-line tool.

Automation 0 3mo ago
Barneyjm

query

by Barneyjm

"Search for places using natural language with Camino AI's location intelligence API. Returns relevant results with coordinates, distances, and metadata. Use when you need to find real-world locations like restaurants, shops, landmarks, or any point of interest."

CLI Tools 0 3mo ago
Schlsn

home-assistant-manager

by Schlsn

Expert-level Home Assistant configuration management with efficient deployment workflows (git and rapid scp iteration), remote CLI access via SSH and hass-cli, automation verification protocols, log analysis, reload vs restart optimization, and comprehensive Lovelace dashboard management for tablet-optimized UIs. Includes template patterns, card types, debugging strategies, and real-world examples.

CLI Tools 0 3mo ago
squirrel289

auditing-backlog-dependency-graph

by squirrel289

'Perform comprehensive dependency analysis and health checks on work item backlog. Use when asked to "audit backlog", "check work item dependencies", "find missing dependencies", "analyze work items", or before major releases to validate backlog integrity. Includes bidirectional dependency analysis, orphan detection, and consistency checks.'

CLI Tools 0 3mo ago
NikiSkaarup

btca-ask

by NikiSkaarup

Ask before using btca for up-to-date sources and docs.

Agents 0 4mo ago
roderik

bellwether

by roderik

Bring the current PR to a mergeable state: CI green, all review comments resolved, no merge conflicts. Self-contained — watches CI, fixes issues, watches again until merge-ready. Use when the user wants to keep a PR green, auto-fix CI, resolve review comments, or says "get this merged".

CLI Tools 0 2mo ago
vanman2024

Commander.js Patterns

by vanman2024

Commander.js CLI framework patterns including Command class, options, arguments, nested subcommands, and Option class usage. Use when building Node.js CLIs, implementing Commander.js commands, creating TypeScript CLI tools, adding command options/arguments, or when user mentions Commander.js, CLI commands, command options, or nested subcommands.

CLI Tools 0 6mo ago
zhongjis

nix

by zhongjis

Runs packages temporarily, creates isolated shell environments, and evaluates Nix expressions. Use when executing tools without installing, debugging derivations, or working with nixpkgs.

CLI Tools 0 3mo ago
broomva

alkosto-wait-optimizer

by broomva

Estimate optimal waiting time for Alkosto's "every 25/50 customers" promotion using either checkout-flow observations or winner announcement timestamps. Use when the user asks how long to wait, wants a probability-based cutoff, or needs a fast in-store decision rule with uncertainty handling.

CLI Tools 0 3mo ago
ddaanet

when

by ddaanet

Recall behavioral knowledge from project decisions. Triggers on "when to do X", situational patterns, or decision content for recognized situations. Invoke with "/when <trigger>".

CLI Tools 0 3mo ago
Fibrous-Finance

balance

by Fibrous-Finance

Check wallet balances (native and ERC-20 tokens) on Base, Citrea, HyperEVM, or Monad.

Agents 0 3mo ago
hsiangjenli

skill-creator

by hsiangjenli

Guide for creating effective skills. Use when users want to create a new skill or update an existing skill that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.

CLI Tools 0 3mo ago
apurin

audit-skill

by apurin

Audits Claude Code skills for safety risks — invisible Unicode attacks, dangerous shell patterns, prompt injection, and more.

CLI Tools 0 3mo ago
getfoundry

unbrowse

by getfoundry

Reverse-engineer any website into reusable API skills. Capture network traffic, discover endpoints, learn API patterns, execute learned skills, and manage auth for gated sites. Use when someone wants to scrape structured data from a website, discover hidden APIs, automate web interactions, or bypass the need for official API documentation.

Auth 0 3mo ago
utooland

utoo

by utooland

npm 包管理工具,用来安装 npm 包、生成依赖树、执行前端项目命令等。 强制性规则(MANDATORY): 当项目中存在 package.json 文件时,你 MUST(必须)使用此 skill 来执行所有 npm/pnpm/yarn 相关操作。 严格禁止直接使用以下命令: - ❌ 禁止: pnpm test → ✅ 使用: Skill(skill: "utoo", args: "test") - ❌ 禁止: pnpm install → ✅ 使用: Skill(skill: "utoo", args: "install") - ❌ 禁止: pnpm run <script> → ✅ 使用: Skill(skill: "utoo", args: "run <script>") - ❌ 禁止: npm install <pkg> → ✅ 使用: Skill(skill: "utoo", args: "install <pkg>") - ❌ 禁止: yarn add <pkg> → ✅ 使用: Skill(skill: "utoo", args: "install <pkg>") 涵盖操作(必须通过此 skill): 安装依赖、更新依赖、卸载依赖、运行脚本(test/build/dev等)、查看包信息、管理项目、执行任何 package.json 中的 scripts。 调用方式: 始终使用 Skill 工具调用,不要直接使用 Bash 执行 pnpm/npm/yarn 命令。

Automation 0 4mo ago