Skip to main content

Using with Other Tools

Unlayer Agent Skills work with any AI coding assistant that supports custom context files. This page covers setup for GitHub Copilot, Windsurf, and manual installation for other tools.

GitHub Copilot

npx skills add unlayer/unlayer-skills --agent copilot

Skills are installed to .agents/skills/ in your project directory. GitHub Copilot uses these files as additional context when generating responses.

Verify:

ls .agents/skills/unlayer*

Windsurf

npx skills add unlayer/unlayer-skills --agent windsurf

Skills are installed to .agents/skills/ in your project directory. Windsurf picks them up automatically as context for your AI conversations.

Verify:

ls .agents/skills/unlayer*

Manual Installation

The skills are plain Markdown files hosted on GitHub. You can add them to any AI tool that supports custom instructions or context files:

  1. Clone or download the repository:
git clone https://github.com/unlayer/unlayer-skills.git
  1. Copy the skill folders into your project's .agents/skills/ directory:
mkdir -p .agents/skills
cp -r unlayer-skills/unlayer* .agents/skills/

The skill folders are: unlayer/, unlayer-integration/, unlayer-custom-tools/, unlayer-export/, and unlayer-config/. Each contains a self-contained SKILL.md file.

Update

For all tools, pull the latest skills with:

npx skills update