qfoldit-mining

qfoldit-mining is a skill for Claude Code from qfoldit/Protein-Design-MCP. It costs 227 tokens per session (1,619 once invoked), scanned A, original, Apache-2.0.

A set of kinetic models for biological treatment of difficult gold ore, dissolved metals, and cyanide-containing waste. It covers microbial oxidation, metal recovery by biomass, and bacterial cyanide breakdown.

In plain words
What is it for?
Modelling refractory sulfide ore bio-oxidation, biosorption of gold-cyanide and other metals, and biological cyanide degradation in tailings or mill effluent.
Why use it?
It provides model-based calculations for processes where temperature, pH, concentration, inhibition, and reaction behaviour affect treatment results.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the qfoldit-skills plugin — 20 skills shipped together

Good fit Modelling refractory sulfide ore bio-oxidation, biosorption of gold-cyanide and other metals, and…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/qfoldit/protein-design-mcp/mining
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 qfoldit/Protein-Design-MCP --skill mining
Clone the repo
git clone --depth 1 https://github.com/qfoldit/Protein-Design-MCP

Made for: Claude Code.

Or install qfoldit-skills, the plugin that ships this one along with the rest of its 20 skills.

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 qfoldit-mining

README.md
[![agentmods](https://agentmods.dev/badge/skills/qfoldit/protein-design-mcp/mining.svg)](https://agentmods.dev/skills/qfoldit/protein-design-mcp/mining)
Your own site
<a href="https://agentmods.dev/skills/qfoldit/protein-design-mcp/mining"><img src="https://agentmods.dev/badge/skills/qfoldit/protein-design-mcp/mining.svg" alt="Measured on agentmods" height="20"></a>
Per session 227 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,619 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.00227 $0.01619
Opus 5 $0.00113 $0.00809
Sonnet 5 $0.00045 $0.00324
Haiku 4.5 $0.00023 $0.00162

Measured 6d ago against content hash dd26004c40e8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

qfoldit-mining 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 6d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/bioox_kinetics.py, scripts/biosorption_kinetics.py, scripts/cyanide_kinetics.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.

claude-skills/skills/mining/SKILL.md · 108 lines

How it starts

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

qfoldit-mining

Kinetic modeling skill for three related processes in refractory ore processing and effluent treatment:

  1. Bio-oxidation (bioox_kinetics.py) -- microbial oxidation of sulfide minerals (arsenopyrite/pyrite) that locks up gold, freeing it for downstream leaching. Model: Shrinking Core Model (reaction-controlled) x Arrhenius x microbial cardinal-temperature response x pH response.
  2. Biosorption (biosorption_kinetics.py) -- recovery of dissolved metal (gold-cyanide complex, copper, REE, lithium) onto biomass. Model: Langmuir/Freundlich equilibrium x pseudo-second-order kinetics x pH-dependent activity (mechanism differs for cationic metals vs anionic complexes like Au(CN)2-).
  3. Cyanide biodegradation (cyanide_kinetics.py) -- biological detoxification of free/WAD cyanide in tailings or mill effluent by cyanide-degrading bacteria. Model: Aiba substrate-inhibition kinetics (cyanide is BOTH the growth substrate and, at high concentration, toxic to the degrading culture -- rate is non-monotonic in concentration, not simple Monod).

Read references/model_documentation.md before answering -- it contains the literature basis, all equations, calibration status, and critical caveats (especially: default rate/capacity constants are generic literature-range placeholders, NOT validated for any specific qFoldIT ore or site, until fitted against real assay data).

How to handle a request

  1. Identify which process the user is asking about (bio-oxidation of ore, biosorption of dissolved metal, or cyanide degradation in effluent/tailings) and which metal/system, if biosorption (gold_cyanide, copper_cationic, ree_trivalent, lithium_cationic, or a custom parameter set).
  2. Validate inputs: pH should be a plausible acidic bioleaching range (typically 0.5-6); temperature in a plausible mesophilic range (typically 10-50 C) -- flag values outside this as unusual and ask for confirmation rather than silently extrapolating. Particle size, concentration (Ce) must be positive. For cyanide degradation, flag concentrations above roughly 1000-1500 mg/L as entering a regime where the source study's fit is less certain (sparse literature data that high) -- see references.
  3. Run the model via scripts/bioox_kinetics.py, scripts/biosorption_kinetics.py, or scripts/cyanide_kinetics.py (see references for function signatures and examples).
  4. Always report calibration status alongside any numeric forecast: state plainly whether the constants used are the generic literature defaults or have been fitted to real data the user supplied. Never present a placeholder-calibrated forecast as a validated production guarantee.
  5. If the user has real assay/pilot data (time-series conversion data, equilibrium isotherm data, kinetic uptake data, or rate-vs- concentration data for cyanide degradation), use fit_A_from_data, fit_langmuir, fit_freundlich, fit_pseudo_second_order, or fit_aiba to recalibrate before forecasting -- this is always preferable to the defaults.
  6. Reactor mode matters for bio-oxidation: ask (or confirm) whether the reactor is continuous/mature-culture (e.g. BIOX-style CSTR train) or batch/fresh-inoculation (e.g. heap start-up) -- these give drastically different time-to-target-conversion.
  7. For cyanide degradation, never give an absolute treatment time (hours/days to reach a target residual concentration) without first flagging the X0 (starting biomass) caveat -- the literature rate constants describe specific (per-unit-biomass) rates, and the translation to an absolute timeline is extremely sensitive to a biomass loading value this skill cannot supply on its own (verified: a 400x range of X0 changes a 300-hour outcome from "barely moved" to "cut by nearly half" using the same rate constants). Absolute simulate_batch_treatment/time_to_target_residual results should be presented as illustrating the SHAPE of the response, not a commissioning timeline, unless the user has supplied a real measured biomass density.

Read the full file on GitHub · 108 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. 6d ago First seen · 108 lines · 227 tokens per session scan A dd26004c40e8

Subscribe to this mod's changes

qfoldit-mining is a skill published in the GitHub repository qfoldit/Protein-Design-MCP (1 stars, last pushed 10d ago), licensed Apache-2.0. It adds 227 tokens to every session and 1,619 once invoked, about $0.0011 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

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