Validate and analyze AWS CloudFormation templates for security and best practices
Analyzes AWS CloudFormation templates for security, best practices, and cost estimation.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdValidates and analyzes AWS CloudFormation templates including security scanning with cfn-nag, resource dependency analysis, and cost estimation.
{
"type": "object",
"required": ["templatePath"],
"properties": {
"templatePath": {
"type": "string",
"description": "Path to CloudFormation template"
},
"mode": {
"type": "string",
"enum": ["validate", "security", "cost", "all"],
"default": "all"
},
"options": {
"type": "object",
"properties": {
"parametersFile": {
"type": "string",
"description": "Path to parameters file"
},
"region": {
"type": "string",
"default": "us-east-1"
},
"failOnWarning": {
"type": "boolean",
"default": false
}
}
}
}
}
{
"type": "object",
"properties": {
"valid": {
"type": "boolean"
},
"resources": {
"type": "array",
"items": {
"type": "object",
"properties": {
"logicalId": { "type": "string" },
"type": { "type": "string" },
"dependencies": { "type": "array" }
}
}
},
"securityFindings": {
"type": "array",
"items": {
"type": "object",
"properties": {
"rule": { "type": "string" },
"severity": { "type": "string" },
"resource": { "type": "string" },
"message": { "type": "string" }
}
}
},
"estimatedCost": {
"type": "object",
"properties": {
"monthly": { "type": "number" },
"breakdown": { "type": "array" }
}
}
}
}
{
kind: 'skill',
skill: {
name: 'cloudformation-analyzer',
context: {
templatePath: 'infrastructure/main.yaml',
mode: 'all',
options: {
region: 'us-east-1'
}
}
}
}
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.