AgentOS Extensions API - v1.0.3
    Preparing search index...

    Tool for navigating to URLs

    Implements

    Index

    Constructors

    Properties

    category: "research" = 'research'
    description: "Navigate the browser to a URL and return full page text, all links on the page, and optionally raw HTML. Use this to visit websites and extract specific information including footer links, navigation items, and page content." = 'Navigate the browser to a URL and return full page text, all links on the page, and optionally raw HTML. Use this to visit websites and extract specific information including footer links, navigation items, and page content.'
    displayName: "Browser Navigate" = 'Browser Navigate'
    hasSideEffects: false
    id: "web-browser-navigate-v1" = 'web-browser-navigate-v1'
    inputSchema: JSONSchemaObject = ...
    name: "browser_navigate" = 'browser_navigate'

    Tool call name used by the LLM / ToolExecutor.

    Methods

    • Execute navigation

      Parameters

      • input: {
            maxTextLength?: number;
            returnHtml?: boolean;
            returnLinks?: boolean;
            returnText?: boolean;
            url: string;
            waitFor?: "load" | "domcontentloaded" | "networkidle0" | "networkidle2";
        }
      • _context: ToolExecutionContext

      Returns Promise<ToolExecutionResult<NavigationResult>>

    • Validate input

      Parameters

      • input: Record<string, any>

      Returns { errors?: any[]; isValid: boolean }