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

# Tools

> Understand the tools available to Funky agents.

Funky currently supports its default tools only. Agents receive the default
toolset automatically; custom tools cannot yet be registered through an agent
configuration.

The `tool_policy` field can control supported execution behavior, but it does
not add tools. For example, you can limit the number of agent iterations:

```json theme={null}
{
  "tool_policy": {
    "max_iterations": 20
  }
}
```

If your agent needs custom capabilities, package the instructions and any
supporting scripts or resources into a skill. See [Skills](/agent-config/skills)
for the current status of skill configuration.
