AI Agents

Skills

Packaged Claude Code skills built on xgrep — inspect, rule creation, triage, and secure coding.

Skills

xgrep ships a set of Claude Code skill packages under skills/. Each is a self-contained plugin with a README.md, a SKILL.md, command definitions, and reference material.

SkillWhat it does
xgrep-inspectNavigate and understand source code using xgrep's AST-powered code intelligence.
xgrep-rule-creatorCreate custom xgrep rules with a test-first methodology, or port rules to new languages.
xgrep-triageInvestigate and classify scan findings using code-graph analysis.
secure-codingProactively avoid generating vulnerable code.

Installing the skills

The skills are bundled into the xgrep binary, so you don't need to clone the repo to use them — xgrep skill lists and installs them:

# List the skills compiled into this binary
xgrep skill list

# Install all of them into ~/.claude/plugins (the default)
xgrep skill install

# Install only specific skills, or into a custom directory
xgrep skill install xgrep-inspect xgrep-triage
xgrep skill install --dir ./.claude/plugins

Existing files are left untouched unless you pass --force. Once installed, the skills are available to Claude Code in that directory.

For the underlying CLI these skills drive, see Code intelligence and the AI agent guide.

On this page