performance-profiling
FeaturedPerformance profiling principles. Measurement, analysis, and optimization techniques.
AI & Automation 39,227 stars
6374 forks Updated today MIT
Install
Quality Score: 99/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Performance Profiling
> Measure, analyze, optimize - in that order.
## 🔧 Runtime Scripts
**Execute these for automated profiling:**
| Script | Purpose | Usage |
|--------|---------|-------|
| `scripts/lighthouse_audit.py` | Lighthouse performance audit | `python scripts/lighthouse_audit.py https://example.com` |
---
## 1. Core Web Vitals
### Targets
| Metric | Good | Poor | Measures |
|--------|------|------|----------|
| **LCP** | < 2.5s | > 4.0s | Loading |
| **INP** | < 200ms | > 500ms | Interactivity |
| **CLS** | < 0.1 | > 0.25 | Stability |
### When to Measure
| Stage | Tool |
|-------|------|
| Development | Local Lighthouse |
| CI/CD | Lighthouse CI |
| Production | RUM (Real User Monitoring) |
---
## 2. Profiling Workflow
### The 4-Step Process
```
1. BASELINE → Measure current state
2. IDENTIFY → Find the bottleneck
3. FIX → Make targeted change
4. VALIDATE → Confirm improvement
```
### Profiling Tool Selection
| Problem | Tool |
|---------|------|
| Page load | Lighthouse |
| Bundle size | Bundle analyzer |
| Runtime | DevTools Performance |
| Memory | DevTools Memory |
| Network | DevTools Network |
---
## 3. Bundle Analysis
### What to Look For
| Issue | Indicator |
|-------|-----------|
| Large dependencies | Top of bundle |
| Duplicate code | Multiple chunks |
| Unused code | Low coverage |
| Missing splits | Single large chunk |
### Optimization Actions
| Finding | Action |
|---------|--------|
| Big library | Import specific modules |...
Details
- Author
- sickn33
- Repository
- sickn33/antigravity-awesome-skills
- Created
- 4 months ago
- Last Updated
- today
- Language
- Python
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
API & Backend Solid
performance-profiling
Performance profiling principles. Measurement, analysis, and optimization techniques.
27,681 Updated today
davila7 API & Backend Listed
performance-profiling
Performance profiling principles. Measurement, analysis, and optimization techniques.
335 Updated today
aiskillstore AI & Automation Listed
performance-profiler
Performance Profiler
0 Updated today
nariatrip191 AI & Automation Solid
performance-profiler
Performance Profiler
16,642 Updated yesterday
alirezarezvani API & Backend Listed
optimizing-performance
Analyzes and optimizes application performance across frontend, backend, and database layers. Use when diagnosing slowness, improving load times, optimizing queries, reducing bundle size, or when asked about performance issues.
1,364 Updated 3 months ago
CloudAI-X