Member Junction
    Preparing search index...

    The full catalog of routine-pickable targets + skills, plus an id → name map.

    interface RoutineTargetCatalog {
        Actions: RoutineTargetOption[];
        Agents: RoutineTargetOption[];
        IconByID: Map<string, string>;
        NameByID: Map<string, string>;
        Prompts: RoutineTargetOption[];
        Skills: RoutineSkillOption[];
    }
    Index

    Properties

    Active actions.

    Active agents, EXCLUDING agents whose type is the Realtime agent type (interactive-only).

    IconByID: Map<string, string>

    Font Awesome icon class for ANY known agent id (normalized) that has an IconClass set. Consumers fall back to 'fa-solid fa-robot' when absent.

    NameByID: Map<string, string>

    Display name for ANY known target id (normalized), regardless of status — so routines pointing at since-deactivated targets still render a name.

    Active prompts.

    Active AI Skills (for Agent targets' RequestedSkillIDs).