Profile application performance including CPU, memory, and flame graph generation
Profiles application performance with CPU, memory analysis, and flame graph generation to identify bottlenecks.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdProfiles application performance including CPU profiling, memory profiling, flame graph generation, bottleneck identification, and APM tool integration.
{
"type": "object",
"required": ["target"],
"properties": {
"target": {
"type": "string",
"description": "Target process, script, or endpoint"
},
"mode": {
"type": "string",
"enum": ["cpu", "memory", "heap", "all"],
"default": "cpu"
},
"duration": {
"type": "number",
"default": 30,
"description": "Profiling duration in seconds"
},
"options": {
"type": "object",
"properties": {
"samplingInterval": {
"type": "number",
"default": 1000,
"description": "Sampling interval in microseconds"
},
"generateFlameGraph": {
"type": "boolean",
"default": true
},
"outputFormat": {
"type": "string",
"enum": ["json", "html", "svg"],
"default": "html"
}
}
}
}
}
{
"type": "object",
"properties": {
"profile": {
"type": "object",
"properties": {
"duration": { "type": "number" },
"samples": { "type": "number" }
}
},
"hotspots": {
"type": "array",
"items": {
"type": "object",
"properties": {
"function": { "type": "string" },
"selfTime": { "type": "number" },
"totalTime": { "type": "number" },
"percentage": { "type": "number" }
}
}
},
"flameGraphPath": {
"type": "string"
},
"memoryStats": {
"type": "object",
"properties": {
"heapUsed": { "type": "number" },
"heapTotal": { "type": "number" },
"external": { "type": "number" }
}
},
"recommendations": {
"type": "array",
"items": { "type": "string" }
}
}
}
{
kind: 'skill',
skill: {
name: 'performance-profiler',
context: {
target: 'npm run start',
mode: 'cpu',
duration: 30,
options: {
generateFlameGraph: true,
outputFormat: 'html'
}
}
}
}
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.