Developer security training and assessment for secure coding practices and vulnerability prevention
Delivers secure coding training modules and assessments to improve developer security practices and reduce vulnerabilities.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdDeliver and manage developer security training programs to improve secure coding practices, assess developer security knowledge, and track training effectiveness in reducing vulnerabilities.
{
"type": "object",
"properties": {
"trainingType": {
"type": "string",
"enum": ["assessment", "module-delivery", "certification", "gap-analysis", "path-recommendation"],
"description": "Type of training activity"
},
"targetAudience": {
"type": "object",
"properties": {
"developers": { "type": "array", "items": { "type": "string" } },
"teams": { "type": "array", "items": { "type": "string" } },
"roles": { "type": "array", "items": { "type": "string" } }
}
},
"technologies": {
"type": "array",
"items": { "type": "string" },
"description": "Programming languages and frameworks"
},
"vulnerabilityFocus": {
"type": "array",
"items": {
"type": "string",
"enum": ["injection", "broken-auth", "xss", "insecure-deserialization", "ssrf", "access-control", "crypto", "logging"]
}
},
"complianceRequirements": {
"type": "array",
"items": {
"type": "string",
"enum": ["PCI-DSS", "HIPAA", "SOC2", "GDPR", "FedRAMP"]
}
},
"assessmentDifficulty": {
"type": "string",
"enum": ["beginner", "intermediate", "advanced", "expert"]
}
},
"required": ["trainingType"]
}
{
"type": "object",
"properties": {
"activityId": {
"type": "string"
},
"trainingType": {
"type": "string"
},
"timestamp": {
"type": "string",
"format": "date-time"
},
"participantSummary": {
"type": "object",
"properties": {
"totalParticipants": { "type": "integer" },
"completedTraining": { "type": "integer" },
"inProgress": { "type": "integer" },
"notStarted": { "type": "integer" }
}
},
"assessmentResults": {
"type": "object",
"properties": {
"averageScore": { "type": "number" },
"passingRate": { "type": "number" },
"topPerformers": { "type": "array" },
"needsImprovement": { "type": "array" }
}
},
"knowledgeGaps": {
"type": "array",
"items": {
"type": "object",
"properties": {
"topic": { "type": "string" },
"gapSeverity": { "type": "string" },
"affectedDevelopers": { "type": "integer" },
"recommendedModules": { "type": "array" }
}
}
},
"trainingPaths": {
"type": "array",
"items": {
"type": "object",
"properties": {
"developerId": { "type": "string" },
"recommendedModules": { "type": "array" },
"estimatedDuration": { "type": "string" },
"priority": { "type": "string" }
}
}
},
"certifications": {
"type": "array",
"items": {
"type": "object",
"properties": {
"developerId": { "type": "string" },
"certificationName": { "type": "string" },
"issueDate": { "type": "string" },
"expirationDate": { "type": "string" }
}
}
},
"effectivenessMetrics": {
"type": "object",
"properties": {
"vulnerabilityReduction": { "type": "number" },
"avgRemediationTimeImprovement": { "type": "string" },
"secureCodeReviewPassRate": { "type": "number" }
}
}
}
}
skill: {
name: 'secure-coding-training-skill',
context: {
trainingType: 'assessment',
targetAudience: {
teams: ['backend-team', 'frontend-team']
},
technologies: ['Java', 'JavaScript', 'Python'],
vulnerabilityFocus: ['injection', 'xss', 'broken-auth'],
assessmentDifficulty: 'intermediate'
}
}
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 a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.