thedivergentai/gd-agentic-skills

godot-genre-visual-novel

Expert blueprint for visual novels (Doki Doki Literature Club, Phoenix Wright, Steins;Gate) focusing on branching narratives, dialogue systems, choice consequences, rollback mechanics, and persistent flags.

First seen Feb 10, 2026

Installation

$ npx skills add thedivergentai/gd-agentic-skills --skill godot-genre-visual-novel

Summary

  • Expert blueprint for visual novels (Doki Doki Literature Club, Phoenix Wright, Steins;Gate) focusing on branching narratives, dialogue systems, choice consequences, rollback mechanics, and persistent flags.
  • Use when building story-driven, choice-based, or dating sim games.
  • Keywords visual novel, dialogue system, branching narrative, typewriter effect, rollback, bbcode, RichTextLabel.

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 thedivergentai/gd-agentic-skills · top by installs.

npx skills add thedivergentai/gd-agentic-skills

Browse all from thedivergentai/gd-agentic-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 Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

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

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 12,414 B
  • docs SUMMARY.md 3,990 B

History

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

SKILL.md

Genre: Visual Novel

Branching narratives, meaningful choices, and quality-of-life features define visual novels.

Core Loop

  1. Read → dialogue / narration
  2. Decide → choice moment
  3. Branch → flag or path change
  4. Consequence → immediate line variation and/or lasting flag
  5. Conclude → one of multiple endings

NEVER Do (Expert Anti-Patterns)

Narrative & Flow

  • NEVER create the "Illusion of Choice" exclusively; strictly provide Immediate Dialogue Variations or Flag Changes even if the plot converges later.
  • NEVER skip mandatory QoL features; strictly implement Auto-Play, Fast-Forward, and Backlog/History for replayability.
  • NEVER display "Walls of Text"; strictly limit dialogue boxes to 3-4 Lines max to avoid intimidating the reader.
  • NEVER hardcode dialogue text inside GDScripts; strictly store narrative scripts in External Files (JSON, CSV, or custom Resources) for iteration.
  • NEVER ignore the Rollback mechanic; strictly maintain a history stack so players can undo miss-clicks or reread missed lines.

Technical & UI

  • NEVER use plain text for emotional beats; strictly use RichTextLabel BBCode (e.g., [shake], [wave]) to add visual weight.
  • NEVER parse massive narrative files on the main thread; strictly use ResourceLoader.loadthreadedrequest() to prevent transition stutters.
  • NEVER use standard Strings for frequently accessed game flags; strictly use StringName (&"met_alice") for faster dictionary lookups.
  • NEVER use process for letter-by-letter animation; strictly use a Tween on visibleratio for smooth, frame-independent reveals.
  • NEVER neglect character Z-ordering; strictly ensure the active speaker is brought to the front for visual clarity.
  • NEVER use zindex for Control node priority if input handling is required; strictly use moveto_front() to ensure draw order and input propagation match.
  • NEVER use absolute pixel positioning for character sprites; strictly rely on Anchors & Percent-based Offsets for responsive scaling.
  • NEVER allow text animations to continue when the player skips; strictly set visible_ratio to 1.0 instantly on input.
  • NEVER leave orphaned character sprites; strictly use queue_free() when actors exit the stage to prevent memory leaks.
  • NEVER mutate flags before snapshotting rollback state — always push history, then apply the choice.

🛠 Expert Components (scripts/)

MANDATORY before implementing undo / branching / presentation:
1. [vnrollbackmanager.gd](scripts/vnrollbackmanager.gd) — history stack (flags/backgrounds/index)
2. [storymanager.gd](scripts/storymanager.gd) — flag-aware dialog orchestration
3. [dialogueui.gd](scripts/dialogueui.gd) — typewriter + choice UI
4. [visualnovelpatterns.gd](scripts/visualnovelpatterns.gd) — BBCode, choice filtering, sprite layering

Catalog (deduped)

  • [storymanager.gd](scripts/storymanager.gd) - Flag-aware dialog orchestrator with branching logic and character state persistence.
  • [dialogueui.gd](scripts/dialogueui.gd) - Presentation layer: typewriter tweens (visible_ratio) and choice-window generation.
  • [vnrollbackmanager.gd](scripts/vnrollbackmanager.gd) - History stack for state rollback (flags/backgrounds/index).
  • [visualnovelpatterns.gd](scripts/visualnovelpatterns.gd) - Reusable BBCode effects, choice filtering by flags, sprite layering.

Decision Tree: Script Storage vs Plugin

Approach When to choose Notes
JSON / CSV scripts Writers edit outside Godot; rapid iteration Load via FileAccess or threaded ResourceLoader; validate schema in StoryManager
Custom Resource dialogue trees Designer Inspector editing, typed fields Peer godot-resource-data-patterns; MANDATORY [storymanager.gd](scripts/storymanager.gd)
Dialogic (plugin) Full VN suite (timelines, characters, themes) with editor tooling Prefer when shipping a large route graph fast; still keep rollback + flag discipline. Skip building a second StoryManager if Dialogic already owns timelines
Build lightweight custom Tiny kinetic novel / learning project Use scripts in this skill; do not re-stub StoryManager inline

Do not paste incomplete JSON StoryManager demos — implement from MANDATORY [storymanager.gd](scripts/storymanager.gd).


Golden Path (order matters)

  1. Snapshot before mutate — On every advance/choice, MANDATORY [vnrollbackmanager.gd](scripts/vnrollbackmanager.gd) pushes {line_index, flags, background, music} before flag writes.
  2. Typewriter + skip — [dialogueui.gd](scripts/dialogueui.gd): Tween visibleratio 0→1; on skip/advance input set visibleratio = 1.0 and kill the tween.
  3. Choice filter by flags — Present only options whose requires StringName flags pass; apply choice → mutate flags → jump label ([visualnovelpatterns.gd](scripts/visualnovelpatterns.gd) + [storymanager.gd](scripts/storymanager.gd)).
  4. Speaker focusmovetofront() on Control actors (not z_index alone) + dim inactive.
  5. Heavy CG/BGResourceLoader.loadthreadedrequest for backgrounds; never sync-parse huge scripts on the main thread.
# Choice handler shape (flags after snapshot)
func make_choice(choice_id: StringName) -> void:
    rollback_manager.push_snapshot()  # BEFORE mutate
    match choice_id:
        &"be_nice":
            flags[&"relationship_alice"] = int(flags.get(&"relationship_alice", 0)) + 1
            story_manager.jump_to_label(&"alice_happy")
        &"be_mean":
            flags[&"relationship_alice"] = int(flags.get(&"relationship_alice", 0)) - 1
            story_manager.jump_to_label(&"alice_sad")

Common Pitfalls

  1. Walls of text — Cap dialogue to 3–4 lines.
  2. Illusion of choice — Always vary lines or flags even on converging plots.
  3. Missing QoL — Auto / Skip / Backlog / Save are mandatory genre features.
  4. Broken rollback — Mutating flags before snapshot makes undo lie.

Deep recipes (on demand)

Topic Reference / script
Story driver & typewriter UI [architecture-overview.md](references/architecture-overview.md)
Branching / rollback / focus [key-mechanics.md](references/key-mechanics.md)
RichText / async loads [godot-tips.md](references/godot-tips.md)

Reference

Progressive disclosure: open Official Documentation links only when researching a specific API; load Related Skills when routing to a peer domain — do not preload the whole lattice.

Official Documentation

  • BBCode in RichTextLabel — shake/wave BBCode and append_text for emotional dialogue without plain Label walls.
  • Size and anchors — percent offsets and anchors so character sprites and dialogue boxes scale across resolutions.
  • GUI containers — VBox/HBox choice rows and dialogue chrome instead of absolute pixel layouts.
  • Background loading — ResourceLoader.loadthreaded_request so heavy CG/background swaps never hitch the typewriter.
  • Saving games — FileAccess patterns for flags, history stacks, and multi-slot VN saves.
  • Resources — typed dialogue/choice Resources as an alternative to brittle hardcoded JSON strings.
  • Internationalizing games — tr() / CSV keys so script lines stay localization-ready.
  • Audio streams — BGM crossfades and optional voice lines tied to line advances.
  • Using InputEvent — skip/advance/uiaccept handling that finishes visibleratio instantly.
  • Singletons (Autoload) — persistent flag/history owners across chapter scene changes.
  • Signals — lineadvanced / options_presented wiring between StoryManager and DialogueUI.
  • Tween — tweenproperty on RichTextLabel.visible_ratio for frame-independent typewriter reveals.

Related Skills

Prerequisites

Complements

Downstream / consumers

Master

  • godot-master — library router and mirrored module entry for cross-skill discovery.