rust-bevy-procedural-world-builder
Installation
SKILL.md
Rust Bevy Procedural World Builder
Use this skill to turn procedural generation into a testable data pipeline: generate data first, validate it, then materialize entities safely in Bevy.
Core Workflow
- Represent the world as data before spawning sprites or entities.
- Make randomness explicit with seeds and generation parameters.
- Validate constraints such as bounds, reachability, spawn safety, and resource placement.
- Spawn Bevy entities from generated data in batches or chunks.
- Keep background generation isolated from Bevy world mutation.
- Profile generation and rendering separately before optimizing.