/graph-retrieval
Exposes graph-based retrieval as a tool capability via `query_graph`. Reads normalized graph store files, builds a query-relevant subgraph, and returns LLM-friendly semantic triples with replayable evidence metadata.
$ npx -y skills add study8677/repobrain --skill graph-retrieval --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/graph-retrieval
Context preview
The summary Claude sees to decide when to auto-load this skill.
Exposes graph-based retrieval as a tool capability via `query_graph`. Reads normalized graph store files, builds a query-relevant subgraph, and returns LLM-friendly semantic triples with replayable evidence metadata.
SKILL.md
graph-retrieval.SKILL.mdname: graph-retrieval description: Exposes graph-based retrieval as a tool capability via `query_graph`. Reads normalized graph store files, builds a query-relevant subgraph, and returns LLM-friendly semantic triples with replayable evidence metadata.
Graph Retrieval Skill
Purpose
Expose graph-based retrieval as a tool capability without breaking the existing RepoBrain execution chain.
Tool
- `query_graph(query, max_hops=2, workspace='.')`
Behavior
- Reads normalized graph store files under `.repobrain/graph/`.
- Builds a query-relevant subgraph.
- Returns LLM-friendly semantic triples plus replayable evidence metadata.
Output Contract
{
"summary": "...",
"triples": [["subject", "predicate", "object"]],
"evidence": [{"retrieval_id": "...", "tool_name": "..."}],
"nodes": [...],
"edges": [...]
}Design Notes
- Keeps tool-driven and replayable architecture.
- Does not bypass pipeline.
- Intended for structure/dependency questions and context enrichment.
🧠 RepoBrain (formerly Antigravity) — Give your repo a brain. ChatGPT for your codebase: works in Claude Code, Cursor, Codex, Windsurf & more.
Other skills on repobrain.
- /agent-repo-init
Bootstraps a new multi-agent repository from the RepoBrain template via `init_agent_repo`. Supports quick scaffold and full runtime profile setup including MCP toggle, swarm preference, sandbox type, and optional git init. LLM configuration is handled later by rb-setup.
Open skill - /knowledge-layer
High-level deployment wrapper over RepoBrain core with graph-first knowledge injection and all-file support. Exposes `refresh_filesystem` and `ask_filesystem` for building and querying the knowledge graph.
Open skill - /research
Performs deep research on a topic via `deep_research`. Simulates a multi-step research process and returns a comprehensive research result as a string.
Open skill - /agent-repo-init
One-click initialization of a multi-agent repository from the RepoBrain template. Use this skill when users want to scaffold a new project quickly (`quick` mode) or with runtime defaults (`full` mode) including MCP toggle, swarm preference context, sandbox type, and optional git
Open skill

