dot_config/opencode/skills/exploring-cli-tools/SKILL.md
Explores CLI tools using --help flags and man pages to understand capabilities, discover subcommands, and find specific options. Use when investigating how a command-line tool works, checking if a tool supports a feature, or finding the correct syntax for a command.
npx skillsauth add rio/dotfiles exploring-cli-toolsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
<tool> --help or <tool> -h for overview<tool> <subcommand> --helpman <tool>grep to find specific flagsTools vary in conventions:
--help or -h (most common)help as subcommand: git help commit-? (Windows-originated tools)--help, -h, man, --versionProvide:
Task: Find how to create a git branch
git branch --help
Result: git branch <name> or git checkout -b <name>
Task: Check if curl follows redirects
curl --help all | grep -i redirect
Result: -L, --location follows redirects
Task: Explore nested subcommands (kubectl)
kubectl --help
kubectl get --help
documentation
Compact the current conversation into a handoff document for another agent to pick up.
development
Create new agent skills with proper structure, progressive disclosure, and bundled resources. Use when user wants to create, write, or build a new skill.
testing
Interview the user relentlessly about a plan or design until reaching shared understanding, resolving each branch of the decision tree. Use when user wants to stress-test a plan, get grilled on their design, or mentions "grill me".
development
Retrieves Kubernetes container logs with various patterns including multi-container pods, previous container logs, init containers, and label-based aggregation. Use when checking application logs, debugging crashes, or analyzing container output.