Overview
Agent Skills are reusable behavioral patterns, instructions, and knowledge sets stored as files that you can give to your agents. While Tools enable agents to take actions (sending emails, searching the web, querying databases), Skills shape how agents think, communicate, and approach problems.Agent Skills is an in-platform feature for configuring agents in Relevance AI. It is separate from MCP Agent Skills, which is designed for external coding assistants.
Skills vs. Tools
| Skills | Tools | |
|---|---|---|
| What they are | Behavioral patterns and knowledge sets | Actions and integrations |
| What they do | Shape how the agent thinks and responds | Let the agent do things in the world |
| Examples | Meeting facilitation style, sales methodology, domain expertise | Send email, search the web, query a database |
| Stored as | Files in /skills/ directories | Configured in the Tools section |
| Activated by | File read commands in agent instructions | Adding to the agent’s tool list |
Skill organization
Skills are stored as files in two locations, each with different scope and permissions./skills/user/
Personal skills — only visible to you. Create skills here for personal workflows, drafts, or behaviors you haven’t shared with your team yet.
/skills/project/
Shared skills — visible to everyone in the project. Only admins can write to this directory, ensuring shared behaviors remain consistent and controlled.
Permission model
- Any user can create and manage skills in
/skills/user/ - Only project admins can create or modify skills in
/skills/project/ - All users can read skills from both locations and activate them in their agents
Built-in preset skills
Relevance AI includes two preset skills available in every project.meetings
Themeetings skill gives your agent the knowledge and behavioral patterns needed to handle meeting-related workflows. This includes:
- Structuring meeting agendas and summaries
- Capturing action items and decisions
- Following up with participants
- Formatting notes in a consistent, readable way
skill-creator
Theskill-creator skill equips your agent with the ability to generate new skills. When activated, the agent understands the skill file format and can write well-structured skill definitions based on your descriptions.
Use this skill when you want your agent to help you expand your skill library — describe a behavior you need, and the agent drafts the skill file for you to review and save.
How agents read and activate skills
Agents access skills through file read commands in their instructions. When the agent processes its prompt at the start of a task, it reads the specified skill files and incorporates their contents into its behavior for that session. To activate a skill, include a read command in the agent’s prompt:Creating custom skills
Skills are plain text files with a structured format. You can create them directly in the platform or have theskill-creator preset skill generate them for you.
Skill file structure
A skill file typically contains:- Name and purpose — a short description of what the skill does
- Behavioral instructions — specific guidance on how to apply the skill
- Examples (optional) — sample inputs and outputs that illustrate the expected behavior
- Edge cases (optional) — how to handle situations that fall outside the norm
Example: a custom communication skill
Creating a skill in the platform
- Navigate to the Files section in your Relevance AI workspace
- Go to
/skills/user/for a personal skill or/skills/project/for a shared skill (admin required) - Click New file and give it a descriptive name (e.g.,
sales-qualification-style.md) - Write the skill content following the structure above
- Save the file
skill-creator preset:
- Add the
skill-creatorskill to an agent - Describe the behavior you want to encode
- The agent drafts the skill file content for you
- Review, adjust, and save it to the appropriate
/skills/directory
Managing skills
Reading and previewing skills
You can view skill files directly in the Files section of your workspace. Both/skills/user/ and /skills/project/ are browsable.
Updating a skill
Edit the skill file in the Files section. Changes take effect the next time an agent reads the skill — no need to reconfigure the agents that use it.Sharing skills with your team
Move a personal skill from/skills/user/ to /skills/project/ to make it available to the whole project. This requires admin permissions on /skills/project/.
Removing a skill from an agent
Remove the file read instruction from the agent’s prompt. The skill file itself remains available for other agents or future use.Best practices
- One skill per concern — keep each skill file focused on a single behavior or domain. Combining multiple unrelated behaviors in one file makes skills harder to reuse and maintain.
- Use descriptive file names — names like
executive-summary-style.mdorb2b-sales-methodology.mdmake it clear what each skill does without opening the file. - Version through naming — if you’re iterating on a skill, keep the working version in
/skills/user/while the stable version lives in/skills/project/. - Document the activation instruction — in the skill file itself, include a suggested activation instruction so other agents (and team members) know how to use it.
- Test before sharing — verify a skill behaves as expected in a personal agent before promoting it to
/skills/project/for team-wide use.
Use cases
Customer support tone and escalation rules
Customer support tone and escalation rules
Create a skill that defines how the agent should handle frustrated customers, when to escalate to a human, and what language to use when apologizing or explaining delays. Apply it to any support-facing agent to ensure consistency across the team.
Sales methodology encoding
Sales methodology encoding
Encode a qualification framework (MEDDIC, SPIN, BANT) as a skill so any sales agent follows the same discovery process. Update the skill file once to propagate the change to all agents using it.
Domain-specific expertise
Domain-specific expertise
Store industry terminology, regulatory requirements, or technical reference knowledge in a skill file. Agents that read this skill can answer domain-specific questions accurately without needing all of that context in the main prompt.
Meeting facilitation
Meeting facilitation
Use the built-in
meetings skill to equip a meeting assistant agent with structured note-taking, action item tracking, and follow-up formatting — ready to use without any configuration.Writing style guides
Writing style guides
Define tone, voice, and formatting rules in a skill file. Any content-producing agent that reads this skill will apply your brand’s writing standards consistently.
Frequently asked questions (FAQs)
How are Skills different from writing instructions directly in the prompt?
How are Skills different from writing instructions directly in the prompt?
Writing instructions directly in the prompt works well for behavior specific to one agent. Skills are better when you want the same behavior across multiple agents — you define it once in a file and reference it wherever you need it. When the behavior changes, you update one file instead of editing every prompt.
Can I activate a skill for only part of a task?
Can I activate a skill for only part of a task?
Skills are activated at the start of a session when the agent reads the file. They apply to the full task. If you need conditional behavior, you can describe those conditions within the skill file itself.
What happens if a skill file is deleted?
What happens if a skill file is deleted?
If an agent tries to read a skill file that no longer exists, it will not be able to apply that skill for the session. The agent will proceed with its other instructions. Remove the read command from the agent’s prompt if the skill file has been permanently deleted.
Can non-admin users create project-level skills?
Can non-admin users create project-level skills?
No. Only project admins can create or modify files in
/skills/project/. Any user can create skills in /skills/user/ for personal use, and admins can promote personal skills to the project level.How many skills can I activate in one agent?
How many skills can I activate in one agent?
There is no fixed limit, but each skill adds to the context the agent processes. Keep skill files focused and concise, and activate only the skills relevant to the agent’s purpose to avoid unnecessary context overhead.

