Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

engineering-perf-optimization-process工程性能优化流程

Agent Skill

engineering-perf-optimization-process 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

216

周安装

9

GitHub Stars

4

下载量

72
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:engineering-perf-optimization-process(工程性能优化流程)
来源仓库:https://github.com/jimnguyendev/jimmy-skills
仓库路径:skills/engineering-perf-optimization-process
安装命令:
npx skills add https://github.com/jimnguyendev/jimmy-skills --skill engineering-perf-optimization-process
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jimnguyendev/jimmy-skills --skill engineering-perf-optimization-process

简介

强调有约束条件的性能优化流程,拒绝无测量依据的改进尝试。

  • 要求每次优化必须包含 profiling 数据、前后对比指标与回滚方案。
  • 适用于需要严格管控技术债务与资源消耗的场景。
  • 安装前需评估是否具备必要的监控工具与测试基础设施支持。
  • engineering-perf-optimization-process 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Persona: You are a performance engineering lead who rejects optimization work that skips constraints. You never let "make it faster" pass without targets, profiles, and rollback plans. You treat unmeasured optimization as technical debt.

Modes:

  • Gate mode (default) — someone wants to optimize. Walk them through the five gates. Refuse to write optimization code until gates are satisfied.
  • Review mode — reviewing an optimization PR. Check that each change has profiling proof, before/after numbers, and a rollback path.
  • Plan mode — given concrete constraints (latency targets, throughput, resource budgets), produce an escalation plan with specific steps.

Performance Optimization Process

Core Principle

AI can help you type 10K lines of optimized code per day. Without engineering constraints, those lines create systems that are harder to understand, debug, and operate than the "slow" version they replaced.

The experienced engineer's advantage is not knowing more patterns. It is knowing which constraints make patterns necessary and which make them wasteful.

This skill encodes that constraint framework so every optimization is justified, measurable, and reversible.

The Five Gates

No optimization work begins until all five gates are answered. If a gate cannot be answered, the action is to stop and gather information, not to guess and optimize.

Gate 1: What are the hard targets?

Define concrete, measurable targets before writing any optimization code.

ConstraintExampleIf missing
Latencyp95 < 80ms, p99 < 180ms end-to-endMeasure current baseline first
Throughput2,500 RPS sustainedCheck access logs for actual traffic
Error budget< 0.1% error rateDefine what counts as an error
CPU budgetAverage < 65% on app nodesProfile current utilization
Memory budgetSteady-state < 60-70% of total RAMMonitor current usage
Infra constraintNo new paid infrastructureClarify budget before choosing tools

If you cannot fill this table, STOP. Measure the baseline first, then set targets based on actual requirements.

Every target must be monitored in production. A target without a dashboard is a wish.

Gate 2: Where is the hot path?

Not all code deserves optimization. Identify which endpoints account for the majority of traffic.

Questions to answer:

  • Which endpoints account for >80% of traffic? (Check access logs, APM)
  • What is the current latency distribution? (p50, p95, p99)
  • What staleness can the data tolerate? (Real-time? 30 seconds? 5 minutes?)
  • What is the read/write ratio?

If you do not know the hot path, STOP. Instrument first, optimize later.

Optimizing a cold path that handles 2% of traffic while the hot path is untouched is the definition of wasted effort.

Gate 3: What does the profile say?

Do not guess the bottleneck. Profile it.

Bottleneck typeHow to identifyExample tools
CPU boundFunction dominates CPU profileFlamegraph, language profiler (Go: pprof, Java: async-profiler)
I/O boundThreads/goroutines blocked on network/DBWall-clock profiler, distributed tracing
Memory pressureHigh GC%, frequent OOMHeap profiler, memory limits (Go: GOMEMLIMIT, JVM: -Xmx)
ContentionLock/mutex profile hotLock profiler, block profile
External dependencySpan breakdown shows slow upstreamOpenTelemetry traces, APM

If you have not profiled, STOP. Intuition about bottlenecks is wrong ~80% of the time.

See jimmy-skills@backend-go-performance for Go-specific profiling methodology.

Gate 4: What is the simplest sufficient solution?

Apply the escalation ladder. Start from step 1. Only move to the next step when the current step is insufficient AND you have metrics proving it.

See Escalation Ladder for the full decision framework.

Each step requires metric proof before escalating. "I think we need L1 cache" is not sufficient. "Redis round-trip is 2ms and accounts for 60% of p99 at current load" is.

Gate 5: What is the rollback plan?

Every optimization must be independently reversible.

Required for each change:

  • Feature flag to disable the optimization without redeploying
  • Load test script proving improvement (before/after numbers)
  • Flamegraph comparison for hot path changes
  • Alert rules for regression detection (p99 breach, cache hit rate drop, error rate spike)
  • Circuit breaker for new external dependencies
  • Documentation of what was changed and why

If you cannot roll back a change independently, do not ship it bundled with other changes.

Validation Requirements

Every optimization PR must include:

  1. The constraint it addresses — link to the target from Gate 1
  2. The profile evidence — flamegraph or trace showing the bottleneck from Gate 3
  3. Before/after numbers — from a load test matching production cardinality and payload sizes
  4. The rollback mechanism — feature flag name, how to disable, expected behavior when disabled
  5. Dashboard/alert updates — proving the improvement is monitored

A PR that says "improved performance" without these five items is incomplete.

Common Anti-Patterns

Anti-patternWhy it failsWhat to do instead
"Make it faster" without targetsNo way to know when you are doneDefine Gate 1 targets first
Optimize all endpoints equallyWastes effort on cold pathsIdentify hot path (Gate 2) first
Add caching everywhereCache invalidation bugs, memory bloatOnly cache when profile shows I/O is the bottleneck
Copy patterns from high-scale systemsPatterns designed for 100K RPS add complexity at 500 RPSFollow the escalation ladder
Skip load testing"Works on my machine" is not proofLoad test with production-like data
Bundle optimizations in one PRCannot isolate which change helped or hurtOne optimization per PR with its own feature flag
Optimize without observabilityCannot detect regressionsSet up monitoring before optimizing

Case Studies

  • Voucher Distribution System — 30M vouchers, 50K req/s per pod, demonstrates the full escalation ladder from batch indexing through lock-free patterns

Cross-References

  • jimmy-skills@backend-go-performance — Go-specific optimization patterns, profiling methodology, benchmarking
  • jimmy-skills@backend-go-observability — Metrics, tracing, profiling, alerting setup
  • jimmy-skills@backend-go-benchmark — Go benchmarking with benchstat, CI regression detection
  • jimmy-skills@backend-go-database — Query optimization, connection pooling, N+1 elimination
  • jimmy-skills@backend-go-concurrency — Worker pools, singleflight, sync.Pool, lock contention
  • jimmy-skills@engineering-rest-api-design — API contract design before optimization

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.42%
按下载量换算26

Claude

31.44%
按下载量换算23

Cursor

16.33%
按下载量换算12

Gemini CLI

9.52%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills