用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill gameplay-sql命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | gameplay-sql |
| description | >- Use when this capability is needed. |
Test the game through database tools.
Announce: "I'm using gameplay-sql to test via database."
| Tool | Purpose |
|---|---|
game_start | Start a new game |
game_state | See current question/guess/candidates |
game_turn | Answer yes/no/not_sure |
game_submit | Submit correct place (give up) |
game_find_place | Search places by name |
game_summary | Review completed session (history + result) |
game_start(description: "A medieval castle on a hilltop in Poland")
Returns: session_id, initial question, top candidates
game_state(session_id: "abc123...")
Returns: current status, question or guess, top candidates
game_turn(session_id: "abc123...", answer: "yes")
game_turn(session_id: "abc123...", answer: "no")
game_turn(session_id: "abc123...", answer: "not_sure")
Returns: new state after answer
game_turn(session_id: "abc123...", answer: "yes")
Game ends with status: won
First, find the correct place:
game_find_place(name: "Wawel")
Then submit it:
game_submit(session_id: "abc123...", osm_id: "way/123456")
> game_start(description: "A famous tower in Paris")
SESSION: 7f3a2b1c-...
status | question | candidate_count
---------+-----------------------------------+----------------
active | Is this place in Western Europe? | 15
TOP CANDIDATES:
place | confidence
----------------+-----------
Eiffel Tower | 45%
Notre-Dame | 22%
Arc de Triomphe | 12%
> game_turn(session_id: "7f3a2b1c-...", answer: "yes")
status | question | guess
-------+-----------------------------+------
active | Is it a metal structure? |
TOP CANDIDATES:
place | confidence
----------------+-----------
Eiffel Tower | 68%
Notre-Dame | 15%
> game_turn(session_id: "7f3a2b1c-...", answer: "yes")
status | question | guess | guess_confidence
-------+----------+--------------+-----------------
active | | Eiffel Tower | 89%
> game_turn(session_id: "7f3a2b1c-...", answer: "yes")
status |
-------+
won |
active - Game in progresswon - Correct guess confirmedended - Game over (gave up or max turns)yes - Confirm question or guessno - Deny question or guessnot_sure - Skip question (only for questions, not guesses)game_summary(session_id: "abc123...")
Returns: description, result (won/lost), place name, trait count, and full question history.
Converted and distributed by TomeVault — claim your Tome and manage your conversions.