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

# Notifique Skills

> Ready-made recipes for AI to run Notifique tasks without guessing.

<Tip>
  A Skill is the integration **cake recipe**: instead of AI guessing endpoints and fields, it follows a written step-by-step for one specific task.
</Tip>

## What is a Skill?

It's a text file with **detailed instructions** for AI to run a Notifique task: which endpoint to call, which fields to fill, and in what order.

Think of a cake recipe: the map (LLMs.txt) shows the whole kitchen; the Skill says exactly how to bake **one** cake.

Root file: [https://docs.notifique.dev/skill.md](https://docs.notifique.dev/skill.md)

## What is it for?

| Without Skill                    | With Skill                                         |
| -------------------------------- | -------------------------------------------------- |
| "Try sending a WhatsApp…"        | "Follow skill.md and use required template fields" |
| AI invents route or field        | AI follows step by step                            |
| Every prompt starts from scratch | The team reuses the same recipe                    |

## What's inside?

* **How** to run the task
* **Which** endpoints to call
* **Example** JSON
* Step order

## When to use it?

| Situation                                      | Use a Skill?                                     |
| ---------------------------------------------- | ------------------------------------------------ |
| Same task many times (send, webhook, template) | **Yes**                                          |
| AI keeps getting the "how" wrong               | **Yes**                                          |
| Standardize automations on your team           | **Yes**                                          |
| Only need a general API overview               | No (use [LLMs.txt](/build-with-ai/llm))          |
| Want to execute from IDE chat                  | Combine with [MCP](/build-with-ai/mcp-notifique) |

## How to use in a prompt

Paste at the start of the chat:

```text theme={null}
Use this skill as reference:
https://docs.notifique.dev/skill.md

I want to send WhatsApp with an approved template.
```

## Skill, LLMs.txt, and MCP

| Piece        | What it is          | What it does                 |
| ------------ | ------------------- | ---------------------------- |
| **LLMs.txt** | General API map     | AI understands the landscape |
| **Skill**    | Recipe for one task | AI knows the path            |
| **MCP**      | Bridge in the IDE   | AI **executes** for real     |

Common flow:

1. **LLMs.txt** for general context
2. **Skill** for the specific task
3. **MCP** (or your backend) to run it

<Note>
  A Skill **teaches**. It does not send messages alone. To execute, use your API, your code, or MCP.
</Note>

***

## Next steps

* [LLMs.txt](/build-with-ai/llm): API map
* [Notifique MCP](/build-with-ai/mcp-notifique): run in the IDE
* [Build with AI](/build-with-ai): overview
* [Start here](/guides/introducao/comece-aqui): first manual send
