Skip to main content
Install the SafeDep skill and your AI coding agent can answer questions about your tenant in plain English. Ask “which projects have critical vulnerabilities?” and the agent translates it into a SafeDep Cloud SQL query, runs it through the safedep CLI, and hands back the result. You skip the SQL and the schema lookup.

Prerequisites

  • A SafeDep Cloud tenant with data synced from your tools. The agent can only answer what your tenant holds, so connect at least one source first.
  • The safedep CLI installed and signed in. Run safedep auth login, then safedep auth status to confirm the tenant. See the authentication guide.
  • An AI coding agent that supports skills, such as Claude Code.

Install the skill

/plugin marketplace add safedep/skills
/plugin install safedep-agent-skills@safedep-agent-skills
Turn on auto-update in Claude Code settings to stay on the current version.

Ask a question

Type your question the way you would ask a teammate:
How many projects are being monitored?
The agent loads the SafeDep skill, writes a tenant-scoped query, runs safedep query exec, and replies with the count. Every answer traces back to a real query, so you can ask the agent to show the SQL it ran. Questions that map cleanly to your synced data:
AskReads from
How many projects are we monitoring?Projects
Which projects have critical vulnerabilities?Projects, packages, vulnerabilities
Any malicious packages blocked across dev endpoints last week?Package Guard events
Which developer machines are running PMG?Endpoints
Which endpoints have not synced in 30 days?Endpoints

Write your own queries

The skill runs the same query interface you can drive by hand. To see the full table list, join edges, and query rules, read SafeDep Cloud SQL. When an agent answer looks off, run the query yourself with safedep query exec and compare.
Queries are scoped to your authenticated tenant. The agent never sees data outside it, and you never write a tenant filter yourself.