Member Junction
    Preparing search index...

    Interface SerializeSkillMarkdownParams

    Inputs to SkillMarkdownConverter.Serialize — the export-side counterpart of ParsedSkillMarkdown, using resolved names (not IDs) for portability.

    interface SerializeSkillMarkdownParams {
        actionNames?: string[];
        category?: string;
        codeOnlyActionNames?: string[];
        description?: string;
        instructions: string;
        name: string;
        subAgentNames?: string[];
    }
    Index

    Properties

    actionNames?: string[]
    category?: string
    codeOnlyActionNames?: string[]

    Subset of actionNames bundled with ExposeToModel = 0; emitted as codeOnlyActions when non-empty.

    description?: string
    instructions: string
    name: string
    subAgentNames?: string[]