Buffer Calculator

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

A user who trusts the output could prepare invalid buffers, waste reagents, damage experiments, or create unsafe concentrations.

Why it was flagged

For concentration in mM and volume in mL, this calculation yields millimoles, not moles, before multiplying by molecular weight. That would make solid reagent masses about 1,000x too large, contradicting the skill's advertised precise buffer calculations.

Skill content
moles = conc * final_volume_ml / 1000  # mmol to mol
grams = moles * mw
Recommendation

Do not rely on generated masses until the formula is corrected and tested; use a validated conversion such as grams = concentration_mM * volume_mL * MW / 1,000,000 and compare outputs against known recipes.