Skip to main content
The skills command installs squirrelscan capabilities into coding agents that support the Agent Skills standard.

What are Agent Skills?

Agent Skills are folders of instructions, scripts, and resources that coding agents can discover and use to perform tasks more accurately. Skills give agents access to procedural knowledge they can load on demand. The Agent Skills format is an open standard supported by many coding agents including:
  • Claude Code - Anthropic’s CLI coding agent
  • Cursor - AI-first code editor
  • VS Code - With GitHub Copilot
  • Gemini CLI - Google’s coding agent
  • OpenAI Codex - OpenAI’s coding agent
  • Goose - Block’s open source agent
  • Amp - Sourcegraph’s coding agent
  • Roo Code - AI coding assistant
For the full list of supported agents, see agentskills.io.

install

Install the squirrelscan skill for your coding agent.

Usage

squirrel skills install

What it Does

The command runs npx skills add to install the audit-website skill from the squirrelscan skills repository. Once installed, you can invoke the skill in your coding agent using:
/audit-website

Example

$ squirrel skills install
Installing squirrelscan skill for Claude Code...

Skill installed! Use /audit-website in Claude Code.
View skill: https://skills.sh/squirrelscan/skills/audit-website

Without npm/npx

If npm/npx is not available, the command displays manual installation instructions:
$ squirrel skills install
npx not found. Install Node.js or run manually:

To run manually:
  npx skills add https://github.com/squirrelscan/skills --skill audit-website -g

View skill: https://skills.sh/squirrelscan/skills/audit-website

update

Update the squirrelscan skill to the latest version.

Usage

squirrel skills update

What it Does

The command runs npx skills update to fetch the latest version of the audit-website skill from the squirrelscan skills repository.

Example

$ squirrel skills update
Updating squirrelscan skill for Claude Code...

Skill updated!
View skill: https://skills.sh/squirrelscan/skills/audit-website

Without npm/npx

If npm/npx is not available, the command displays manual update instructions:
$ squirrel skills update
npx not found. Install Node.js or run manually:

To run manually:
  npx skills update https://github.com/squirrelscan/skills --skill audit-website -g

View skill: https://skills.sh/squirrelscan/skills/audit-website

The audit-website Skill

The audit-website skill gives your coding agent the ability to run comprehensive website audits using squirrelscan. When invoked, the agent will:
  1. Run squirrel audit on the target URL
  2. Analyze the results
  3. Provide actionable recommendations

Invoking the Skill

In Claude Code or other compatible agents:
/audit-website https://example.com
The agent will handle running the audit and interpreting results for you.