DaisySuite
One Daisy suite for modern Paper plugins: DaisyCore runs runtime systems, DaisySeries owns canonical values, and DaisyConfig owns typed YAML.
One docs surface for the whole suite: runtime ownership in DaisyCore, parser-safe values in DaisySeries, and typed config plus managed lifecycle and module bundles in DaisyConfig.
Normal flow: DaisySeries parses values -> DaisyConfig stores typed config -> DaisyCore renders and runs the feature.
What can you build?
Section titled “What can you build?”Use DaisyCore when one feature spans a command, menu, sidebar, and tablist in one runtime-owned flow.
Use DaisyConfig when YAML shape, migration safety, module bundles, and shared text ownership become the real maintenance problem.
Use DaisySeries when config-heavy Paper values should stop leaking enum helpers through plugin code.
Use all three together when config ownership, canonical values, and runtime systems all matter in the same plugin.
Start the normal path
Section titled “Start the normal path”Pick the product that owns your problem
Use Which product do I need? if you are choosing between runtime, parsing, or typed YAML ownership.
Start with DaisySeries when parsing is the actual problem
Use Install DaisySeries first when canonical values, aliases, and parser-safe inputs are the real issue.
Move to DaisyConfig when YAML ownership becomes the maintenance problem
Use Install DaisyConfig when config shape, versioning, module bundles, and shared text ownership matter more than parser or runtime concerns alone.
Use the normal stack when all three layers matter
Read Build the Normal Stack for the intended Daisy flow: DaisySeries parses values, DaisyConfig owns typed YAML plus module lifecycle, and DaisyCore renders the runtime result.