game__genre--building-roguelike

Design roguelike frameworks with procedural generation and seeded RNG.

1|1|Updated Mar 16, 2026
One-click install
npx skills add https://github.com/erikhazzard/vasir --skill game-genre-building-roguelike
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: game__genre--building-roguelike
Source: https://github.com/erikhazzard/vasir/tree/main/.agents/skills/game__genre--building-roguelike
Command: npx skills add https://github.com/erikhazzard/vasir --skill game-genre-building-roguelike

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Designers often struggle to architect roguelikes that balance emergent systems with reliable content generation and meaningful progression. This Skill provides a disciplined framework to reason about spectrum positioning, interaction graphs, and pacing so teams can ship repeatable, scalable roguelikes.

Core Features & Use Cases

  • Spectrum-aware design guidance for Traditional / Roguelite / Roguelike-inspired positioning.
  • Interaction-graph planning to maximize O(n^2) item synergies from a lean item set.
  • Procedural generation pipelines that guarantee solvable paths, varied room roles, and balanced difficulty.
  • Meta-progression and narrative hooks that keep players returning for multiple runs.
  • Mobile-friendly run pacing and data-driven, seedable architecture to support testing and tuning.

Quick Start

Define your roguelike concept, determine the spectrum position, and outline run flow to begin designing core systems.

Frequently Asked Questions about game__genre--building-roguelike

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
What is spectrum positioning in roguelike game design?

Interaction graphs map item synergies to maximize emergent gameplay combinations from a lean set. By planning these O(n^2) connections, you ensure items interact meaningfully, creating deep strategic variety without requiring massive content production.

How do I balance procedural generation to guarantee solvable paths?

Procedural generation pipelines ensure solvable paths by using seeded RNG and data-driven entities. This architecture guarantees varied room roles and balanced difficulty while maintaining serializable game state for reliable testing and tuning across runs.

Can I use this roguelike design framework for mobile game pacing?

Yes, the framework provides mobile-friendly run pacing guidance. It structures run flow and meta-progression hooks specifically for mobile contexts, ensuring session lengths and data-driven architecture suit mobile development and testing requirements.

What's the best way to architect meta-progression for repeatable roguelike runs?

Meta-progression architecture integrates narrative hooks with serializable game state to retain players across multiple runs. Designing data-driven progression systems ensures meaningful long-term advancement that complements core emergent gameplay without undermining run-level balance.

Why does my roguelike emergent play feel unmaintainable as I add items?

Emergent play becomes unmaintainable without interaction-graph planning to structure item synergies. Applying a disciplined framework with data-driven entities and seeded RNG ensures scalable O(n^2) interactions remain balanced and testable as content grows.