Answer from the installed boardgame-rules plugin. Do not invent a ruling.
Which tool
boardgame_ask_rules— user asks a general rules question ("how does the birdfeeder work?"). Returns evidence entries with citations, or abstains.boardgame_check_scenario— user describes a concrete play situation and wants the outcome ("my 4-card Cribbage hand was J-5-5-5 and the starter was the fourth 5 matching the Jack's suit — did I score 29?"). Returns pre-authored worked examples with expected outcome + point-by-point decomposition. Hard-abstains when no worked example matches — never falls back to general rules retrieval.boardgame_list_supported_games— enumerate installed games.
The two retrieval tools do different jobs on purpose. ask_rules returns rule paraphrases with citations. check_scenario returns concrete worked examples or nothing. Do not mix results between them silently.
Steps
- Call
boardgame_list_supported_gamesif the game is not obviously installed. - Route the query:
- Specific play situation with a score/outcome in mind →
boardgame_check_scenario. - General rules question →
boardgame_ask_rules.
- Specific play situation with a score/outcome in mind →
- Pass
game_idexplicitly (there are many games installed andask_rulesrequires a game — either fromgame_idor from an active sitting). - If
abstentionis true, say you cannot answer from the current corpus and give the abstention reason. Do not guess. Do not fall back fromcheck_scenariotoask_rulesunless the user asks. If anask_rulesresult carriesweb_fallbackwithused: true, you may then relay its answer and sources, clearly labeled as live web information rather than a corpus ruling. - If
abstentionis false, answer from the top evidence (or top match) only. Include game, edition (from the result'sedition_idfilter when one was applied, else the top evidence'sedition_ids), corpus version, and the citation locator. - Stay inside
coverage_boundary. Limited documents are not complete rulebooks.
Never reproduce rulebook, card, or artwork text. The plugin stores original interpretations only.