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

nodejs-performanceNode.js 性能

Agent Skill

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

总安装

636

周安装

26

GitHub Stars

1

下载量

206
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/microlinkhq/skills --skill nodejs-performance

简介

nodejs-performance 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合整理仓库状态与变更事项。

  • 适用于围绕代码协作、仓库状态和开发流程的信息组织与梳理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Node.js Performance

Use this workflow to turn Node.js performance/resource investigations into safe, reviewable PRs.

Goals

  • Improve execution time first: reduce p50/p95/p99 latency and increase throughput without changing intended behavior.
  • Reduce CPU, memory, event-loop lag, I/O pressure, or lock contention when it supports execution-time gains.
  • Ship small, isolated changes with measurable impact.

Operating Rules

  • Work on one optimization per PR.
  • Always choose the highest expected-impact task first.
  • Confirm and respect intentional behaviors before changing them.
  • Prefer low-risk changes in high-frequency paths.
  • Prioritize request/job execution-path work over bootstrap/startup micro-optimizations unless startup is on the critical path at scale.
  • Include evidence: targeted tests + before/after benchmark.

Impact-First Selection

Before coding, rank candidates using this score:

priority = (frequency x blast_radius x expected_gain) / (risk x effort)

Use 1-5 for each factor:

  • frequency: how often the path runs in production.
  • blast_radius: how many requests/jobs/users are affected.
  • expected_gain: estimated latency/resource improvement.
  • risk: probability of behavior regression.
  • effort: engineering time and change surface area.

Pick the top-ranked candidate, then validate with a baseline measurement.

If two candidates have similar score, pick the one with clearer end-to-end execution-time impact.

Prioritization Targets

Start with code that runs on every request/job/task:

  • Request/job wrappers and middleware.
  • Retry/timeout/circuit-breaker code.
  • Connection pools (DB/Redis/HTTP) and socket reuse.
  • Stream/pipeline transformations and buffering.
  • Serialization/deserialization hot paths (JSON, parsers, schema validation).
  • Queue consumers, schedulers, and worker dispatch.
  • Event listener attach/detach lifecycle and cleanup logic.

Deprioritize unless justified by production profile:

  • One-time startup/bootstrap code.
  • Rare admin/debug-only flows.
  • Teardown paths that are not on the steady-state critical path.

Common Hot-Path Smells

  • Recomputing invariant values per invocation.
  • Re-parsing code/AST repeatedly.
  • Duplicate async lookups returning the same value.
  • Per-call heavy object allocation in common-case parsing.
  • Unnecessary awaits in teardown/close/dispose paths.
  • Missing fast paths for dominant input shapes.
  • Unbounded retries or retry storms under degraded dependencies.
  • Excessive concurrency causing memory spikes or downstream saturation.
  • Work done for logging/telemetry/metrics formatting even when disabled.

Execution Workflow

  1. Pick one candidate
  • Rank candidates and pick the highest priority score.
  • Explain the issue in one sentence.
  • State expected impact (CPU, latency, memory, event-loop lag, I/O, contention).
  1. Prove it is hot
  • Add a focused micro-benchmark or scenario benchmark.
  • Capture baseline numbers before editing.
  • Prefer scenario benchmarks that include real request/job flow when the goal is execution-time improvement.
  • For resource issues, capture process metrics (rss, heap, FD count, event-loop delay).
  1. Design minimal fix
  • Keep behavior-compatible defaults.
  • Add fallback path for edge cases.
  • Avoid broad refactors in the same PR.
  1. Implement
  • Make the smallest patch that removes repeated work.
  • Keep interfaces stable unless change is necessary.
  1. Test
  • Add/adjust targeted tests for new behavior and regressions.
  • Run relevant package tests (not only whole-monorepo by default).
  • Add concurrency/degradation tests when the bug appears only under load.
  1. Benchmark again
  • Re-run the same benchmark with same parameters.
  • Report absolute and relative deltas.
  • Include latency deltas first (p50/p95/p99, throughput), then resource deltas when applicable.
  1. Package PR
  • Branch naming: codex/perf-<area>-<change>.
  • Commit message: perf(<package>): <what changed>.
  • Include risk notes and rollback simplicity.
  1. Iterate
  • Wait for review, then move to next isolated improvement.

Benchmarking Guidance

  • Keep benchmark scope narrow to isolate one change.
  • Use warmup iterations.
  • Measure both:
  • micro: operation-level overhead.
  • scenario: request/job flow, concurrency, and degraded dependency condition.
  • For execution-time work, scenario numbers are the decision-maker; micro numbers are supporting evidence.
  • Always print:
  • total time
  • per-op time
  • p50/p95/p99 latency when applicable
  • speedup ratio
  • iterations and workload shape
  • resource counters (rss, heap, handles, event-loop delay) when relevant

Resource Exhaustion Checklist

  • Cap concurrency at each boundary (ingress, queue, downstream clients).
  • Ensure timeout + cancellation are wired end-to-end.
  • Ensure retries are bounded and jittered.
  • Confirm listeners/timers/intervals are always cleaned up.
  • Confirm streams are closed/destroyed on success and error paths.
  • Confirm object caches have size/TTL controls.

CI / Flake Handling

  • If CI-only failures appear, add temporary diagnostic payloads in tests.
  • Serialize only affected flaky tests when resource contention is the cause.
  • Keep determinism improvements in test code, not production code, unless required.

Output Template

For each PR, report:

  1. Issue being fixed.
  2. Why it matters under load.
  3. Code locations changed.
  4. Tests run and results.
  5. Benchmark before/after numbers (execution first: p50/p95/p99 and throughput).
  6. Risk assessment.
  7. Next candidate optimization.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.32%
按下载量换算71

Claude

31.53%
按下载量换算65

Cursor

20.46%
按下载量换算42

Gemini CLI

10.1%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills