Skip to main content
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).

Content Types

Agent Skills

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)

Quick Start

1

Browse available content

brv hub list
2

Install a skill

brv hub install byterover-review --agent "Claude Code"
3

Install a bundle

brv hub install typescript-kickstart

Interactive Browser

In the ByteRover TUI, type /hub to open the interactive hub browser. This provides a searchable, scrollable interface for browsing, previewing, and installing entries.

Browsing Flow

  1. List view — All entries displayed in a searchable list. Type to filter by ID, name, description, tags, or author.
  2. Detail view — Select an entry to see its full description, use cases, metadata (tags, category, author, license), and file list.
  3. Agent selection — For agent skills, choose a target agent (Claude Code, Cursor, Codex, or GitHub Copilot).
  4. Install — The skill or bundle downloads and installs to the appropriate directory.

Keybinds

KeyAction
EnterInstall the selected entry
oOpen entry in browser
EscGo back / cancel

CLI Commands

brv hub list

List all available skills and bundles from configured registries.
brv hub list [OPTIONS]
FlagDescriptionDefault
-f, --format <format>Output format: text or jsontext
The text output displays a table with columns: ID, Type, Version, Description, Category, and Registry (shown when multiple registries are configured).
Use --format json for machine-readable output in scripts and CI pipelines.

brv hub install <id>

Install a skill or bundle by its entry ID.
brv hub install <id> [OPTIONS]
Argument / FlagDescriptionRequired
idEntry ID to installYes
-a, --agent <agent>Target agent for skill installFor skills
-r, --registry <name>Registry to install fromNo
-f, --format <format>Output format: text or jsonNo
Supported agents: Claude Code, Cursor, Codex, Github Copilot
# Install a skill for Claude Code
brv hub install byterover-review --agent "Claude Code"

# Install a skill for Cursor
brv hub install byterover-plan --agent Cursor

# Install a bundle (no agent needed)
brv hub install typescript-kickstart

# Install from a specific registry
brv 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.

Agent Install Paths

When you install an agent skill, files are written to an agent-specific directory:
AgentInstall PathScope
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.

Available Skills

The official registry includes 10 agent skills covering the full development lifecycle:
IDNameCategoryDescription
byterover-reviewCode Reviewcode-qualityReview code changes against stored conventions, patterns, architecture decisions, and security standards
byterover-planContext-Aware PlanningproductivityCreate structured implementation plans informed by existing knowledge using goal-backward analysis
byterover-exploreCodebase ExplorationanalysisSystematically explore a codebase and curate findings into ByteRover’s context tree
byterover-auditKnowledge AuditanalysisAudit knowledge freshness and coverage, identify stale entries and gaps, and provide remediation commands
byterover-milestoneMilestone PlanningproductivityDefine project milestones with goals, scoped requirements, phased roadmaps, and implementation decisions
byterover-executePhase ExecutionproductivityExecute a phase plan task by task with verification, atomic commits, and progress tracking
byterover-onboardProject OnboardinglearningInteractive knowledge-driven project onboarding with structured overview and gap identification
byterover-progressProject ProgressproductivityCheck project progress, resume paused work, and route to the next action intelligently
byterover-shipShip & HandoffproductivityComplete milestones with retrospective and archival, or pause work with resumable handoff context
byterover-debugSystematic DebuggingdebuggingInvestigate bugs using scientific method with persistent knowledge and hypothesis-driven analysis

Available Bundles

Context bundles provide curated knowledge packs for specific domains:
IDNameCategoryDescription
typescript-kickstartTypeScript KickstartproductivityContext bundle for bootstrapping TypeScript projects with best practices
Run brv hub list or browse hub.byterover.dev for the latest catalog. New skills and bundles are added regularly.

Next Steps