Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

perf-optimizer性能优化器

Agent Skill

perf-optimizer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,176

周安装

49

GitHub Stars

2,371

下载量

392
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/onekeyhq/app-monorepo --skill perf-optimizer

简介

用于查找、检索和筛选相关信息。perf-optimizer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写。
  • 归类为研究检索类,符合其信息筛选的核心能力。

SKILL.md

Performance Optimizer

Systematic workflow for diagnosing and fixing performance issues in the OneKey mobile app using the perf-ci infrastructure and performance-server tooling.

Overview

This skill provides a structured iterative approach to:

  • Establish performance baselines from existing sessions
  • Run controlled perf measurements (3 runs, median aggregation)
  • Analyze session data to identify bottlenecks
  • Make targeted code changes
  • Verify improvements against thresholds
  • Document all changes and results

Key Metrics:

  • tokensStartMs: Time when Home tokens refresh starts (lower is better)
  • tokensSpanMs: Duration of Home tokens refresh (lower is better)
  • functionCallCount: Total function calls during session (lower is better)

Success Criteria:

  • SUCCESS: Time metrics improve by ≥10%
  • 🌟 MINOR_IMPROVEMENT: Time unchanged but function calls reduce by ≥20% (safe, small-scope changes)
  • NO_IMPROVEMENT: Neither threshold met → revert changes

Workflow

Phase 1: Setup and Baseline

Step 1.1: Select Baseline Session

Ask user to choose a baseline session or help them select one:

# List recent sessions with key metrics
cat ~/perf-sessions/sessions.overview.jsonl | \
  jq -r '[.sessionId, .createdAt, .marks["Home:refresh:done:tokens"]] | @tsv' | \
  tail -20

User can specify:

  • A known good session (for regression fixes)
  • A recent session (for improvement work)
  • Let you choose a representative session

Step 1.2: Analyze Baseline

Extract baseline metrics from the session:

# Get detailed analysis
node development/performance-server/cli/derive-session.js <baseline-sessionId> \
  --pretty \
  --output /tmp/perf-baseline-derived.json

Read baseline metrics from ~/perf-sessions/<sessionId>/mark.log:

# Extract tokensStartMs (timestamp of Home:refresh:start:tokens)
grep "Home:refresh:start:tokens" ~/perf-sessions/<sessionId>/mark.log | jq '.timestamp'

# Extract tokensSpanMs (done - start)
grep "Home:refresh:done:tokens" ~/perf-sessions/<sessionId>/mark.log | jq '.timestamp'

# Count function calls
wc -l < ~/perf-sessions/<sessionId>/function_call.log

Create baseline metrics JSON for comparison:

echo '{"tokensStartMs": <start>, "tokensSpanMs": <span>, "functionCallCount": <count>}' > /tmp/baseline-metrics.json

Step 1.3: Initialize Documentation

Create session document at development/output/perf-optimization-<timestamp>.md using the template from references/template.md. Fill in:

  • Current date/time
  • Baseline session ID
  • Baseline metrics
  • Current branch name
  • Target (regression fix or improvement)

Phase 2: Iterative Optimization Loop

Maximum iterations: 10

For each iteration (run in a sub-agent):

Step 2.1: Run Performance Tests

The perf script automatically runs 3 times and aggregates results:

node development/perf-ci/run-ios-perf-detox-release.js

Output location: development/perf-ci/output/<jobId>/

  • report.json - Contains aggregated results in agg field
  • detox/runs.json - Contains individual run sessionIds

Extract current metrics from report.json:

# Read aggregated metrics directly
cat development/perf-ci/output/<jobId>/report.json | jq '{
  tokensStartMs: .agg.tokensStartMs,
  tokensSpanMs: .agg.tokensSpanMs,
  functionCallCount: .agg.functionCallCount
}' > /tmp/current-metrics.json

Step 2.2: Analyze Current Performance

For deeper analysis, run derive-session on individual sessions:

# Get sessionIds from the run
SESSIONS=$(cat development/perf-ci/output/<jobId>/detox/runs.json | jq -r '.runs[].sessionId')

# Analyze each session
for sid in $SESSIONS; do
  node development/performance-server/cli/derive-session.js $sid \
    --pretty \
    --output /tmp/perf-derived-$sid.json
done

