Master Reversi strategy game AI
reversi-masterskillsetup L1★1,989
edison7009/EchoBird ↗What it does
Play Reversi/Othello using strategic move prioritization
Best for
Playing competitive Reversi/Othello games by prioritizing corner control, stable edges, and mobility to outmaneuver opponents.
Inputs
- · Current board state (8x8 grid)
- · List of valid moves available
Outputs
- · Recommended move coordinates (row, col)
- · Strategic reasoning (corner vs edge vs center)
Preconditions
- · Valid Reversi board state with empty/black/white pieces
- · Legal move set computed externally
- · Turn is player's (not opponent's)
Failure modes
- · Invalid move coordinates returned if board state corrupted
- · No legal moves available (pass condition)
- · Endgame strategy (maximize pieces) conflicts with mobility
- · Corner accessibility blocked by opponent pieces
Trust signals
- · Five-tier move prioritization (corners > edges > avoid C/X-squares > frontier > mobility)
- · X-squares and C-squares anti-patterns explicitly listed
- · Stable edge chains strategy documented