boron-nmr-predict

boron-nmr-predict is a skill for Claude Code, Codex from InternScience/ChemClaw. It costs 100 tokens per session (970 once invoked), scanned A, original, MIT.

A local calculation tool that predicts the 11B nuclear magnetic resonance (NMR) chemical shift of boron atoms in a molecule. NMR chemical shifts describe where a nucleus appears in an NMR spectrum and are reported in parts per million.

In plain words
What is it for?
Use it to predict shifts for boron-containing molecules in supported solvents and create an image linking each predicted value to its boron atom.
Why use it?
It gives an estimated boron NMR value from a molecule’s SMILES string without requiring a new laboratory measurement or a full quantum-chemistry calculation.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to predict shifts for boron-containing molecules in supported solvents and create an image linking each predicted value to its boron atom.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/internscience/chemclaw/boron-nmr-predict
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.

Any agent
npx skills add InternScience/ChemClaw --skill boron-nmr-predict
Clone the repo
git clone --depth 1 https://github.com/InternScience/ChemClaw

Made for: Claude Code, Codex.

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 boron-nmr-predict

README.md
[![agentmods](https://agentmods.dev/badge/skills/internscience/chemclaw/boron-nmr-predict/github.svg)](https://agentmods.dev/skills/internscience/chemclaw/boron-nmr-predict)
Your own site
<a href="https://agentmods.dev/skills/internscience/chemclaw/boron-nmr-predict"><img src="https://agentmods.dev/badge/skills/internscience/chemclaw/boron-nmr-predict/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for boron-nmr-predict

Your own site · 80×15
<a href="https://agentmods.dev/skills/internscience/chemclaw/boron-nmr-predict"><img src="https://agentmods.dev/badge/skills/internscience/chemclaw/boron-nmr-predict.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 100 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 970 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00100 $0.00970
Opus 5 $0.00050 $0.00485
Sonnet 5 $0.00020 $0.00194
Haiku 4.5 $0.00010 $0.00097

Measured 9d ago against content hash 7842e0612d39, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

boron-nmr-predict 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 9d ago.

The scan reads SKILL.md. This mod also ships 12 executable files (scripts/ensure_model.py, scripts/predict_boron_nmr.py, scripts/render_utils.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/boron-nmr-predict/SKILL.md · 118 lines

How it starts

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

Boron NMR Predict

Use the bundled scripts for deterministic local inference.

Workflow

  1. Create and activate a fresh conda environment for this skill.
  2. Install Python dependencies from requirements-core.txt and requirements-pyg.txt.
  3. Ensure model files exist locally by running scripts/ensure_model.py.
  4. Run scripts/predict_boron_nmr.py with a SMILES string and solvent.
  5. Return the predicted chemical shift for each boron atom in text form.
  6. Generate the labeled PNG image into the user's tmp directory so each ppm value can be matched to B(index) in the structure image.

Input contract

Prefer SMILES input.

Required:

  • Molecule SMILES containing at least one boron atom

Optional:

  • Solvent name. Supported solvents are:
    • CDCl3
    • C6D6
    • d6-DMSO
    • CD3COCD3
    • CD3CN
    • CD3OD
    • CD2Cl2
    • d8-THF
    • d8-Toluene
    • D2O

Commands

Create a fresh conda environment and install deps:

bash scripts/setup_env.sh

The setup script is portable: it does not assume any machine-specific conda path. It first tries the current shell's conda, then common user-local installs such as ~/miniconda3, ~/anaconda3, and ~/conda.

Manual alternative:

conda create -n boron-nmr-predict python=3.11 -y
conda activate boron-nmr-predict
python -m pip install -r requirements-core.txt
python -m pip install -r requirements-pyg.txt

Download model weights:

python scripts/ensure_model.py

Run prediction:

python scripts/predict_boron_nmr.py \
  --smiles "OB(O)c1ccccc1" \
  --solvent CDCl3 \
  --output-image /tmp/boron_nmr_result.png

Run an example:

bash scripts/run_example.sh

Environment variables

  • BORON_NMR_MODEL_REPO: Hugging Face repo id holding the model files
  • BORON_NMR_MODEL_DIR: local cache directory for downloaded model files

Defaults:

  • model repo: SII-AI4Chem/boron-nmr-predict-model
  • model dir: ~/.cache/boron-nmr-predict/models
  • image output: user tmp directory such as /tmp/boron_nmr_<id>.png
  • device: CPU only

Read the full file on GitHub · 118 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. 9d ago First seen · 118 lines · 100 tokens per session scan A 7842e0612d39

Subscribe to this mod's changes

boron-nmr-predict is a skill published in the GitHub repository InternScience/ChemClaw (52 stars, last pushed 5mo ago), licensed MIT. It adds 100 tokens to every session and 970 once invoked, about $0.0005 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-30.

Related

Other skills, from other repositories

instrument-data-to-allotrope

Convert laboratory instrument output files (PDF, CSV, Excel, TXT) to Allotrope Simple Model (ASM) JSON format or flattened 2D CSV. Use this skill when scientists need to standardize instrument data for LIMS systems, data lakes, or downstream analysis. Supports auto-detection of instrument types. Outputs include full…

anthropics/knowledge-work-plugins · 123 tokens

exploratory-data-analysis

Perform bounded, local exploratory analysis of explicitly supported scientific files. Use for redacted CSV/TSV/JSON profiles; optional NumPy, HDF5, FASTA/FASTQ, and basic image metadata inspection; missingness/leakage audits; outlier and transformation sensitivity; and rigorous EDA report scaffolds. Other domain…

K-Dense-AI/scientific-agent-skills · 83 tokens

matlab

Build, review, migrate, and safely plan MATLAB or GNU Octave numerical workflows, including arrays, tabular/time data, tests, projects, graphics, MAT files, and explicit Python interoperability.

K-Dense-AI/scientific-agent-skills · 42 tokens

phylogenetics

Build and analyze phylogenetic trees using MAFFT (multiple alignment), IQ-TREE 2 (maximum likelihood), and FastTree (fast NJ/ML). Visualize with ETE3 or FigTree. For evolutionary analysis, microbial genomics, viral phylodynamics, protein family analysis, and molecular clock studies.

K-Dense-AI/scientific-agent-skills · 68 tokens

research-engineer

An uncompromising Academic Research Engineer. Operates with absolute scientific rigor, objective criticism, and zero flair. Focuses on theoretical correctness, formal verification, and optimal implementation across any required technology.

davila7/claude-code-templates · 43 tokens

mapping-to-snomed

Maps clinical concept spans extracted by OpenMed to SNOMED CT concepts through a USER-SUPPLIED terminology server (the user's own Ontoserver, Snowstorm, or UMLS/UTS), never a bundled vocabulary. Use when the user wants to code findings, disorders, procedures, body structures, or substances to SNOMED CT, run an ECL…

maziyarpanahi/openmed · 205 tokens