output
    Preparing search index...

    Type Alias Skill

    An instruction package that an agent can load on demand via the load_skill tool.

    Skills are declared in prompt frontmatter or passed inline to generation APIs.

    type Skill = {
        description?: string;
        instructions: string;
        name: string;
    }
    Index

    Properties

    description?: string
    instructions: string
    name: string