Syntic

Skills may execute instructions and code that could affect your environment. Marketplace scans reduce risk but do not guarantee safety. Always review files, run your own security checks, and use at your own risk.

ResearchFree Safe

Benchmarking Specialist

Security Scan Summary

Status: Safe

Source: Syntic Skills registry

Automated security scan completed with no high-risk patterns detected. Manual review is still required.

About This Skill

Use when designing performance benchmarks, load tests, comparative evaluations, and reproducible measurement methodologies with statistical rigor.

Downloadable SKILL.md

Download SKILL.md and place it in your Syntic skills folder. For Syntic Code, install in your local skills directory, review contents, and run in a controlled environment first. Acknowledge the risk notice above to enable the download.

SKILL.md
---
name: Benchmarking Specialist
description: Use when designing performance benchmarks, load tests, comparative evaluations, and reproducible measurement methodologies with statistical rigor.
category: Research
version: 1.0.0
tools: []
---

# Performance Benchmarking & Measurement

Design benchmarks that answer specific questions: which implementation is faster? maximum throughput? where is the bottleneck? Define metrics to measure (throughput, latency percentiles, resource utilization, error rate) and the decision the results inform.

## Workload Design & Representation

Design workloads representing production use cases: 
- Operation mix (read/write ratio, request size distribution, access pattern)
- Data set characteristics (size, distribution, cardinality, working set)
- Concurrency model (steady-state load, burst patterns, ramp-up profiles)

Validate that workload characteristics match production traffic patterns.

## Experimental Control & Environment Isolation

Isolate the factor under test by:
- Pinning hardware (CPU, memory, disk, network specifications)
- Fixing software environment (OS version, runtime version, JVM flags, kernel parameters)
- Disabling dynamic scaling (turbo boost, frequency scaling, garbage collection variation)
- Documenting every environment parameter that could affect results

Controlled variables enable reproducibility and fair comparison.

## Warmup Phase & Measurement Rigor

Run warmup phase to reach steady state (JIT compilation completes, caches populated, connection pools filled, garbage collection reaches stable cycle). Discard warmup data from measurements. Execute minimum 10 iterations, calculating mean, median, standard deviation, and percentile distribution (P50, P90, P95, P99) for latency metrics. Compute confidence intervals quantifying uncertainty.

## Statistical Analysis & Anomaly Detection

Test for normality using Shapiro-Wilk, apply appropriate comparison tests (t-test for two conditions, ANOVA for multiple), report effect sizes alongside p-values, check for anomalies (bimodal distributions indicating GC pauses, long-tail latencies indicating contention).

## Profiling & Bottleneck Identification

Profile system under load:
- CPU profiling for compute-bound (flame graphs, hot method identification)
- Memory profiling for allocation pressure (allocation rates, GC frequency)
- I/O profiling for storage-bound (IOPS, queue depth)
- Network profiling for distributed systems (connection count, bandwidth utilization)

## Comparative Benchmarking Standards

Ensure identical workloads, data sets, and hardware for each system under test. Use each system's recommended configuration rather than defaults. Verify correctness (fast wrong answers are not valid results). Automate in reproducible environment with consistent specs. Store results with complete metadata. Detect performance regressions against baselines. Generate trend reports over time.

## Results Reporting & Transparency

Report percentile distributions (P50, P90, P95, P99), not averages, which hide tail latencies affecting user experience. Multiple iterations with statistical confidence intervals. Verify measurement overhead <5%. Document environment completely (hardware, OS, kernel, runtime, configuration). Present results honestly—cherry-picking best runs or omitting unfavorable metrics is benchmarketing, not benchmarking.

Bundle Download

Includes SKILL.md and bundled support files where provided. Risk acknowledgement is required.

Install Targets

Syntic App

  1. 1. Create a dedicated folder for this skill in your local skills library.
  2. 2. Place SKILL.md into that folder.
  3. 3. Restart Syntic and invoke this skill on matching tasks.

Syntic Code (CLI)

  1. 1. Save SKILL.md in your local Syntic Code skills directory.
  2. 2. Keep related files in the same skill folder.
  3. 3. Run in a safe environment and validate outputs.

Source

https://github.com/rohitg00/awesome-claude-code-toolkit/blob/main/agents/research-analysis/benchmarking-specialist.md

Open Source Link
Research

Related Skills