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

# Agent skills

> Automated workflows that handle tasks on your behalf.

Agent skills are guided, automated workflows built into Leanly. When you trigger a skill, it works through a task step by step — gathering what it needs, taking action, and reporting back. Whatever a skill does operates within Leanly's guardrails and works exclusively with standard cloud primitives.

## Install

<CodeGroup>
  ```bash npm theme={null}
  npx skills add leanlydev/agent-skills
  ```

  ```bash pnpm theme={null}
  pnpm dlx skills add leanlydev/agent-skills
  ```

  ```bash yarn theme={null}
  yarn dlx skills add leanlydev/agent-skills
  ```

  ```bash bun theme={null}
  bunx skills add leanlydev/agent-skills
  ```
</CodeGroup>

## How they work

A skill combines context from your project, your cloud account, and any input you provide to complete a task autonomously. Under the hood, skills are powered by AI agents that reason through each step rather than following a fixed script — which means they can handle variation and edge cases without you needing to intervene.

## When to use them

Use a skill when you want to get something done quickly and correctly without working through the steps manually. The manual path is there when you need full control — for example, if your organisation enforces policies that require human review at each step.
