Skip to main content
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.

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

What is it for?

What’s inside?

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

When to use it?

How to use in a prompt

Paste at the start of the chat:

Skill, LLMs.txt, and MCP

Common flow:
  1. LLMs.txt for general context
  2. Skill for the specific task
  3. MCP (or your backend) to run it
A Skill teaches. It does not send messages alone. To execute, use your API, your code, or MCP.

Next steps