---
name: Graph Skills Retriever
slug: graph-skills-retriever-2
category: AI Engineering
description: Graph Skills Retriever finds a bounded bundle of relevant external skills from a local skills library. Use it when a task needs specialized knowledge or references and you want to avoid manually browsing the full catalog.
github: "https://github.com/davidliuk/graph-of-skills/tree/main/evaluation/skillsbench/graphskills_assets/bootstrap_skill"
language: Python
stars: 205
forks: 26
install: "npx degit https://github.com/davidliuk/graph-of-skills/tree/main/evaluation/skillsbench/graphskills_assets/bootstrap_skill ~/.claude/skills/bootstrap_skill"
installs_to: ~/.claude/skills/bootstrap_skill
source_path: evaluation/skillsbench/graphskills_assets/bootstrap_skill/SKILL.md
collection_size: 3
category_size: 3101
collection_url: "https://dirskills.com/collections/davidliuk/graph-of-skills"
added: 2026-09-05T05:29:12.576Z
last_synced: 2026-09-05T05:29:12.576Z
canonical_url: "https://dirskills.com/skills/graph-skills-retriever-2"
---

# Graph Skills Retriever

Graph Skills Retriever finds a bounded bundle of relevant external skills from a local skills library. Use it when a task needs specialized knowledge or references and you want to avoid manually browsing the full catalog.

**Install:**

```bash
npx degit https://github.com/davidliuk/graph-of-skills/tree/main/evaluation/skillsbench/graphskills_assets/bootstrap_skill ~/.claude/skills/bootstrap_skill
```

## README

# Purpose

Use this skill when the task seems to require specialized domain knowledge, scripts, or references that are not already obvious from the current context.

The full skill library is stored outside the auto-loaded harness context at:

`/opt/graphskills/library`

Do not manually scan that whole directory first. Retrieve a focused bundle.

# Retrieve Relevant Skills

Run:

```bash
graphskills-query "short description of the task or current subproblem"
```

Useful flags:

```bash
graphskills-query "debug spring boot jakarta migration build errors" --top-n 5 --seed-top-k 4 --max-context-chars 9000
graphskills-query "extract text from receipts into xlsx" --json
```

# How To Use The Results

1. Start with a short task-level query.
2. Read the returned skill bundle.
3. Follow the retrieved skill instructions and inspect any referenced files in `/opt/graphskills/library/<skill-name>/`.
4. Re-query with a narrower subproblem if needed.

# Guidance

- Prefer 1-2 retrieval calls over manually searching the entire library.
- The returned `Source:` path points to the canonical `SKILL.md` in `/opt/graphskills/library`.
- If you need scripts or references from a retrieved skill, inspect that skill directory directly.
- Reuse the graph retriever whenever the task shifts to a new subproblem.
