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

# Goose

> Block's open-source AI coding agent.

[Goose](https://block.github.io/goose/) is an open-source AI agent. Skills live under `.goose/skills`; MCP config lives under `~/.config/goose/config.yaml`.

## Paths

| Resource               | Path                                                              |
| ---------------------- | ----------------------------------------------------------------- |
| Project skills         | `.goose/skills`                                                   |
| Global skills          | `~/.config/goose/skills`                                          |
| MCP config             | `~/.config/goose/config.yaml`                                     |
| Audit search (project) | `.goose/skills`, `.agents/skills`, `.github/skills`               |
| Audit search (global)  | `~/.config/goose/skills`, `~/.agents/skills`, `~/.copilot/skills` |

## Skills example

```yaml gaal.yaml theme={"theme":"nord"}
skills:
  - source: anthropics/skills
    agents: [goose]
    global: false
```

## MCP example

```yaml gaal.yaml theme={"theme":"nord"}
mcps:
  - name: filesystem
    agents: [goose]
    global: true
    inline:
      command: uvx
      args: [mcp-server-filesystem, ~/projects]
```

## Related

<CardGroup cols={2}>
  <Card title="Configure skills" icon="brain" href="/configure/skills" />

  <Card title="Configure MCP servers" icon="plug" href="/configure/mcp-servers" />
</CardGroup>
