スキル一覧に戻る
rio

exploring-cli-tools

by rio

33🍴 9📅 2026年1月23日
GitHubで見るManusで実行

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

  1. Run <tool> --help or <tool> -h for overview
  2. For subcommands: <tool> <subcommand> --help
  3. If help is insufficient: man <tool>
  4. For extensive help output: pipe through grep to find specific flags

Help flag conventions

Tools vary in conventions:

  • --help or -h (most common)
  • help as 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:

  1. Answer: Direct response to what was asked
  2. Syntax: Exact command with required flags
  3. 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

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

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

レビュー

💬

レビュー機能は近日公開予定です