Skip to main content

Use Skills

This page explains how to use Agentiqs Skills to make business rules and specialized knowledge reusable in agents.


What are Skills?

Skills package specific work rules and expert knowledge so that they can be reused in AI conversations.

About Skills

By placing skill definitions (SKILL.md), agent settings, scripts, reference materials, and other resources together in one folder, you enable agents to use them during AI conversations.
You can also use existing skills or publicly available skills as-is.

Skills automatically detect and load the skill definitions placed in a workspace so that they can be used in AI conversations.

  • As long as the workspace is open, skills in the designated folders are automatically enabled.
  • Skills are loaded each time AI conversation runs, so additions or changes are automatically reflected from the next conversation onward.
  • On the AI agent [Skills] tab, you can review and configure the skills used by each agent.
tip

Skills you create are automatically referenced during AI conversations.

Prepare skills

Before using Skills, prepare the skill folder.

Structure of a single skill

Each skill should be created in the following structure:

skill-name/
├── SKILL.md # Skill definition and description
├── agents/ # Agent settings
│ └── openai.yaml
├── scripts/ # Scripts
├── references/ # Reference materials
└── assets/ # Other resources
Folder hierarchies can be referenced up to 16 levels deep.

If a placed skill is not loaded, check whether the folder hierarchy is too deep.
Example: skillroot/scripts/python/calc.py

Where to place skill folders

Place skills using one of the following methods:

  • Put them in the designated path within the workspace
  • Specify a reference directory for each AI agent

Put them in the designated path within the workspace

Create the skill folders under one of the following paths directly below the workspace root, and place the skills inside them.

PathDescription
<workspace>/.agentiqs/skillsAgentiqs-specific settings area
<workspace>/.github/skillsGitHub-oriented settings area
<workspace>/.agents/skillsGeneral settings area for agents
<workspace>/.claude/skillsClaude-oriented settings area
If multiple folders above exist, all of them are loaded.
  • Only one folder is enough.
  • If none of these folders exist, the Skills feature remains disabled and AI conversations work as usual.

For example, if you place two skills in .agentiqs/skills, the overall structure looks like this:

<workspace>/
└── .agentiqs/
└── skills/
├── my-skill-a/
│ ├── SKILL.md
│ ├── agents/
│ └── ...
└── my-skill-b/
├── SKILL.md
├── agents/
└── ...

Specify reference directories

Use the following approach if you want to:

  • Use skill assets that are outside the workspace
  • Reference skills stored in multiple locations from a single place
Procedure
  1. Open the target AI agent.
  2. Select [Skills] from the left menu.
  3. In [Add reference folder], enter the path of the folder you want to reference.
    • If you specify multiple directories, separate them with semicolons or commas.
      Example: C:\work\skills, D:\shared\skills
    • Place the skill package folders, including SKILL.md, directly under the specified folder.
tip

You can also use this approach to:

  • Place team-managed skill assets outside the workspace
  • Reference personal skills and team-shared skills from the same agent
  • Separate skill management locations by project

Add or change skills

If you add, edit, or delete files in a skill folder, the changes are automatically reflected the next time AI conversation runs.

No reload button or app restart is needed.

Enable Skills in an AI agent

Skills are enabled by default for both newly created and existing AI agents.
On the [Skills] tab, you can configure the skills and reference directories used by each agent.

Procedure
  1. Open the target AI agent.
  2. Select [Skills] from the left menu.
  3. If the Skills feature is disabled, turn on [Use Skills].
  4. Confirm the skills and reference directories in use, then save the settings.
    • The configured skills will be automatically detected and loaded from the next AI conversation onward.
How to check whether a skill was loaded correctly

In a chat with the target AI agent, verify that the response follows the role and behavior defined by the skill.

Set a global skills folder

If you want to use the same skills across multiple workspaces or AI agents, configure a global skills folder.

Procedure
  1. Open [Settings] > [AI] > [Skills].
  2. In [Global skills folder], add the location where shared skills are stored.
    • You can also use the folder selection dialog.
  3. Turn on [Reference global skills from other AI agents] for the tools you want to use.
  4. Confirm that the detected skills are shown under [Available skills].
    • When you add or change the global skills folder, available skills are re-detected and the settings are saved automatically.
    • Skills placed in the chat working folder, Git repository, or shared workspace are also detected and used automatically.
Skill detection units
  • If SKILL.md exists directly under the specified folder, that folder is detected as one skill.
  • If SKILL.md exists directly under a child folder of the specified folder, each child folder is detected as a separate skill.

このページは役に立ちましたか?