performance-profiler
SolidProfile application performance including CPU, memory, and flame graph generation
AI & Automation 1,160 stars
71 forks Updated today MIT
Install
Quality Score: 96/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Performance Profiler Skill
## Overview
Profiles application performance including CPU profiling, memory profiling, flame graph generation, bottleneck identification, and APM tool integration.
## Capabilities
- CPU profiling
- Memory profiling and heap snapshots
- Flame graph generation
- Bottleneck identification
- Hot path analysis
- Integration with APM tools (DataDog, New Relic)
- Event loop analysis (Node.js)
- Garbage collection analysis
## Target Processes
- performance-optimization
## Input Schema
```json
{
"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"
}
}
}
}
}
```
## Output Schema
```json
{
"type": "object",
"properties": {
"profile": {
...
Details
- Author
- a5c-ai
- Repository
- a5c-ai/babysitter
- Created
- 4 months ago
- Last Updated
- today
- Language
- JavaScript
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
performance-profiler
Performance Profiler
16,782 Updated 3 days ago
alirezarezvani AI & Automation Listed
performance-profiler
Performance Profiler
0 Updated today
nariatrip191 AI & Automation Solid
code-profiler
Profile code performance and identify bottlenecks
1,160 Updated today
a5c-ai Data & Documents Solid
when-profiling-performance-use-performance-profiler
Comprehensive performance profiling, bottleneck detection, and optimization system
335 Updated today
aiskillstore Data & Documents Listed
perf-profiler
Use when profiling CPU/memory hot paths, generating flame graphs, or capturing JFR/perf evidence.
1,707 Updated 1 months ago
ComposioHQ