Skip to content

Core concepts

A short tour of the seven entities Stillwater is built around. If you've followed Getting started, you've already used most of these in passing. This section explains the shape of each one and how they connect.

  • Artists and libraries


    The two foundational entities. Libraries are folders (or remote sources) of music; artists are the people and groups inside them.

    Read more

  • NFO files


    The XML metadata format every supported platform reads. Stillwater parses, edits, and writes Kodi-compatible artist.nfo files.

    Read more

  • Images


    Four image slots per artist -- thumb, fanart, logo, banner -- with platform-specific naming, multi-fanart, and resolution thresholds.

    Read more

  • Providers


    Ten metadata providers, queried in per-field priority order with caching and ID propagation.

    Read more

  • Rules


    Checks that run against artists. Each rule has three meaningful states (disabled, manual, auto) and a fixer that resolves violations.

    Read more

  • Field locks


    The mechanism that keeps your manual edits from being overwritten by refreshes, fixers, or connected platforms.

    Read more

How the pieces fit

Library  ---owns--->  Artists
   |                     |
   |                     +--- has an NFO file
   |                     +--- has 4 image slots
   |                     +--- can be locked (whole or per-field)
   |                     +--- is evaluated by Rules
   |                                    |
   |                                    +--- which call Providers
   |                                    +--- and produce fixable violations
   |
   +--- decides scan + watch behavior
   +--- holds the connection to Emby / Jellyfin / Lidarr (or "manual")

Most workflows touch three or four of these at once. A "refresh this artist's biography" run walks: artist → providers (in priority order) → field locks (which fields to skip) → NFO file (atomic write) → conflict gate (paused if a platform is meddling). Knowing the pieces makes the workflow legible.