Endor Labs skills in Claude Code
Endor Labs skills integrate directly into Claude Code to guide the AI assistant with reusable security workflows, catching security issues before they reach production.
The following sections walk you through setting up Endor Labs skills in Claude Code:
- Prerequisites for Endor Labs skills
- One-command installation
- Install skills manually
- Available skills
- Use skills with Claude Code
- Next steps
Prerequisites for Endor Labs skills
Ensure that the following prerequisites are met:
- Claude Code
- Node.js v18+ (for
npx)
One-command installation
Run the following command from your project root to install all Endor Labs skills. The skills package detects Claude Code automatically and installs skills into .claude/skills/.
npx skills add endorlabs/ai-plugins
You can also install skills manually if you prefer.
Install skills manually
If you prefer not to use npx, clone the repository and copy the skills into your project.
-
Clone the ai-plugins repository to a temporary directory.
git clone https://github.com/endorlabs/ai-plugins /tmp/ai-plugins -
Skills can be installed at your project level by placing them in
.claude/skills/at the root of your repository, or at the global level by adding them to~/.claude/skills/to make them available across all your projects.Project level (at the root of your repository)
mkdir -p .claude/skills cp -r /tmp/ai-plugins/skills/* .claude/skills/Global level (available for all your projects)
mkdir -p ~/.claude/skills cp -r /tmp/ai-plugins/skills/* ~/.claude/skills/ -
Confirm the directory structure. Your project should have the following structure.
.claude/skills └── endor-setup └── SKILL.md
Available skills
| Skill | Description | Trigger phrases |
|---|---|---|
| endor-setup | Install, authenticate, and configure endorctl automatically and run security scans. | “setup endorctl”, “install endorctl”, “run endorctl scan”, “scan for vulnerabilities” |
Use skills with Claude Code
- “Set up endorctl and authenticate with Endor Labs.”
- “Run endorctl scan for this repo”
- “Run endorctl quick scan for this repo”
Next steps
For enhanced tool integration, configure the Endor Labs MCP server in Claude Code.
Feedback
Was this page helpful?
Thanks for the feedback. Write to us at support@endor.ai to tell us more.
Thanks for the feedback. Write to us at support@endor.ai to tell us more.