Rust Roguelike Procgen AI
Use this skill to add procedural map variety and tactical AI without losing testability. Keep generators behind a common interface, validate generated maps, and make AI depend on what entities can perceive.
Core Workflow
- Define a map builder output type with map, starts, exits, and spawn points.
- Put each generator behind a shared trait or equivalent interface.
- Validate reachability and spawn legality before using a generated map.
- Add a small output harness or snapshot path for generator inspection.
- Implement FOV and pathfinding through map traits or adapter functions.
- Gate monster knowledge through visibility or memory rules.
Read Next
Read references/procgen-ai-patterns.md for generator interfaces, FOV,
pathfinding, map memory, AI checks, and test harness patterns.
Source Notes
Guidance is transformed and paraphrased from Hands-On Rust Chapters 9, 10,
11, and 12 and from the official companion source repository. Current crate
context was checked against bracket-lib docs, including its pathfinding and
geometry support.
Source: hashgraph-online/awesome-codex-plugins → plugins/LVTD-LLC/skills/skills/rust-roguelike-procgen-ai/SKILL.md