> For the complete documentation index, see [llms.txt](https://docs.eesel.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.eesel.ai/skills/what-are-skills.md).

# What are Skills?

### What Are Skills? <a href="#what-are-skills-1" id="what-are-skills-1"></a>

Skills are pre-built analytical workflows your agent can run on top of its core job. Unlike the agent's main work (answering tickets, writing posts), skills are distinct multi-step processes with their own logic and output artifacts.

**A skill is NOT:**

* A single tool call (that's just a tool)
* The agent's core behavior (that emerges from instructions + integrations)

**A skill IS:**

* A distinct workflow with multiple steps
* Has its own process and branching logic
* Produces its own output artifact (report, analysis, draft articles)

### How skills work

1. You run a skill from the dashboard or schedule it to run automatically
2. The skill reads your connected data - tickets, knowledge sources, past conversations
3. It works through its steps, which you can watch in real time
4. Results are saved as a report or set of files in your outputs, and emailed to you

### What each skill produces

Every skill produces an output artifact - a report, a set of drafted articles, a scored simulation, or a set of instruction suggestions. You can review and act on these from the dashboard.

### Skills vs. instructions

Your agent's instructions control its behavior in live conversations. Skills are separate - they're one-off or scheduled jobs that run independently, usually over historical data. Changing your instructions doesn't affect how a skill runs, and running a skill doesn't change your instructions (unless you choose to apply suggested improvements).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.eesel.ai/skills/what-are-skills.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
