Agent skill

visual-novel

Build a visual novel: a branching script, character and background display, a text box with choices, save/load, backlog, and skip/auto. Use for a VN, dating sim, or branching story game.

gamedev-skillsgithub.com/gamedev-skillsGitHub ↗
claude-codeclinecodexcursorcopilotwindsurfApache-2.0
Install
npx skills add gamedev-skills/awesome-gamedev-agent-skills --skill visual-novel --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Requires: Engine-agnostic design patterns; snippets are pseudocode (port to your engine)
Path: skills/genres/visual-novel/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 406
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Visual Novel A playbook for visual novels — the branching script, the presentation (text box, characters, backgrounds), choices, and the quality-of-life systems players expect (save anywhere, backlog, skip, auto). This is a **compositional** skill: it drives a dialogue engine and a UI layer. It does not re-teach the dialogue engine or UI nodes; it defines the script model and the player conveniences that make a VN pleasant to read. ## When to use - Use when the game is **mostly reading branching text** with character art and backgrounds: visual novel, dating sim, branching interactive fiction, story-choice game. - Use when designing a choice/route structure, story flags, or VN conveniences (backlog, skip, auto-advance, save-anywhere). **When *not* to use:** dialogue as one feature inside a larger game → `rpg` consuming `dialogue-systems`. Card/board play → other genres. For the branching-script engine itself, use `dialogue-systems` (Ink / Yarn Spinner). ## Core loop **Read a line → advance → (at a branch) make a choice → the story branches on flags/choices → read on → reach an ending.** The "game" is the *shape of the branching* and whether choices feel consequential; everything

What's inside
Steps it walks through
  1. When to use
  2. Core loop
  3. Must-have systems
  4. Design knobs
  5. Patterns
  6. 1. Script as data the engine walks
  7. 2. Typewriter reveal + advance (skippable)
  8. 3. Choice sets a flag that branches later content
  9. Pitfalls / failure modes
  10. Composition (build it from these skills)
  11. References
Ships with 1 file
  • references/script-and-flow.md
More from awesome-gamedev-agent-skills
All skills →
About this skill
What does the visual-novel skill do?

Build a visual novel: a branching script, character and background display, a text box with choices, save/load, backlog, and skip/auto. Use for a VN, dating sim, or branching story game.

How do I install it?

Run `npx skills add gamedev-skills/awesome-gamedev-agent-skills --skill visual-novel --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From gamedev-skills/awesome-gamedev-agent-skills, a repository with 406 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going