Skip to content
🆕 Nova skill: Website Spec! Audite sites contra 128 tópicos de HTML, SEO, a11y, segurança e mais. Ver skill →

How to Install and Use AI Agent Skills

TL;DR: Install skills with npx skills add, copy to your agent’s folder, and activate automatically by keywords. Compatible with Kiro, Cursor, Claude Code, and any agent supporting the Agent Skills format.

Terminal window
npx skills add https://gitlab.com/fabriciotelles/skills

Or install a specific skill:

Terminal window
npx skills add https://gitlab.com/fabriciotelles/skills -s premium-proposal-builder
Terminal window
npm install -g agent-skills-cli
skills add https://gitlab.com/fabriciotelles/skills

Clone the repository and copy the desired skill:

Terminal window
git clone https://gitlab.com/fabriciotelles/skills.git
# Cursor
cp -r skills/premium-proposal-builder .cursor/skills/
# Claude Code
cp -r skills/premium-proposal-builder .claude/skills/
# Kiro
cp -r skills/premium-proposal-builder .kiro/skills/

The Agent Skills format is universal and works with any compatible agent. See the official specification for details.

Each skill follows the standard structure:

graph TD
    A[skill-name/] --> B[SKILL.md]
    A --> C[references/]
    A --> D[evals/]
    B --> E[Metadata + Instructions]
    C --> F[Reference docs]
    D --> G[Test scenarios]

Skills are automatically activated when the agent detects related keywords in the user’s message. You can also manually activate by referencing the skill name.

Skills can be configured as:

  • Global — Always available in all interactions
  • Conditional — Activated when specific files are read
  • Manual — Explicitly activated by the user

According to agentskills.io, the Agent Skills format is adopted by over 5,000 developers worldwide. According to Anthropic, structured skills improve agent response quality by up to 40%.

What is the command to install all skills?

Section titled “What is the command to install all skills?”

Run npx skills add https://gitlab.com/fabriciotelles/skills to install all 9 skills at once. The installer detects your agent type automatically and copies files to the correct directory, whether you use Kiro, Cursor, Claude Code, or another compatible agent.

Yes, use the -s flag followed by the skill name. For example: npx skills add https://gitlab.com/fabriciotelles/skills -s premium-proposal-builder. This installs only the selected skill without affecting others already installed in your development environment.

Yes, the Agent Skills format is universal and works with any compatible agent. Copy the skill folder to .cursor/skills/, .kiro/skills/, or .claude/skills/ depending on your agent. The format uses Markdown with structured metadata loaded on demand.