perf-profiler
FeaturedUse when profiling CPU/memory hot paths, generating flame graphs, or capturing JFR/perf evidence.
AI & Automation 967 stars
111 forks Updated 4 days ago MIT
Install
Quality Score: 94/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# perf-profiler
Run profiling tools and capture hotspots with evidence.
Follow `docs/perf-requirements.md` as the canonical contract.
## Parse Arguments
```javascript
const args = '$ARGUMENTS'.split(' ').filter(Boolean);
const tool = args[0] || '';
const command = args.slice(1).join(' ');
```
## Required Rules
- Verify debug symbols before profiling.
- Capture file:line for hotspots.
- Provide flame graph or equivalent output when possible.
## Output Format
```
tool: <profiler>
command: <command>
hotspots:
- file:line - reason
artifacts:
- <path to flame graph or profile>
```
## Constraints
- No profiling without a clear scenario.
- Keep outputs minimal and evidence-backed.
Details
- Author
- agent-sh
- Repository
- agent-sh/agentsys
- Created
- 7 months ago
- Last Updated
- 4 days ago
- Language
- JavaScript
- License
- MIT
Integrates with
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
Data & Documents Listed
perf-profiler
Use when profiling CPU/memory hot paths, generating flame graphs, or capturing JFR/perf evidence.
1,898 Updated 3 weeks ago
composio-community AI & Automation Listed
perf-analyzer
Use when synthesizing perf findings into evidence-backed recommendations and decisions.
1,898 Updated 3 weeks ago
composio-community AI & Automation Featured
perf-analyzer
Use when synthesizing perf findings into evidence-backed recommendations and decisions.
967 Updated 4 days ago
agent-sh