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

# Custom Commands & Skills

> Browse and inspect Claude's custom commands and skills

Claude Board provides viewers for your custom Claude commands and skills — the markdown files stored in `~/.claude/commands/` and `~/.claude/skills/`.

## Custom Commands Viewer

Access from the project menu → **Commands**. The split-pane modal shows:

* **Left panel**: List of all `*.md` files in `~/.claude/commands/`
* **Right panel**: Full content preview of the selected command

Browse your custom slash commands to see what's available without leaving the app.

## Custom Skills Viewer

Access from the project menu → **Skills**. Same split-pane layout:

* **Left panel**: List of all `*.md` files in `~/.claude/skills/`
* **Right panel**: Full content preview of the selected skill

## Creating Custom Commands

Custom commands are markdown files in `~/.claude/commands/`. Each file becomes a slash command:

```
~/.claude/commands/
├── review.md      → /review
├── test.md        → /test
└── deploy.md      → /deploy
```

The file content is the prompt template that Claude receives when the command is invoked.

<Info>These viewers are read-only — they show what's installed on your system. To create or edit commands, modify the markdown files directly in `~/.claude/commands/` or `~/.claude/skills/`.</Info>
