AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Retrosynthesis

skill-k-dense-ai-drug-discovery-agent-skills-retrosynthesis · by K-Dense-AI

Plan synthetic routes and judge whether a proposed molecule can actually be made, using AiZynthFinder's Monte-Carlo tree search over template-derived reactions and a purchasable building-block stock. Use this skill to configure expansion and filter policies, choose a stock file, run route search over a candidate set, and read the returned trees — solved fraction, route depth, and which building b…

No reviews yet
0 installs
25 views
0.0% view→install

Install

$ agentstack add skill-k-dense-ai-drug-discovery-agent-skills-retrosynthesis

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-k-dense-ai-drug-discovery-agent-skills-retrosynthesis)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Retrosynthesis? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Retrosynthetic Planning

The Make half of design-make-test-analyse, and the check that a proposed molecule is more than a picture. AiZynthFinder runs Monte Carlo tree search over reaction templates until every leaf of a route is something you can buy.

Tool: AiZynthFinder 4.4.1, MIT. pip install aizynthfinderPython 3.10–3.12 only, it will not install on 3.13. Then download_public_data for models and a ZINC stock (several GB). CPU is sufficient. Checked against: 4.4.1, December 2025.

Read [references/aizynthfinder-setup.md](references/aizynthfinder-setup.md) before your first run, [references/synthesizability-scores.md](references/synthesizability-scores.md) when triaging more molecules than you can search, and [references/route-quality.md](references/route-quality.md) before acting on a route — that one is judgement, not syntax.

The two scripts

| Script | Answers | |---|---| | aizynth_config.py | What does the config look like, and are the model files really there? | | route_report.py | What fraction is makeable, in how many steps, from what? |

The stock file is the answer

This is the thing to get right. A target is solved when every leaf of a route is in your stock file — so "solved" is a statement about the stock at least as much as about the molecule.

| Stock | Solved fraction | |---|---| | small in-house inventory | low; reflects what you can start today | | ZINC (the default download) | moderate; a public baseline | | eMolecules / commercial | high | | Enamine building blocks | high; what a REAL-space campaign should use |

A solved fraction quoted without naming the stock is meaningless — the same molecule is solved against eMolecules and unsolved against a cupboard. route_report.py says so on every run.

Configuration changed at version 4

Version 3 took bare lists of file paths; version 4 takes typed blocks. Every tutorial older than 2024 shows the incompatible form, and the resulting error is unhelpful.

python skills/retrosynthesis/scripts/aizynth_config.py config \
    --model uspto_model.onnx --templates uspto_templates.csv.gz \
    --filter-model uspto_filter_model.onnx --stock zinc:zinc_stock.hdf5 > config.yml
python skills/retrosynthesis/scripts/aizynth_config.py check --config config.yml
expansion:
  uspto:
    type: template-based
    model: uspto_model.onnx
    template: uspto_templates.csv.gz

check verifies every referenced file exists, because AiZynthFinder discovers a missing model after the run starts. It also warns when a config looks like the version-3 form.

Always set a filter policy. Without one the search proposes reactions the expansion model likes but that do not work, and the solved fraction stops measuring anything.

Budget before you start

time_limit is per target. At the 120 s default, ten molecules is twenty minutes and ten thousand is nearly two weeks. Use aizynthcli --nproc 8 to parallelise across targets.

Reading the result

python skills/retrosynthesis/scripts/route_report.py summary --output out.json.gz
python skills/retrosynthesis/scripts/route_report.py routes --output out.json.gz
# 1/1 solved (100.0%)
targets       1
solved        1
median_steps  2

target  route  steps  starting_materials  leaves_in_stock  score
TARGET  0      2      3                   3                0.95

Step count matters more than existence — yields multiply, so five steps at 70% is 17% overall, and past about six steps a route is rarely run as written. route_report.py flags those.

blocks counts how many routes share each starting material. If twenty targets converge on three intermediates, the campaign is cheap; that is a different and more useful fact than the solved fraction.

Unsolved does not mean unmakeable

It means no route was found within the time and depth limits, using these templates, terminating in this stock. Four distinct fixes, and working out which applies is the useful step: raise the time limit, raise max_transforms, broaden the stock — or accept that the chemistry is not in USPTO templates.

That last case is systematic. Template models only know reactions in their training corpus, so novel methodology, photoredox, electrochemistry, and enzymatic steps are largely invisible.

Four ways this misleads

  1. A solved route is a proposal, not a validated synthesis. The templates come from reactions

that worked on other substrates; nothing here knows your chemoselectivity or protecting-group needs.

  1. Convergent beats linear at equal step count. Overall yield depends on the longest linear

sequence, so read the tree shape, not just its depth.

  1. Where the disconnections sit matters more than step count for a series. A route that

decorates late gives analogues from a common intermediate; one that installs the variable group first needs a full resynthesis each time.

  1. Pre-filtering with RAscore inflates the solved fraction, because RAscore is trained to

predict AiZynthFinder's own verdict. Fine as a pipeline, misleading as a statistic — report the pre-filter.

Triage at scale

Route search is seconds to minutes per molecule; scores are microseconds. For a generated library: SAscore or RAscore across everything, full search on the survivors, and a chemist reading the routes for the handful you will actually order. The honest hierarchy is SAscore < RAscore < route search < a chemist's opinion < the compound in a vial, and each step right is more expensive and more real.

Composing with the rest of the bundle

  • generative-design → here: the essential check, since nothing in a REINVENT objective knows

what can be made. Better still, add SAscore as a scoring component during the run.

  • chemical-space → alongside: if it is already purchasable, you do not need a route.
  • medchem → before: no point routing molecules that fail structural alerts.
  • admet-prediction → alongside: makeable and developable are different filters.

Reporting results honestly

Name the stock, always. Give solved fraction and median step count — 90% solved at nine steps is worse than 60% at three. State the time and depth limits, since unsolved is partly a statement about them. And say plainly that a proposed route is a hypothesis no chemist has yet reviewed.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.