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.
| Skill | What it does |
|---|---|
| xgrep-inspect | Navigate and understand source code using xgrep's AST-powered code intelligence. |
| xgrep-rule-creator | Create custom xgrep rules with a test-first methodology, or port rules to new languages. |
| xgrep-triage | Investigate and classify scan findings using code-graph analysis. |
| secure-coding | Proactively 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/pluginsExisting 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.