MUST consult before running ANY bit command. Do NOT guess bit commands from memory. This skill tells you the right command, correct syntax, subcommands, and flags.
A lightweight skill that provides Claude Code with Bit CLI command reference using progressive disclosure.
The skill uses a two-level approach to minimize token usage:
bit <command> --help for anything not coveredNo bash scripts, no permission prompts, minimal context usage.
mkdir -p ~/.claude/skills/bit-cli
curl -fsL https://raw.githubusercontent.com/teambit/bit/master/contrib/claude-skill-bit-cli/SKILL.md \
-o ~/.claude/skills/bit-cli/SKILL.md
curl -fsL https://raw.githubusercontent.com/teambit/bit/master/contrib/claude-skill-bit-cli/CLI_REFERENCE.md \
-o ~/.claude/skills/bit-cli/CLI_REFERENCE.md
mkdir -p ~/.claude/skills/bit-cli && cd ~/.claude/skills/bit-cli && curl -fsLO https://raw.githubusercontent.com/teambit/bit/master/contrib/claude-skill-bit-cli/SKILL.md && curl -fsLO https://raw.githubusercontent.com/teambit/bit/master/contrib/claude-skill-bit-cli/CLI_REFERENCE.md
bit cli generate --skill commandsbit cli generate --skill referencebit --help for more details| Scenario | Tokens Used |
| ----------------------- | ----------------- |
| Skill metadata (always) | ~100 |
| Command lookup | ~800 |
| Need reference details | ~800 + ~2000 |
| Edge case | Uses bit --help |
cd ~/.claude/skills/bit-cli
curl -fsLO https://raw.githubusercontent.com/teambit/bit/master/contrib/claude-skill-bit-cli/SKILL.md
curl -fsLO https://raw.githubusercontent.com/teambit/bit/master/contrib/claude-skill-bit-cli/CLI_REFERENCE.md
The skill files are auto-generated from the Bit CLI:
# Generate command list (SKILL.md body)
bit cli generate --skill commands
# Generate command reference (CLI_REFERENCE.md)
bit cli generate --skill reference
For a more comprehensive solution with real-time command discovery, consider using the Bit MCP server instead:
bit mcp-server setup claude-code
The MCP server provides dynamic access to all commands but requires more resources.
Search and analyze your own session logs (older/parent conversations) using jq.
Notion API for creating and managing pages, databases, and blocks.
Transcribe audio via OpenAI Audio Transcriptions API (Whisper).
Delegate coding tasks to Codex, Claude Code, or Pi agents via background process. Use when: (1) building/creating new features or apps, (2) reviewing PRs (spawn in temp dir), (3) refactoring large codebases, (4) iterative coding that needs file exploration. NOT for: simple one-liner fixes (just edit), reading code (use read tool), thread-bound ACP harness requests in chat (for example spawn/run Codex or Claude Code in a Discord thread; use sessions_spawn with runtime:"acp"), or any work in ~/clawd workspace (never spawn agents here). Claude Code: use --print --permission-mode bypassPermissions (no PTY). Codex/Pi/OpenCode: pty:true required.
Query Google Places API (New) via the goplaces CLI for text search, place details, resolve, and reviews. Use for human-friendly place lookup or JSON output for scripts.
OpenProse VM skill pack. Activate on any `prose` command, .prose files, or OpenProse mentions; orchestrates multi-agent workflows.
Category:developer