Focus on these sections in the derived output:

  • slowFunctions: Functions taking the most cumulative time
  • homeRefreshTokens: What's consuming time in the critical refresh window
  • jsblock: Main thread blocks causing delays
  • repeatedCalls: Thrashing patterns or excessive re-renders
  • keyMarks: Critical milestone timing

Identify top 1-3 bottlenecks that are:

  • Taking significant time
  • Potentially optimizable
  • Within the critical path (Home refresh flow)

Step 2.3: Determine Action

Compare current metrics to baseline:

# Quick comparison
cat /tmp/baseline-metrics.json
cat /tmp/current-metrics.json

# Calculate deltas manually or use script in skill directory

Decision tree:

If current metrics show improvement over baseline:

  • SUCCESS (≥10% time improvement) → STOP, document success
  • 🌟 MINOR_IMPROVEMENT (≥20% function call reduction, time stable) → Create branch, commit, return to main branch, continue

If no improvement yet:

  • Continue to Step 2.4 (make changes)

If iteration count reaches 10:

  • Document findings and stop

Step 2.4: Make Code Changes

Based on analysis, make ONE targeted change per iteration:

Change types:

  1. Optimization: Remove redundant work, cache results, reduce allocations
  2. Add perfMark: Add marks to understand unclear bottlenecks better
  3. Both: Add marks + optimize in same area

Guidelines:

  • One change at a time (unless analysis proves multiple changes must work together)
  • Small, focused changes
  • Safe changes only (never break functionality)
  • Document rationale clearly

Adding perfMarks:

Use the performance utilities in packages/shared/src/performance/:

import { perfMark } from '@onekeyhq/shared/src/performance/perfMark';

// Add mark at a specific point
perfMark('MyComponent:operation:start');
// ... operation ...
perfMark('MyComponent:operation:done');

Naming convention: <Component>:<action>:<phase> (e.g., Home:refresh:start:tokens)

If adding perfMarks for investigation:

  1. Add marks around suspected bottleneck
  2. Run one perf cycle with marks
  3. Analyze new data with marks visible
  4. Then make code optimization
  5. Verify with another perf cycle

Step 2.5: Document Iteration

Update the session document with:

  • Analysis: Job ID, session IDs, median metrics, key findings from derive-session
  • Code Changes: File, location, change type, description, rationale
  • Verification Results: New job ID, metrics, deltas vs previous/baseline, verdict, action taken

Phase 3: Finalization

Step 3.1: Handle MINOR_IMPROVEMENT Branch

If any iterations resulted in MINOR_IMPROVEMENT:

git checkout -b perf/minor-<description>
git add <changed-files>
git commit -m "perf: <description>

Reduces function call count by X% while maintaining time metrics.

Reason: <brief explanation>
"
git checkout <original-branch>
git restore .

Document the branch name in the session document.

Step 3.2: Complete Documentation

Fill in the Summary section:

  • Total iterations run
  • Final result (SUCCESS with % improvement, or still investigating)
  • List all effective changes
  • List all ineffective changes with reasons
  • List any branches created
  • Next steps if incomplete

Key Files and Paths

Perf Infrastructure:

  • development/perf-ci/run-ios-perf-detox-release.js - Main perf runner
  • development/perf-ci/output/<jobId>/ - Job output directory
  • development/performance-server/cli/derive-session.js - Session analyzer
  • ~/perf-sessions/ - Session data storage (default)
  • ~/perf-sessions/sessions.overview.jsonl - Session index

Thresholds:

  • development/perf-ci/thresholds/ios.release.json - Release mode thresholds

Performance Utilities:

  • packages/shared/src/performance/perfMark.ts - Performance marking utility

References

  • references/template.md: Session documentation template
  • references/perf_tool_guide.md: Detailed guide to derive-session and analysis tools

Important Notes

  1. Run each optimization loop in a sub-agent to avoid context bloat
  2. Never commit changes unless SUCCESS or MINOR_IMPROVEMENT
  3. Always document failed attempts - helps avoid repeating ineffective changes
  4. Trust the data - if metrics don't improve, revert even if change "should" help
  5. Be patient - each perf run takes significant time (build + 3 runs); rushing leads to mistakes
  6. Focus on the critical path - Home screen tokens refresh is the key metric
  7. Watch for trade-offs - some optimizations might reduce one metric but increase another

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.75%
按下载量换算140

Claude

31.17%
按下载量换算122

Cursor

20.95%
按下载量换算82

Gemini CLI

9.19%
按下载量换算36

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills