Add comprehensive example demonstrating all major features of the Storybook DSL through Lewis Carroll's Alice in Wonderland. Contents: - 12 characters (Alice, WhiteRabbit, CheshireCat, MadHatter, etc.) - 7 relationships with named participant blocks - 3 institutions (tea parties, royal court) - 1 schedule (Mad Tea Party eternal rotation) - 12 behavior trees using new syntax features - 1 life arc (Alice's journey) Demonstrates: - Cross-file template resolution (schema/templates.sb) - Template inheritance and includes - Strict template validation - Action parameters and repeater decorators - Named participant relationship blocks - Species-based character typing - Rich prose blocks throughout All content validates successfully.
23 lines
573 B
TOML
23 lines
573 B
TOML
# Alice's Adventures in Wonderland - Storybook Example Project
|
|
# A comprehensive demonstration of all Storybook language features
|
|
|
|
[project]
|
|
name = "alice-in-wonderland"
|
|
version = "1.0.0"
|
|
description = "Complete Alice in Wonderland narrative model showcasing advanced Storybook language features"
|
|
author = "Lewis Carroll (adapted)"
|
|
|
|
[paths]
|
|
schema = "schema"
|
|
world = "world"
|
|
|
|
[validation]
|
|
# Enable strict validation to catch errors
|
|
strict_mode = true
|
|
|
|
# Warn about unused declarations
|
|
warn_unused = true
|
|
|
|
# Require all cross-references to resolve
|
|
require_resolution = true
|