---
name: hashgraph-online/rust-turn-intent-systems
source: https://app.decimal.ai/s/hashgraph-online-rust-turn-intent-systems@1/SKILL.md
source_sha256: 6aa7e6e80b3d
---

# Rust Turn Intent Systems

Use this skill to make turn-based gameplay deterministic and easy to extend.
Separate decision systems from resolution systems: input and AI create intents;
movement, combat, inventory, and end-turn systems resolve them.

## Core Workflow

1. Define the allowed turn phases in one enum.
2. Run different system schedules or branches for input, player resolution,
   monster resolution, and terminal states.
3. Convert input and AI decisions into intent components or messages.
4. Resolve intents in shared systems so players and monsters use the same rules.
5. Remove or mark intents after processing.
6. Advance the turn state in one end-turn boundary.

## Read Next

Read `references/turn-intent-patterns.md` for phase design, intent messages,
ordering rules, and review checks.

## Source Notes

Guidance is transformed and paraphrased from *Hands-On Rust* Chapters 7, 8,
9, and 13 and from the official companion source repository. The patterns are
generalized for Rust ECS projects and do not require using Legion.