@archastro/sdk
    Preparing search index...

    Interface BuiltinTool

    A single callable tool within a builtin tool catalog entry. Represents one discrete function an agent can invoke.

    interface BuiltinTool {
        description?: string;
        name: string;
    }
    Index

    Properties

    Properties

    description?: string

    Human-readable explanation of what the tool does. Surfaced to the agent as part of tool selection context. null when no description has been defined.

    name: string

    Machine-readable name of the tool as it is registered with the agent runtime, e.g. "web_search" or "github_create_issue".