profiler-analysis

profiler-analysis is a skill for Claude Code, Codex from sembraniteam/claude-plugins. It costs 189 tokens per session (3,061 once invoked), scanned A, original, MIT.

A workflow coordinator for taking a hardware design through eight stages, from concept and schematic to prototype, compliance, pilot run, and production release. It assigns work to specialized engineering roles and tracks validation and rework.

In plain words
What is it for?
Use it to coordinate requirements, schematics, PCB layout, manufacturing reviews, compliance assessments, test procedures, and production-readiness work.
Why use it?
It removes the need to manage the order, handoffs, review gates, and repeat work across a hardware project by hand. It also makes clear which stages require physical work that software cannot perform.

Skill for Claude CodeCodex

Installs and runs on its own, but its text points at files inside its plugin — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed. Installing the plugin gets both.

Part of the perfmind plugin — 4 skills, 2 agents 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 skills/sembraniteam/claude-plugins/profiler-analysis
Any agent
npx skills add sembraniteam/claude-plugins --skill profiler-analysis
Clone the repo
git clone --depth 1 https://github.com/sembraniteam/claude-plugins

Made for: Claude Code, Codex.

Or install perfmind, the plugin that ships this one along with the rest of its 4 skills, 2 agents.

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 profiler-analysis

README.md
[![agentmods](https://agentmods.dev/badge/skills/sembraniteam/claude-plugins/profiler-analysis.svg)](https://agentmods.dev/skills/sembraniteam/claude-plugins/profiler-analysis)
Your own site
<a href="https://agentmods.dev/skills/sembraniteam/claude-plugins/profiler-analysis"><img src="https://agentmods.dev/badge/skills/sembraniteam/claude-plugins/profiler-analysis.svg" alt="Measured on agentmods" height="20"></a>
Per session 189 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,061 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.00189 $0.03061
Opus 5 $0.00095 $0.01530
Sonnet 5 $0.00038 $0.00612
Haiku 4.5 $0.00019 $0.00306

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

Security

Grade A, and why

profiler-analysis 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 3d 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.

perfmind/skills/profiler-analysis/SKILL.md · 191 lines

How it starts

The opening of the file, as written. The whole thing — 191 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Profiler Analysis

Deterministic Extraction (run this first when the format matches)

For the three formats a script can parse exactly, run scripts/parse-profiler.py before attempting any manual interpretation. Computing percentages, aggregating recursive call sites, and walking a query plan tree by eye is exactly the kind of arithmetic a script gets right every time and a model can get subtly wrong once — the script computes, this skill interprets:

  • Chrome DevTools / Node.js --cpu-prof output (.cpuprofile files — JSON with nodes + samples)
  • go tool pprof -top <profile> text output (piped or saved to a file)
  • PostgreSQL EXPLAIN (ANALYZE, FORMAT JSON) <query> output
python3 "$CLAUDE_PLUGIN_ROOT/scripts/parse-profiler.py" <path-or-'-'-for-stdin> [--format cpuprofile|pprof-top|pg-explain] [--top N]

Format auto-detects from content when --format is omitted. --top defaults to 15. The script exits non-zero with a plain-language error on unreadable/malformed input or unrecognized format — when it fails, fall back to the manual interpretation guidance below for whatever runtime the artifact came from, rather than guessing at numbers the script refused to compute.

Every format returns the same JSON shape on stdout, so downstream reasoning is identical regardless of which profiler produced the input:

{
  "format": "cpuprofile | pprof-top | pg-explain",
  "summary": { "...format-specific totals, e.g. total_samples, duration_ms, execution_time_ms..." },
  "top": [
    {
      "rank": 1,
      "name": "function or plan-node name",
      "location": "file:line, relation/index name, or null",
      "self_pct": 34.39,
      "self_time_ms": 980.0,
      "total_pct": 34.39,
      "total_time_ms": 980.0,
      "extra": { "...format-specific fields, see below..." }
    }
  ]
}
  • self_pct/self_time_ms — exclusive time/share for this function or plan node alone, not its callees. This is the primary sort key and the number to lead with when identifying "the" hotspot.
  • total_pct/total_time_ms — inclusive of children (cumulative time for a function, or a plan node's time including its subtree). A node can rank low on self_pct but high on total_pct if it's a thin orchestration layer over expensive children — call this out explicitly rather than only reporting the self-time leaderboard, since both numbers matter for different fix strategies (optimize the node itself vs. optimize/parallelize what it calls).
  • self_time_ms/total_time_ms can be null — this happens for pprof-top when the profile type isn't time-based (e.g. a heap/allocation profile using bytes or object counts instead of seconds). self_pct/ total_pct are always populated regardless of unit; fall back to extra.flat_raw/extra.cum_raw (the original unit string) when the absolute numbers are null.
  • extra carries format-specific detail worth surfacing in a finding, notably pg-explain's actual_vs_estimated_rows_ratio — the planner's estimated rows vs. what actually came back. A ratio far from 1.0 (e.g. 40x under-estimated) is itself a root-cause finding: a bad plan usually traces back to a bad estimate, and ANALYZE-ing the underlying table's statistics is often the actual fix, not the query itself.

Read the full file on GitHub · 191 lines

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. 3d ago First seen · 191 lines · 189 tokens per session scan A 36e2ce0f8a42

Subscribe to this mod's changes

profiler-analysis is a skill published in the GitHub repository sembraniteam/claude-plugins (2 stars, last pushed 1mo ago), licensed MIT. It adds 189 tokens to every session and 3,061 once invoked, about $0.0009 per session on Opus 5. 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-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

brainstorming

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.

obra/superpowers · 37 tokens

auto-perf-optimize

Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.

microsoft/vscode · 62 tokens

chat-perf

Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.

microsoft/vscode · 51 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens