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 scope: global (home dir) or project (current dir)
No (default: project)
-f, --format <format>
Output format: text or json
No
Supported agents: Any agent with a Skill connector — including Claude Code, Cursor, Codex, Github Copilot, Windsurf, Gemini CLI, Kilo Code, Roo Code, Amp, Kiro, Junie, and more. See Agent Connectors for the full list.
Copy
# 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
.agents/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.
BRV Hub is open to community contributions. You can submit your own agent skills or context bundles to the marketplace by contributing to the BRV Hub repository.
Fork the repository
Add your skill in skills/<id>/ or bundle in bundles/<id>/ with the required files (manifest.json, README.md, and a content file)
Validate locally with npm run validate
Open a Pull Request — automated checks run on every PR, followed by a maintainer review
See the full contributing guide and manifest spec in the repository for directory structure, naming rules, required fields, and examples.