lvtd-llc/skills

rust-bevy-procedural-world-builder

Build and review Bevy procedural world generation with grid resources, deterministic seeds, reachability checks, chunk or room spawning, background generation boundaries, and gameplay-safe entity materialization.

First seen Jun 29, 2026

Installation

$ npx skills add lvtd-llc/skills --skill rust-bevy-procedural-world-builder

Summary

  • Build and review Bevy procedural world generation with grid resources, deterministic seeds, reachability checks, chunk or room spawning, background generation boundaries, and gameplay-safe entity materialization.
  • Use when creating tile maps, dungeon-like spaces, mining bases, or generated levels in Rust Bevy games.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from lvtd-llc/skills · top by installs.

npx skills add lvtd-llc/skills

Browse all from lvtd-llc/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
License LICENSE
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.1.0
LicenseMIT
CompatibilityCodex, Claude Code, and other Agent Skills-compatible clients.
Declared agents claude-code codex
More metadata
version
0.1.0
displayName
Rust Bevy Procedural World Builder
category
Rust
tags
rust,bevy,gamedev,procedural-generation,world-building

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,817 B
  • docs SUMMARY.md 358 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 39 installs

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

  1. Represent the world as data before spawning sprites or entities.
  2. Make randomness explicit with seeds and generation parameters.
  3. Validate constraints such as bounds, reachability, spawn safety, and resource

placement.

  1. Spawn Bevy entities from generated data in batches or chunks.
  2. Keep background generation isolated from Bevy world mutation.
  3. Profile generation and rendering separately before optimizing.

Read Next

Task Load
Add generated rooms, terrain, or bases guidelines.md, workflows/build-procedural-world.md
Review generation data structures references/procedural-world-patterns.md
Move expensive generation off the main thread references/procedural-world-patterns.md

Source Notes

Guidance is transformed and paraphrased from Herbert Wolverson, Advanced Hands-On Rust, especially Chapters 10 through 13 on building and optimizing a generated Mars-base game. Examples are original skeletons.