Browse, install, and manage agent skills and context bundles from the BRV Hub community marketplace
BRV Hub is a community marketplace for pre-built agent skills and context bundles. Browse and install content from the official registry without authentication, using the interactive TUI (/hub) or the standalone CLI (brv hub).
Reusable workflow instructions installed into agent-specific skill directories. Require selecting a target agent during installation.Installed file(s): SKILL.md
Context Bundles
Curated knowledge packs installed directly to your project’s context tree (.brv/context-tree/). No agent selection needed.Installed files vary by bundle (e.g., context.md)
In the ByteRover TUI, type /hub to open the interactive hub browser. This provides a searchable, scrollable interface for browsing, previewing, and installing entries.
# Install a skill for Claude Codebrv hub install byterover-review --agent "Claude Code"# Install a skill for Cursorbrv hub install byterover-plan --agent Cursor# Install a bundle (no agent needed)brv hub install typescript-kickstart# Install from a specific registrybrv hub install byterover-review --registry myco --agent "Claude Code"
Agent skills require the --agent flag. If omitted, the CLI returns an error. Context bundles install directly without needing an agent.
When you install an agent skill, files are written to an agent-specific directory:
Agent
Install Path
Scope
Claude Code
.claude/skills/byterover/<skill-id>/
Project
Cursor
.cursor/skills/byterover/<skill-id>/
Project
Codex
.codex/skills/byterover/<skill-id>/
Global (~)
GitHub Copilot
.github/skills/byterover/<skill-id>/
Project
Project scope — Files are written relative to your project root directory.
Global scope — Files are written relative to your home directory (~).
Each installed skill includes a SKILL.md file containing the full skill definition with workflow phases and instructions.Context bundles install to .brv/context-tree/ in your project directory.