configuration The worker is a server-side registry of named entries. Every entry has an id (e.g. , ), a human-readable name and description, a JSON Schema describing the value shape, and a JSON value validated against that schema. Workers call once at startup to declare their schema and to publish values; consumers call / to read and bind a trigger to react to changes without polling. The default adapter persists one YAML file per id under and watches the directory for external edits, so manual edits to those files surface as events the same way SDK calls do. The adapter delegates to a remote…