Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill gameplay-sql명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| 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.