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 (as file paths) or passed inline to agent(). The LLM sees skill names and descriptions in {{ _system_skills }} and calls load_skill to retrieve full instructions when needed.

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

    Properties

    description: string
    instructions: string
    name: string