Lightdash AI agents ship with built-in skills — specialized instruction sets the agent loads on demand when a request matches a skill’s purpose. Skills keep the base system prompt small and let the agent pull in deep, task-specific guidance only when it needs it. You don’t install or configure built-in skills. They’re packaged with Lightdash and available to every AI agent automatically.Documentation Index
Fetch the complete documentation index at: https://lightdash-mintlify-55f1bb73.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
How skills work
When you message an AI agent, it sees a short list of available skills (name and one-line description). If your request matches a skill, the agent:- Calls
loadSkillto fetch the full instructions for that skill. - Optionally calls
loadSkillResourceto pull a specific reference document the skill points to. - Follows the skill’s instructions to complete your task.
Available skills
developing-in-lightdash
Use this skill to read or edit the dashboard you currently have open in the UI. The agent inspects the live dashboard editor state, builds the smallest possible change, and applies it in place — no download, edit, upload loop required.
Trigger it with requests like:
- “Add a filter for the last 30 days to this dashboard.”
- “Move the revenue tile to the top row.”
- “What tiles are on this dashboard right now?”
frontendAction tool with dashboard.read to inspect state and dashboard.edit with an RFC 6902 JSON Patch to apply changes. The skill also exposes a dashboard-reference resource that documents tile types, layout rules, and filter configuration — the agent loads it on demand when it needs the full schema.
When to use built-in skills vs. other workflows
| Task | Use |
|---|---|
| Edit the dashboard you have open right now | Built-in developing-in-lightdash skill (just ask the agent) |
| Bulk edit many dashboards or charts at once | Editing dashboards with agents (download / edit / upload) |
| Build or maintain your dbt semantic layer with an external coding agent | Agent skills for coding assistants |
FAQs
Do I need to enable built-in skills? No. They’re available to every Lightdash AI agent out of the box. Can I add my own built-in skills? Not today. Built-in skills are packaged with Lightdash. If you need agent-specific guidance, use agent instructions or agent memory. Why do I seeloadSkill and loadSkillResource in the chat?
Those are the tool calls the agent makes to fetch a skill’s instructions and reference material. Seeing them means the agent recognized your request as a good fit for a specialized workflow.