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.
Scanned 9/5/2026
Install to Claude Code
npx -y skills add study8677/repobrain --skill graph-retrieval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Graph Retrieval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/study8677-graph-retrieval-repobrain)More formats (shields.io, HTML) on the badges page.
---
name: 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
```json
{
"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.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!