- Intelligent local curation with
brv curate(executed by your coding agent via your prompts) - Push organized context to remote space
- Agentic search with
brv query(executed by your coding agent via your prompt)
Start with Your Local Context
We start by creating a local context file namedsecurity.md. In a real scenario, you could already have many of these files in your codebase.
This is the content of the security.md file:
Curate to Your Context Tree
Copy this prompt and paste it into your coding agent’s chat (e.g., Cursor, Claude Code, etc.):compliance or code_style) and creating an appropriate topic structure.
Review Your Changes
Before pushing, check what was added:Push to Remote Context Space
From the terminal, run:Query with Agentic Search
Copy this prompt and paste it into your coding agent’s chat:What just happened?
Step 1: Agent Executes Curate Command Your coding agent readsecurity.md and executed brv curate with the content. ByteRover then processed it for intelligent organization.
Step 2: Intelligent Curation
ByteRover automatically analyzed the content and:
- Detected relevant domains (compliance/security)
- Organized content hierarchically into the context tree
- Created
context.mdfiles in.brv/context-tree/ - Added relations to connect related topics
brv status showed the newly added topics and subtopics, allowing you to verify the organization before pushing.
Step 4: Push to Remote
Running brv push synced your organized context tree structure to ByteRover’s remote space, making it available to your team.
Step 5: Agentic Search
When you queried with brv query, ByteRover:
- Reasoned about what you were asking for
- Searched the context tree using strategic patterns
- Followed relations between topics for comprehensive context
- Synthesized a coherent answer with citations
But why does this matter?
ByteRover acts as your intelligent context engineer—it understands meaning, not just keywords. Try one of these next to see the full power of ByteRover:Curate context inline
Instead of starting from a file, copy this prompt and paste it into your coding agent’s chat:- Detects which domains your knowledge belongs to
- Prevents duplication by searching existing context
- Creates hierarchical structure with explicit relations
- Understands semantic meaning, not just text similarity
Curate multiple files
Copy this prompt and paste it into your coding agent’s chat:brv curate with their combined context. ByteRover will then intelligently organize everything into the appropriate domains and topics.
You can have more interesting workflows
Combine curation and querying to build on team knowledge: Copy this prompt and paste it into your coding agent’s chat:brv query, then add your new knowledge using brv curate with proper organization and relations.