agentsclimarketplace

Performance profiler

Skill rafaelghif/antigravity-agents/.agents/skills/performance-profiler

Enterprise-Grade Guardrails, Zero-Assumption Execution, and Quality Gates for Autonomous AI Coding Agents.

Install
npx -y skills add rafaelghif/antigravity-agents --skill performance-profiler

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Profile code for performance regressions

SKILL.md

1.2 KB, as published. Nobody here has run it

Performance Profiler Skill

Objective

Identify and resolve performance bottlenecks such as N+1 queries, memory leaks, and inefficient algorithms.

When to Execute

  • When modifying database queries or loops processing large datasets.
  • During PR reviews for performance-critical modules.

Execution Steps

  1. Check for N+1 queries in ORM/database operations.
  2. Analyze loops for inefficient algorithmic complexity (e.g., O(n²) vs O(n)).
  3. Check for memory leaks. Run memory profiler in production mode for 5 minutes with simulated load. Track heap size growth pattern: if +10% in <5 minutes → investigate. Check event listener count: process._getActiveHandles() (Node.js) or len(weakref.getweakrefs()) (Python). Report findings with before/after heap snapshots.
  4. For frontend applications, run Lighthouse (or similar) to evaluate performance metrics.
  5. Report findings in .agents/plans/perf-<date>.md and propose optimizations.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.