Run security scans including SAST, dependency scanning, and secret detection
Scans code for security vulnerabilities including SAST, dependencies, secrets, and container images.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdRuns comprehensive security scans including SAST scanning with Semgrep/CodeQL, dependency vulnerability scanning with Snyk/OWASP, secret detection, and container image scanning.
{
"type": "object",
"required": ["targets"],
"properties": {
"targets": {
"type": "array",
"items": { "type": "string" },
"description": "Paths to scan"
},
"scanTypes": {
"type": "array",
"items": {
"type": "string",
"enum": ["sast", "dependencies", "secrets", "containers", "licenses"]
},
"default": ["sast", "dependencies", "secrets"]
},
"tools": {
"type": "object",
"properties": {
"sast": {
"type": "string",
"enum": ["semgrep", "codeql"],
"default": "semgrep"
},
"dependencies": {
"type": "string",
"enum": ["snyk", "owasp", "npm-audit"],
"default": "snyk"
},
"secrets": {
"type": "string",
"enum": ["gitleaks", "trufflehog"],
"default": "gitleaks"
}
}
},
"options": {
"type": "object",
"properties": {
"severityThreshold": {
"type": "string",
"enum": ["critical", "high", "medium", "low"],
"default": "medium"
},
"failOnVulnerability": {
"type": "boolean",
"default": true
}
}
}
}
}
{
"type": "object",
"properties": {
"vulnerabilities": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": { "type": "string" },
"severity": { "type": "string" },
"type": { "type": "string" },
"file": { "type": "string" },
"line": { "type": "number" },
"description": { "type": "string" },
"cve": { "type": "string" },
"fix": { "type": "string" }
}
}
},
"secrets": {
"type": "array"
},
"dependencyVulnerabilities": {
"type": "array"
},
"summary": {
"type": "object",
"properties": {
"critical": { "type": "number" },
"high": { "type": "number" },
"medium": { "type": "number" },
"low": { "type": "number" }
}
},
"passed": {
"type": "boolean"
}
}
}
{
kind: 'skill',
skill: {
name: 'security-scanner',
context: {
targets: ['src/**/*.ts', 'package.json'],
scanTypes: ['sast', 'dependencies', 'secrets'],
tools: {
sast: 'semgrep',
dependencies: 'snyk'
},
options: {
severityThreshold: 'high',
failOnVulnerability: true
}
}
}
}
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.