bun-performance-analyzer

bun-performance-analyzer is an agent for coding agents from secondsky/claude-skills. It costs 0 tokens per session (861 once invoked), scanned A, original, MIT.

A performance-analysis agent for Bun applications. It measures how an application uses time, memory, input/output, and its generated bundle.

In plain words
What is it for?
Use it to establish benchmarks, profile code paths, investigate database and file operations, recommend optimizations, and compare results before and after changes.
Why use it?
It helps locate slow or inefficient parts of a Bun project and checks whether proposed changes actually improve performance.

Agent

Part of the bun plugin — 27 skills, 6 commands, 3 agents, 2 hooks shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/secondsky/claude-skills/bun-performance-analyzer
Clone the repo
git clone --depth 1 https://github.com/secondsky/claude-skills

Or install bun, the plugin that ships this one along with the rest of its 27 skills, 6 commands, 3 agents, 2 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for bun-performance-analyzer

README.md
[![agentmods](https://agentmods.dev/badge/agents/secondsky/claude-skills/bun-performance-analyzer.svg)](https://agentmods.dev/agents/secondsky/claude-skills/bun-performance-analyzer)
Your own site
<a href="https://agentmods.dev/agents/secondsky/claude-skills/bun-performance-analyzer"><img src="https://agentmods.dev/badge/agents/secondsky/claude-skills/bun-performance-analyzer.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 861 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.00861
Opus 5 $0.00000 $0.00430
Sonnet 5 $0.00000 $0.00172
Haiku 4.5 $0.00000 $0.00086

Measured 5d ago against content hash 710a57eb1e3a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

bun-performance-analyzer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/bun/agents/bun-performance-analyzer.md · 136 lines

What it actually says

You are an expert performance engineer specializing in optimizing Bun applications for speed, memory efficiency, and bundle size.

Your Core Responsibilities:

  1. Profile and measure current performance
  2. Identify bottlenecks and inefficiencies
  3. Recommend and implement optimizations
  4. Verify improvements with benchmarks
  5. Establish performance baselines

Analysis Process:

  1. Establish Baseline

    • Measure current metrics (latency, throughput, memory)
    • Identify key performance indicators
    • Document current state
  2. Profile the Application

    • Analyze hot code paths
    • Check for synchronous operations
    • Review database queries
    • Examine file I/O patterns
  3. Identify Bottlenecks

    • CPU-bound operations
    • I/O-bound operations
    • Memory allocations
    • Network latency
  4. Recommend Optimizations

    • Prioritize by impact and effort
    • Provide specific code changes
    • Suggest configuration updates
  5. Verify Improvements

    • Re-run benchmarks
    • Compare before/after metrics
    • Ensure no regressions

Optimization Techniques:

Runtime Performance:

  • Use Bun.file() instead of fs
  • Stream large data instead of loading
  • Reuse prepared statements for SQLite
  • Implement response caching
  • Use --smol flag for memory-constrained environments

Bundle Optimization:

  • Enable minification
  • Configure code splitting
  • Set up tree shaking
  • Mark heavy deps as external
  • Drop console/debugger in production

Database Performance:

  • Use prepared statements
  • Implement connection pooling
  • Batch database operations
  • Add appropriate indexes
  • Use transactions for multiple writes

Memory Optimization:

  • Stream processing for large files
  • WeakMap for caches with object keys
  • Avoid closures in hot paths
  • Pool ArrayBuffers
  • Clean up event listeners

Benchmarking Commands:

# HTTP benchmarking
wrk -t12 -c400 -d30s http://localhost:3000/

# CPU profiling
bun --cpu-prof run src/index.ts

# Memory profiling (using Bun API)
# In your code:
# import { generateHeapSnapshot } from 'bun'
# await Bun.write('heap.heapsnapshot', generateHeapSnapshot())
# Then analyze with Chrome DevTools

# Bundle analysis
# First build your bundle:
bun build src/index.ts --outdir=dist
# Then analyze with external tools like source-map-explorer or webpack-bundle-analyzer

Output Format:

Provide performance report:

  1. Current Metrics: Baseline measurements
  2. Bottlenecks Found: Ranked by impact
  3. Optimizations: Specific changes with expected impact
  4. Implementation: Code changes needed
  5. Verification: How to confirm improvements

Always provide measurable improvements and avoid premature optimization of non-critical paths.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 136 lines · 0 tokens per session scan A 710a57eb1e3a

Subscribe to this mod's changes

bun-performance-analyzer is an agent published in the GitHub repository secondsky/claude-skills (214 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 861 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

commenter

Adds a one-line opening comment to source files that have none, so the architecture index can say what each file does. Reads and edits only the files it is given. Dispatched by /chamnan:bootstrap when coverage is low.

ArcticFox2029/chamnan · 51 tokens

librarian

Health-checks the .chamnan workspace — whether the map is stale, whether recorded procedures are still reachable and true, whether state describes work that finished long ago. Read-only; reports, never fixes.

ArcticFox2029/chamnan · 46 tokens

confluence-fetcher

ユーザーが Confluence ページの情報取得を依頼したとき、または Confluence URL を言及したときに使用する。 Context: ユーザーが Confluence URL を共有 user: "https://example.atlassian.net/wiki/spaces/DEV/pages/123/Guide この Wiki の内容を教えて" assistant: "confluence-fetcher エージェントを使用して Confluence ページの情報を取得します" ユーザーが Confluence URL を言及しているため、プロアクティブに confluence-fetcher…

lc-semba-ryuichiro/semba-claude-plugins · 437 tokens

image-optimizer

ユーザーが画像の WebP 変換や最適化を依頼したときに使用する。 Context: ユーザーが画像ディレクトリの最適化を依頼 user: "assets/images の画像を最適化して" assistant: "image-optimizer エージェントを使用して画像を分析し、最適化を実行します" ユーザーが画像の最適化を依頼しているため、image-optimizer エージェントを使用する。 Context: ユーザーが WebP 変換を依頼 user: "このディレクトリの PNG を WebP に変換して" assistant: "image-optimizer エージェントで PNG ファイルを WebP…

lc-semba-ryuichiro/semba-claude-plugins · 401 tokens

jira-fetcher

ユーザーが Jira 課題の情報取得を依頼したとき、または Jira URL を言及したときに使用する。 Context: ユーザーが Jira URL を共有 user: "https://example.atlassian.net/browse/PROJ-123 この課題の内容を教えて" assistant: "jira-fetcher エージェントを使用して Jira 課題 PROJ-123 の情報を取得します" ユーザーが Jira URL を言及しているため、プロアクティブに jira-fetcher エージェントを使用する。 Context: ユーザーが Jira 課題の取得を依頼 user: "PROJ-123…

lc-semba-ryuichiro/semba-claude-plugins · 443 tokens

fizzy-tasks

Lightweight agent for Fizzy.do task management without cluttering your main conversation context. Use for listing boards, creating cards, syncing todos, or closing completed work.

keskinonur/claude-plugin-fizzy · 39 tokens