ワンクリックで
usage
How to use the CLI interface. Use this skill when interacting with the tool as an end user.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
How to use the CLI interface. Use this skill when interacting with the tool as an end user.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Sharp bits and gotchas for sending GIFs and scrolling text to the iPIXEL LED cap
Use whenever creating, editing, renaming, or deleting any file under .claude/skills/, .claude/agents/, .agents/skills/, or .codex/agents/. Teaches the dual-tool Claude/Codex layout and reminds to run `make sync-agent-config`.
Convert PRDs to prd.json format for the Ralph autonomous agent system. Use when you have an existing PRD and need to convert it to Ralph's JSON format.
| name | usage |
| description | How to use the CLI interface. Use this skill when interacting with the tool as an end user. |
This skill teaches you how to use the CLI interface provided by this project.
pip install bluetooth-cap
Or install from source:
git clone https://github.com/Miyamura80/CLI-Template.git
cd CLI-Template
uv sync
# Show help and all available commands
uv run bluecap --help
# Run a command
uv run bluecap greet Alice
# Scaffold a new command
uv run bluecap init my_command --desc "Does something"
Global flags go before the subcommand:
| Flag | Short | Description |
|---|---|---|
--verbose | -v | Increase output verbosity |
--quiet | -q | Suppress non-essential output |
--debug | Show full tracebacks on error | |
--format | -f | Output format: table, json, plain |
--dry-run | Preview actions without executing | |
--version | -V | Print version and exit |
# JSON output
uv run bluecap --format json config show
# Preview without executing
uv run bluecap --dry-run greet Bob
# Detailed output
uv run bluecap --verbose greet Alice
# Manage configuration
uv run bluecap config show
uv run bluecap config get llm_config.cache_enabled
uv run bluecap config set logging.verbose false
# Install completions for your shell
uv run bluecap --install-completion
# Show completion script
uv run bluecap --show-completion