원클릭으로
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