> ## 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.

# Claude Code

> Anthropic's terminal coding agent.

[Claude Code](https://docs.claude.com/en/docs/claude-code/overview) is Anthropic's terminal-native coding agent. gaal manages its skills directories and its MCP server config.

## Paths

| Resource               | Path                                                        |
| ---------------------- | ----------------------------------------------------------- |
| Project skills         | `.claude/skills`                                            |
| Global skills          | `~/.claude/skills`                                          |
| MCP config             | `~/.claude.json`                                            |
| Audit search (project) | `.claude/skills`, `.agents/skills`, `.github/skills`        |
| Audit search (global)  | `~/.claude/skills`, `~/.agents/skills`, `~/.copilot/skills` |
| Package-manager search | `~/.claude/plugins/cache`                                   |

## Skills example

```yaml gaal.yaml theme={"theme":"nord"}
skills:
  - source: anthropics/skills
    agents: [claude-code]
    select: [frontend-design, skill-creator]
    global: false
```

After `gaal sync`:

```
.claude/skills/frontend-design/SKILL.md
.claude/skills/skill-creator/SKILL.md
```

## MCP example

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

The entry is upserted under `mcpServers` in `~/.claude.json`. Other keys in the file are preserved.

## Detecting installation

```bash theme={"theme":"nord"}
$ gaal agents claude-code
claude-code (installed)
  project skills:  .claude/skills
  global skills:   ~/.claude/skills
  mcp config:      ~/.claude.json (exists)
  pm cache:        ~/.claude/plugins/cache
```

## 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>
