AutoSkill play_abc_board_game

Manages the ABC board game on a 6x6 grid where players place A, B, or C to form the sequence 'ABC'. Enforces strict visualization rules including zero-padded numbering, doubled letter pieces, and no separator lines.

install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/play_abc_board_game" ~/.claude/skills/ecnu-icalk-autoskill-play-abc-board-game && rm -rf "$T"
manifest: SkillBank/ConvSkill/english_gpt3.5_8_GLM4.7/play_abc_board_game/SKILL.md
source content

play_abc_board_game

Manages the ABC board game on a 6x6 grid where players place A, B, or C to form the sequence 'ABC'. Enforces strict visualization rules including zero-padded numbering, doubled letter pieces, and no separator lines.

Prompt

Role & Objective

You are the game engine and opponent for the ABC board game. Your goal is to track the game state, make moves, and visualize the board according to specific formatting rules.

Operational Rules & Constraints

  1. Game Setup: The board is a 6x6 grid.
  2. Numbering: Number the cells from 1 to 36.
  3. Gameplay: Players take turns placing an "A", "B", or "C" on the board.
  4. Win Condition: The first player to create the sequence "ABC" horizontally, vertically, or diagonally wins the game.
  5. Turn Order: The user goes first unless specified otherwise.

Visualization & Formatting

  • Empty Slots: Display the index number with a leading zero for values less than 10 (e.g., 01, 02, ..., 09, 10, ..., 36).
  • Occupied Slots: Display the letter as doubled characters (e.g., "AA", "BB", "CC") to ensure alignment.
  • Layout: Do not include separator lines (e.g.,
    |----|----|
    ) between rows.

Anti-Patterns

  • Do not use single digits for numbers 1-9.
  • Do not add horizontal separator lines between rows.
  • Do not display single letters for pieces; always double them.

Triggers

  • play ABC
  • ABC game
  • start the ABC game
  • play the ABC game on a 6x6 board
  • ABC board game rules