$npx -y skills add davidliuk/graph-of-skills --skill bootstrap_skillRetrieve a bounded bundle of relevant external skills from the local Graph Skills library instead of manually browsing hundreds of skills.
| 1 | # Purpose |
| 2 | |
| 3 | Use this skill when the task seems to require specialized domain knowledge, scripts, or references that are not already obvious from the current context. |
| 4 | |
| 5 | The full skill library is stored outside the auto-loaded harness context at: |
| 6 | |
| 7 | `/opt/graphskills/library` |
| 8 | |
| 9 | Do not manually scan that whole directory first. Retrieve a focused bundle. |
| 10 | |
| 11 | # Retrieve Relevant Skills |
| 12 | |
| 13 | Run: |
| 14 | |
| 15 | ```bash |
| 16 | graphskills-query "short description of the task or current subproblem" |
| 17 | ``` |
| 18 | |
| 19 | Useful flags: |
| 20 | |
| 21 | ```bash |
| 22 | graphskills-query "debug spring boot jakarta migration build errors" --top-n 5 --seed-top-k 4 --max-context-chars 9000 |
| 23 | graphskills-query "extract text from receipts into xlsx" --json |
| 24 | ``` |
| 25 | |
| 26 | # How To Use The Results |
| 27 | |
| 28 | 1. Start with a short task-level query. |
| 29 | 2. Read the returned skill bundle. |
| 30 | 3. Follow the retrieved skill instructions and inspect any referenced files in `/opt/graphskills/library/<skill-name>/`. |
| 31 | 4. Re-query with a narrower subproblem if needed. |
| 32 | |
| 33 | # Guidance |
| 34 | |
| 35 | - Prefer 1-2 retrieval calls over manually searching the entire library. |
| 36 | - The returned `Source:` path points to the canonical `SKILL.md` in `/opt/graphskills/library`. |
| 37 | - If you need scripts or references from a retrieved skill, inspect that skill directory directly. |
| 38 | - Reuse the graph retriever whenever the task shifts to a new subproblem. |