Buffer Calculator
PassAudited by VirusTotal on May 11, 2026.
Overview
Type: OpenClaw Skill Name: buffer-calculator-2 Version: 0.1.0 The buffer-calculator skill bundle is a legitimate tool for laboratory reagent calculations. The Python script (scripts/main.py) contains standard arithmetic logic for mass/volume calculations without any risky system calls, network activity, or file system access. The documentation (SKILL.md) is extensive and strictly focused on biochemistry protocols, lacking any prompt-injection attempts or instructions to perform unauthorized actions.
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.
A user who trusts the output could prepare invalid buffers, waste reagents, damage experiments, or create unsafe concentrations.
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.
moles = conc * final_volume_ml / 1000 # mmol to mol grams = moles * mw
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.
