Body, Mind & Soul — API Reference
    Preparing search index...

    Function buildAllTriggerSchemaData

    • Build the full, machine-readable trigger schema for every consumer type in TRIGGER_CONSUMER_REGISTRY, uploaded at runtime by syncTriggerSchemaExport() so a browsing-capable LLM can fetch it directly instead of relying on the copy/paste prompt. Contains system/schema metadata only — no live in-world/actor/item data.

      Returns {
          conditions: Record<string, { config: string; label: string }>;
          consumers: Record<
              string,
              {
                  conditionTypes: string[];
                  hookMode: string;
                  hooks?: string[];
                  iterators?: string[];
                  outcomeTypes: string[];
              },
          >;
          generatedAt: string;
          outcomes: Record<string, { config: string; label: string }>;
          system: string;
          systemVersion: string;
      }