← Back to list

exploring-cli-tools
by rio
⭐ 33🍴 9📅 Jan 23, 2026
SKILL.md
name: exploring-cli-tools description: 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.
Exploring CLI Tools
Workflow
- Run
<tool> --helpor<tool> -hfor overview - For subcommands:
<tool> <subcommand> --help - If help is insufficient:
man <tool> - For extensive help output: pipe through
grepto find specific flags
Help flag conventions
Tools vary in conventions:
--helpor-h(most common)helpas subcommand:git help commit-?(Windows-originated tools)- No flags (some tools show help when run without arguments)
Constraints
- Only use read-only exploration:
--help,-h,man,--version - Do NOT execute commands that modify state
- If help requires authentication/setup, report this limitation
Response format
Provide:
- Answer: Direct response to what was asked
- Syntax: Exact command with required flags
- Caveats: Version-specific or platform-specific notes (if any)
Examples
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
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon