Deep rock galactic board game
Skill mike623/agent-skills/skills/deep-rock-galactic-board-game
npx -y skills add mike623/agent-skills --skill deep-rock-galactic-board-gameAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Public-safe DRG board-game rules assistant using a user-built local index for lookups, citations, setup reminders, and expansion questions.
SKILL.md
2.4 KB, as published. Nobody here has run it
Deep Rock Galactic Board Game Assistant
Use this skill to answer Deep Rock Galactic: The Board Game rules and play-aid questions from the user's own local reference documents.
Public-safe constraints:
- Do not quote or reproduce official rulebook text beyond short snippets returned by the local lookup tool.
- Do not commit PDFs, extracted rulebook chunks, generated indexes, private filesystem paths, tokens, or profile state.
- Treat the scripts as generic tooling: the user must provide
--source-dir,DRG_SOURCE_DIR, or a local config copied fromtemplates/sources.example.json. - Prefer concise answers with source/page/heading citations. If a rule is uncertain, say so and point to the retrieved citation instead of inventing wording.
- For generic/non-DRG board-game agents from BGG links or arbitrary PDFs, use
boardgame-rag-botinstead.
Quick setup
cd skills/deep-rock-galactic-board-game
python3 scripts/build_drg_index.py \
--source-dir /path/to/your/drg-board-game-notes \
--index-dir /tmp/drg-index
python3 scripts/drg_lookup.py --index-dir /tmp/drg-index "line of sight reaction attack"
You can also set:
export DRG_SOURCE_DIR=/path/to/your/drg-board-game-notes
export DRG_INDEX_DIR=/tmp/drg-index
Or copy templates/sources.example.json to a local, gitignored config and pass --sources-config.
Lookup workflow
- Ensure an index exists. If not, ask for or infer the local source directory and run
scripts/build_drg_index.py. - Run 1-3 focused lookup queries with
scripts/drg_lookup.py --index-dir <dir> "<query>". - Synthesize the answer using retrieved page/source/heading citations.
- Keep quotations short. Paraphrase rules and cite the local source.
- For expansion questions, use
--sourceto narrow results when useful (for example--source "Space Rig").
Script notes
build_drg_index.pyindexes Markdown/text files intochunks.jsonlandmanifest.json.drg_lookup.pyperforms deterministic BM25-style lexical search and returns JSON.- Lookup output hides local file paths by default; use
--include-pathonly for private debugging. - Generated
.drg-index/,chunks.jsonl, andmanifest.jsonare ignored by this skill pack's.gitignore.