performance-optimization

仓库创建 2026年7月5日最近提交 22 天前SkillHot 收录 22 天前
▸ 精选理由

依数据改进性能,减少不必要的复杂度。

这个 Skill 做什么

基于度量与剖析定位并修复性能瓶颈,避免盲目优化。

先量化再优化:通过 profiling 和度量定位真实瓶颈,避免盲目优化带来不必要复杂度。适合在有性能指标、怀疑回归或需要改善 Core Web Vitals 和加载时间时使用。做法是找出瓶颈、修复再测,确保每次优化都有可观的收益。

▸ 展开 SKILL.md 英文原文

Optimizes application performance. Use when performance requirements exist, when you suspect performance regressions, or when Core Web Vitals or load times need improvement. Use when profiling reveals bottlenecks that need fixing.

开发编程性能优化分析剖析瓶颈修复通用
0
Stars
0
Forks
25
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/kulapoo/opencode-agent-harness/main/skills/performance-optimization/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/kulapoo/opencode-agent-harness/main/skills/performance-optimization/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Performance Optimization

## Overview

Measure before optimizing. Performance work without measurement is guessing — and guessing leads to premature optimization that adds complexity without improving what matters. Profile first, identify the actual bottleneck, fix it, measure again. Optimize only what measurements prove matters.

## When to Use

- Performance requirements exist in the spec (load time budgets, response time SLAs)
- Users or monitoring report slow behavior
- Core Web Vitals scores are below thresholds
- You suspect a change introduced a regression
- Building features that handle large datasets or high traffic

**When NOT to use:** Don't optimize before you have evidence of 
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有