home / skills / a5c-ai / babysitter / procedural-generation
This skill generates procedural content for games or simulations using deterministic algorithms to create varied, replayable levels.
npx playbooks add skill a5c-ai/babysitter --skill procedural-generationReview the files below or copy the command above to add this skill to your agents.
---
name: procedural-generation
description: Procedural level generation skill for PCG algorithms.
allowed-tools: Read, Grep, Write, Bash, Edit, Glob, WebFetch
---
# Procedural Generation Skill
Procedural content generation.
This skill provides a focused toolkit for procedural level generation (PCG) aimed at game and simulation workflows. It exposes JavaScript-first primitives and patterns to create deterministic, resumable, and testable content pipelines. The skill is designed for integration into agentic orchestration systems, enabling automated generation, validation, and iteration of levels and environmental content.
The skill offers generators, modulers, and constraint-checkers that produce maps, rooms, item placements, and narrative hooks using seeded randomness for determinism. It includes stateful orchestration utilities so long-running generation tasks can pause, resume, and be replayed exactly, supporting debugging and CI-style validation. Outputs are serializable JSON artifacts and hooks for post-processing, evaluation, and metrics collection.
Is generation deterministic?
Yes — all generators accept seeds and produce reproducible outputs so runs can be replayed exactly.
Can long-running generation jobs be paused and resumed?
Yes — the skill provides state snapshot and resume utilities so orchestration can be deterministic and resumable.