npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@claude-flow/plugin-perf-optimizer

v3.0.0-alpha.1

Published

AI-powered performance optimization plugin for bottleneck detection, memory analysis, and configuration tuning

Readme

@claude-flow/plugin-performance-optimizer

npm version npm downloads License: MIT

A comprehensive performance optimization plugin combining sparse inference for efficient trace analysis with graph neural networks for dependency chain optimization. The plugin enables intelligent bottleneck detection, memory leak identification, N+1 query detection, and bundle size optimization while providing explainable recommendations based on historical performance patterns.

Features

  • Bottleneck Detection: Identify performance bottlenecks using GNN-based dependency analysis
  • Memory Analysis: Detect memory leaks, retention chains, and GC pressure points
  • Query Optimization: Detect N+1 queries, missing indexes, and slow joins
  • Bundle Optimization: Analyze and optimize JavaScript bundle size with tree shaking and code splitting
  • Configuration Optimization: Learn optimal configurations from workload patterns using SONA

Installation

npm

npm install @claude-flow/plugin-performance-optimizer

CLI

npx claude-flow plugins install --name @claude-flow/plugin-performance-optimizer

Quick Start

import { PerfOptimizerPlugin } from '@claude-flow/plugin-performance-optimizer';

// Initialize the plugin
const plugin = new PerfOptimizerPlugin();
await plugin.initialize();

// Detect performance bottlenecks
const bottlenecks = await plugin.detectBottlenecks({
  traceData: {
    format: 'otlp',
    spans: traceSpans,
    metrics: performanceMetrics
  },
  analysisScope: ['cpu', 'memory', 'database'],
  threshold: {
    latencyP95: 500,  // 500ms
    throughput: 1000,
    errorRate: 0.01
  }
});

console.log('Detected bottlenecks:', bottlenecks);

MCP Tools

1. perf/bottleneck-detect

Detect performance bottlenecks using GNN-based dependency analysis.

// Example usage via MCP
const result = await mcp.call('perf/bottleneck-detect', {
  traceData: {
    format: 'chrome_devtools',
    spans: chromeTraceSpans,
    metrics: { renderTime: 150, scriptTime: 200 }
  },
  analysisScope: ['cpu', 'render', 'network'],
  threshold: {
    latencyP95: 100,
    throughput: 60
  }
});

Returns: List of identified bottlenecks with severity, location, and recommended fixes.

2. perf/memory-analyze

Analyze memory usage patterns and detect potential leaks.

const result = await mcp.call('perf/memory-analyze', {
  heapSnapshot: '/path/to/heap-snapshot.heapsnapshot',
  timeline: memoryTimelineData,
  analysis: ['leak_detection', 'retention_analysis', 'gc_pressure'],
  compareBaseline: '/path/to/baseline-snapshot.heapsnapshot'
});

Returns: Memory analysis report with leak candidates, retention chains, and optimization suggestions.

3. perf/query-optimize

Detect N+1 queries and suggest database optimizations.

const result = await mcp.call('perf/query-optimize', {
  queries: [
    { sql: 'SELECT * FROM users WHERE id = ?', duration: 5, resultSize: 1 },
    { sql: 'SELECT * FROM orders WHERE user_id = ?', duration: 3, resultSize: 10 }
  ],
  patterns: ['n_plus_1', 'missing_index', 'slow_join'],
  suggestIndexes: true
});

Returns: Detected query anti-patterns with suggested batch alternatives and index recommendations.

4. perf/bundle-optimize

Analyze and optimize JavaScript bundle size.

const result = await mcp.call('perf/bundle-optimize', {
  bundleStats: '/path/to/webpack-stats.json',
  analysis: ['tree_shaking', 'code_splitting', 'duplicate_deps', 'large_modules'],
  targets: {
    maxSize: 250,  // 250KB
    maxChunks: 10
  }
});

Returns: Bundle analysis with optimization recommendations for tree shaking, code splitting, and dependency deduplication.

5. perf/config-optimize

Suggest optimal configurations based on workload patterns using SONA learning.

