Purpose
Use this skill instead of manually browsing a large skill library.
It assumes the environment already provides:
- the
graphskills-query CLI
- a GoS workspace or a prebuilt workspace configured through
GOS_WORKING_DIR and optionally GOS_PREBUILT_WORKING_DIR
If that wiring is missing, read references/container-layout.md.
Retrieve Relevant Skills
Construct the query yourself. Do not rely on the retrieval system to infer missing task structure for you.
A good query should usually include only the retrieval-critical fields that are actually known:
- the concrete goal
- the main artifact or file format
- the key operation or algorithm
- the required library, API, protocol, or tool name if known
- the verifier-critical constraint or invariant
- the task object being edited, parsed, generated, optimized, or validated
Keep it short, but make it specific. Prefer a compact noun/verb phrase over a long paragraph.
Good patterns:
update embedded xlsx in pptx and preserve formulas
parallel tfidf indexing with processpoolexecutor deterministic ranking
civ6 district adjacency exact calculator for verifier
parse branching dialogue script into graph export
Bad patterns:
please solve this task for me
I need help with a benchmark task
fix the project and make everything work
Run:
graphskills-query "short specific query with goal + artifact + operation + constraint"
Useful flags:
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
graphskills-query "review paper references and improve the draft" --workspace /opt/graphskills/runtime
How To Use The Results
- Start with a short task-level query.
- Read the returned bundle carefully and check the retrieval status.
- If the result says
Retrieval Status: NO_SKILL_HIT, explicitly state that no relevant skill was retrieved and continue on a no-skill path. Do not imply that you used a retrieved skill.
- If the result says
Retrieval Status: SKILL_HIT, inspect the task requirements, tests, and verifier first. Write down the minimum acceptance requirements before implementing.
- Use the exact
Source: paths returned by retrieval. Do not reconstruct paths from the skill name or scan the whole skill library if a Source: path is already available.
- Follow the retrieved skill instructions and inspect the referenced
Source: paths when you need scripts or references from a specific skill.
- Use the skill bundle to narrow the solution space. Prefer the shortest path to verifier pass, and prefer adapting an existing script or interface over inventing a broader replacement.
- Re-query with a narrower subproblem if the task shifts.
Guidance
- Prefer 1-2 targeted retrieval calls over scanning the whole library.
- Keep the query focused on the current task or subproblem, not the whole conversation history.
- Query content priority:
goal > artifact/format > operation/API > verifier constraint.
- Include filenames, formats, protocols, or library names when they are part of the task signal.
- Include exact invariants when they matter, e.g.
preserve formulas, deterministic ranking, exact total, match verifier.
- Do not include benchmark names, generic filler, or conversation meta-text unless they are truly task-relevant.
- If the result is too broad, narrow the query and reduce
--top-n.
- If the result is empty, retry with simpler keywords before giving up.
- If no skill is retrieved after retrying, say so explicitly and solve without pretending a skill was used.
- After a skill hit, take the shortest path to verifier pass and satisfy only the verifier's minimum requirement first.
- Use the exact
Source: paths already returned before searching elsewhere.
- Do not add extra features, side outputs, UI panels, or refactors unless the task explicitly requires them.
- Treat retrieved skills as a constraint on implementation choices, not permission to explore more branches.
- Use
--json only when you need structured fields like scores or edge evidence; plain text is usually enough.
1---2name: graph-skills-retriever3description: Retrieve a bounded bundle of relevant external skills from a prebuilt Graph of Skills workspace. Use when the task may need specialized skills, scripts, or references that are not already obvious from current context, especially in containerized eval environments that mount a prebuilt GoS graph.4---56# Purpose78Use this skill instead of manually browsing a large skill library.910It assumes the environment already provides:1112- the `graphskills-query` CLI13- a GoS workspace or a prebuilt workspace configured through `GOS_WORKING_DIR` and optionally `GOS_PREBUILT_WORKING_DIR`1415If that wiring is missing, read `references/container-layout.md`.1617# Retrieve Relevant Skills1819Construct the query yourself. Do not rely on the retrieval system to infer missing task structure for you.2021A good query should usually include only the retrieval-critical fields that are actually known:2223- the concrete goal24- the main artifact or file format25- the key operation or algorithm26- the required library, API, protocol, or tool name if known27- the verifier-critical constraint or invariant28- the task object being edited, parsed, generated, optimized, or validated2930Keep it short, but make it specific. Prefer a compact noun/verb phrase over a long paragraph.3132Good patterns:3334```text35update embedded xlsx in pptx and preserve formulas36parallel tfidf indexing with processpoolexecutor deterministic ranking37civ6 district adjacency exact calculator for verifier38parse branching dialogue script into graph export39```4041Bad patterns:4243```text44please solve this task for me45I need help with a benchmark task46fix the project and make everything work47```4849Run:5051```bash52graphskills-query "short specific query with goal + artifact + operation + constraint"53```5455Useful flags:5657```bash58graphskills-query "debug spring boot jakarta migration build errors" --top-n 5 --seed-top-k 4 --max-context-chars 900059graphskills-query "extract text from receipts into xlsx" --json60graphskills-query "review paper references and improve the draft" --workspace /opt/graphskills/runtime61```6263# How To Use The Results64651. Start with a short task-level query.662. Read the returned bundle carefully and check the retrieval status.673. If the result says `Retrieval Status: NO_SKILL_HIT`, explicitly state that no relevant skill was retrieved and continue on a no-skill path. Do not imply that you used a retrieved skill.684. If the result says `Retrieval Status: SKILL_HIT`, inspect the task requirements, tests, and verifier first. Write down the minimum acceptance requirements before implementing.695. Use the exact `Source:` paths returned by retrieval. Do not reconstruct paths from the skill name or scan the whole skill library if a `Source:` path is already available.706. Follow the retrieved skill instructions and inspect the referenced `Source:` paths when you need scripts or references from a specific skill.717. Use the skill bundle to narrow the solution space. Prefer the shortest path to verifier pass, and prefer adapting an existing script or interface over inventing a broader replacement.728. Re-query with a narrower subproblem if the task shifts.7374# Guidance7576- Prefer 1-2 targeted retrieval calls over scanning the whole library.77- Keep the query focused on the current task or subproblem, not the whole conversation history.78- Query content priority: `goal > artifact/format > operation/API > verifier constraint`.79- Include filenames, formats, protocols, or library names when they are part of the task signal.80- Include exact invariants when they matter, e.g. `preserve formulas`, `deterministic ranking`, `exact total`, `match verifier`.81- Do not include benchmark names, generic filler, or conversation meta-text unless they are truly task-relevant.82- If the result is too broad, narrow the query and reduce `--top-n`.83- If the result is empty, retry with simpler keywords before giving up.84- If no skill is retrieved after retrying, say so explicitly and solve without pretending a skill was used.85- After a skill hit, take the shortest path to verifier pass and satisfy only the verifier's minimum requirement first.86- Use the exact `Source:` paths already returned before searching elsewhere.87- Do not add extra features, side outputs, UI panels, or refactors unless the task explicitly requires them.88- Treat retrieved skills as a constraint on implementation choices, not permission to explore more branches.89- Use `--json` only when you need structured fields like scores or edge evidence; plain text is usually enough.