> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ultraclaw.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Tools Overview

> Every UltraClaw agent comes with a full set of built-in tools: web search, browser, code execution, file management, image and PDF analysis, and more.

# Tools Overview

Every UltraClaw agent comes equipped with a complete set of built-in tools. You don't need to install anything — just ask your agent to use them.

<Info>
  Tools are invoked automatically based on what you ask. You can also ask your agent explicitly: "search the web for...", "run this code", "read this PDF", etc.
</Info>

## Built-In Tools

<CardGroup cols={2}>
  <Card title="Web Search" icon="magnifying-glass">
    Search the internet in real time. Your agent can look up current news, documentation, prices, facts, and anything else that requires up-to-date information.

    **Example:** *"What's the latest on OpenAI's new model?"*
  </Card>

  <Card title="Web Browsing" icon="window">
    Fetch and read the full content of any web page — articles, docs, PDFs hosted online, product pages. Goes deeper than search results.

    **Example:** *"Read this article and summarize it: \[url]"*
  </Card>

  <Card title="Browser Automation" icon="arrow-pointer">
    Control a real browser to interact with web pages: fill forms, click buttons, take screenshots, and extract data from pages that require JavaScript.

    **Example:** *"Go to this page and fill out the contact form for me."*
  </Card>

  <Card title="File Management" icon="folder-open">
    Create, read, edit, and organize files in your [workspace](/assistant/workspace-files). Your agent can write documents, save notes, manage project files, and more.

    **Example:** *"Save a draft of this proposal to my workspace."*
  </Card>

  <Card title="Code Execution" icon="code">
    Write and run code to process data, perform calculations, parse files, call APIs, or automate tasks. Supports multiple languages.

    **Example:** *"Write a Python script to parse this CSV and give me the top 10 rows by revenue."*
  </Card>

  <Card title="Image Analysis" icon="image">
    Analyze images you send — read text from screenshots, describe photos, extract data from charts, identify objects, or review documents.

    **Example:** *"Here's a screenshot of my error — what's wrong?"*
  </Card>

  <Card title="PDF Analysis" icon="file-pdf">
    Read and extract content from PDF files. Your agent can summarize, search, and answer questions about PDF documents you share.

    **Example:** *"Summarize the key points from this contract PDF."*
  </Card>

  <Card title="Sub-Agents" icon="sitemap">
    For complex multi-step tasks, your agent can spawn sub-agents to work on parallel workstreams and combine their results.

    **Example:** *"Research 5 competitors and write a comparison report."*
  </Card>
</CardGroup>

## Already-Documented Capabilities

Some agent capabilities have their own dedicated pages:

<CardGroup cols={2}>
  <Card title="Cron Jobs & Scheduling" icon="clock" href="/assistant/cron-jobs">
    Schedule your agent to run tasks automatically on a recurring schedule.
  </Card>

  <Card title="Skills" icon="puzzle-piece" href="/assistant/skills">
    Install community skills or create custom ones to extend your agent's capabilities.
  </Card>

  <Card title="Memory" icon="brain" href="/assistant/memory">
    How your agent remembers conversations and retains long-term context.
  </Card>

  <Card title="Workspace Files" icon="folder" href="/assistant/workspace-files">
    Configure your agent's personality, instructions, and tools through markdown files.
  </Card>
</CardGroup>

## How Tool Usage Affects Tokens

Each tool call consumes tokens — the more your agent does, the more tokens it uses. Tool-heavy tasks (like browsing multiple pages, running code, or spawning sub-agents) use more tokens than simple conversations.

<Tip>
  Use the `/context` command to check how many tokens you've used in the current session. See [Tokens & Usage](/plans/tokens-and-usage) for more on how credits work.
</Tip>