const result = await mcp.call('perf/config-optimize', {
  workloadProfile: {
    type: 'api',
    metrics: { requestsPerSecond: 1000, avgLatency: 50 },
    constraints: { maxMemory: '4GB', maxCpu: 4 }
  },
  configSpace: {
    poolSize: { type: 'number', range: [10, 100], current: 25 },
    cacheSize: { type: 'number', range: [100, 1000], current: 200 }
  },
  objective: 'latency'
});

Returns: Optimized configuration values with expected performance improvements.

Configuration Options

interface PerfOptimizerConfig {
  // WASM memory limit (default: 2GB)
  memoryLimit: number;

  // Analysis timeout in seconds (default: 300)
  analysisTimeout: number;

  // Enable SONA learning for configuration optimization
  enableSONALearning: boolean;

  // Supported trace formats
  supportedFormats: ('otlp' | 'chrome_devtools' | 'jaeger' | 'zipkin')[];

  // Performance thresholds for alerting
  thresholds: {
    latencyP95: number;
    throughput: number;
    errorRate: number;
  };
}

Performance Targets

| Metric | Target | Improvement vs Baseline | |--------|--------|------------------------| | Trace analysis (1M spans) | <5s | 24x faster | | Memory analysis (1GB heap) | <30s | 10x faster | | Query pattern detection (10K queries) | <1s | 600x faster | | Bundle analysis (10MB) | <10s | 6x faster | | Config optimization | <1min convergence | 1440x+ faster |

Security Considerations

  • Trace Data Sanitization: Automatically sanitizes sensitive data (passwords, tokens, cookies) from trace data before processing
  • Query Parse-Only: SQL queries are parsed and analyzed but never executed
  • WASM Sandboxing: All analysis runs in isolated WASM sandbox with 2GB memory limit and no network access
  • Path Validation: Bundle stats paths are validated to prevent path traversal attacks
  • Input Validation: All inputs validated with Zod schemas to prevent injection attacks
  • No Code Execution: Performance suggestions are recommendations only - no automatic code modification

WASM Security Constraints

| Constraint | Value | Rationale | |------------|-------|-----------| | Memory Limit | 2GB max | Handle large trace datasets | | CPU Time Limit | 300 seconds | Allow deep performance analysis | | No Network Access | Enforced | Prevent data exfiltration | | No File System Write | Enforced | Read-only analysis mode | | Sandboxed Paths | Validated prefixes only | Prevent path traversal |

Input Limits

| Input | Limit | |-------|-------| | Max spans per trace | 1,000,000 | | Max query size | 10KB | | Max queries per batch | 10,000 | | Max heap snapshot size | 1GB | | Max bundle stats size | 50MB | | CPU time limit | 300 seconds |

Rate Limiting

const rateLimits = {
  'perf/bottleneck-detect': { requestsPerMinute: 10, maxConcurrent: 2 },
  'perf/memory-analyze': { requestsPerMinute: 5, maxConcurrent: 1 },
  'perf/query-optimize': { requestsPerMinute: 30, maxConcurrent: 3 },
  'perf/bundle-optimize': { requestsPerMinute: 10, maxConcurrent: 2 },
  'perf/config-optimize': { requestsPerMinute: 5, maxConcurrent: 1 }
};

Dependencies

  • ruvector-sparse-inference-wasm - Efficient sparse performance trace processing
  • ruvector-gnn-wasm - Dependency chain analysis and critical path detection
  • micro-hnsw-wasm - Similar performance pattern matching
  • ruvector-fpga-transformer-wasm - Fast transformer inference for trace analysis
  • sona - Learning optimal configurations from historical data

Supported Formats

| Category | Formats | |----------|---------| | Tracing | OpenTelemetry, Jaeger, Zipkin, Chrome DevTools | | Profiling | Chrome CPU Profile, Node.js Profile, pprof | | Memory | Chrome Heap Snapshot, Node.js Heap | | Bundles | Webpack Stats, Vite Stats, Rollup |

Related Plugins

| Plugin | Description | Use Case | |--------|-------------|----------| | @claude-flow/plugin-code-intelligence | Code analysis | Identify code causing performance issues | | @claude-flow/plugin-test-intelligence | Test optimization | Performance regression test selection | | @claude-flow/plugin-financial-risk | Risk analysis | Trading system latency optimization |

License

MIT License

Copyright (c) 2026 Claude Flow

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.