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

# skills

> reusable capabilities you install into your agent once, the tools that turn report data into something you can use.

an edgeful skill is a packaged capability: a folder of instructions and references that upgrades your AI agent. install it once and your agent gains a new ability — like turning a report response into a polished dashboard — that it can use on every future request.

## installing a skill

### Claude Code

copy the skill folder into `./.claude/skills/` (or `~/.claude/skills/` for global use). it loads next session and becomes invokable by name.

### Codex, Cursor, or another agent

unzip the skill into your project (e.g. `./skills/<name>/`) and point your agent at its `SKILL.md` as the source of truth whenever you ask for that capability.

## available skills

<CardGroup cols={2}>
  <Card title="dashboard skill" icon="layout-dashboard" href="/skills/dashboard-skill">
    turn any report response into a polished, single-file HTML dashboard — KPI cards, charts, and sortable tables.
  </Card>
</CardGroup>
