min-repro-builder

Scaffold minimal reproducible scenes for audio, rendering, and asset-loading bugs.

1|Updated Jan 6, 2026
One-click install
npx skills add https://github.com/DaFum/neurotoxic-game --skill min-repro-builder
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: min-repro-builder
Source: https://github.com/DaFum/neurotoxic-game/tree/main/.agents/skills/min-repro-builder
Command: npx skills add https://github.com/DaFum/neurotoxic-game --skill min-repro-builder

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Build minimal, reproducible repros inside the repo to isolate bugs in audio, assets, and rendering, enabling fast debugging sessions.

Core Features & Use Cases

  • Repro scaffolding: Create a tiny, shareable scene that reproduces the issue.
  • Asset reuse: Leverage existing src/assets and scenes to avoid introducing new files.
  • Observability: Use the included logger to structure repro logs for easy analysis.

Quick Start

Run the repro workflow to initialize a minimal scene and open the debug route.

Frequently Asked Questions about min-repro-builder

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

FAQPage Schema
How do I create a minimal reproducible bug environment inside my repo?

To create a minimal reproducible bug environment, scaffold a tiny, shareable scene within your repo that isolates the issue. This approach reuses existing src assets and scenes, avoiding new files while enabling fast debugging sessions across audio, rendering, and asset-loading.

What is the best way to isolate rendering and audio bugs for debugging?

The best way to isolate rendering and audio bugs is to scaffold a minimal reproduction route using existing assets. By launching a tiny scene via npm run dev, you can observe the specific issue in a controlled environment and log the output for analysis.

How do I structure logs when reproducing JavaScript bugs?

To structure logs when reproducing JavaScript bugs, use a dedicated logger module like logger.js within your minimal scene. This provides structured observability during the repro workflow, making the debug route's output easier to analyze for the specific issue.

Do I need existing src assets to scaffold a reproducible scene?

Yes, you need existing src assets and a minimal scene to scaffold a reproducible environment. The process leverages your current assets and scenes to avoid introducing new files, ensuring the reproduced bug accurately reflects the original codebase conditions.

Can I reproduce state and asset-loading issues without adding new files?

Yes, you can reproduce state and asset-loading issues without adding new files by reusing existing src/assets. The scaffolding process creates a tiny, shareable scene that leverages current resources to isolate the bug for quick debugging.

How do I launch a debug route to test a reproduced bug?

To launch a debug route to test a reproduced bug, run npm run dev after initializing the minimal scene. This starts the local development server and opens the isolated reproduction route so you can verify the audio or rendering issue.