job-status

job-status is a skill for Claude Code from pregHosh/Solitarius-mcp. It costs 35 tokens per session (983 once invoked), scanned A, original, Apache-2.0.

An MCP server that exposes REINVENT4 tools for generating, adapting, optimizing, and analyzing molecules. It requires the project's GPU Docker container to be built and running.

In plain words
What is it for?
Sampling molecules, fine-tuning models, running staged reinforcement learning, creating custom scoring components, and analyzing generated structures.
Why use it?
It lets coding agents access several molecular-design workflows through one server. Without the required container, the tools load but their calls fail.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Part of the solitarius-mcp plugin — 7 skills, 1 MCP server shipped together

Good fit Sampling molecules, fine-tuning models, running staged reinforcement learning, creating custom scoring components, and analyzing generated structures.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/preghosh/solitarius-mcp/job-status
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 pregHosh/Solitarius-mcp --skill job-status
Clone the repo
git clone --depth 1 https://github.com/pregHosh/Solitarius-mcp

Made for: Claude Code.

Or install solitarius-mcp, the plugin that ships this one along with the rest of its 7 skills, 1 MCP server.

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 job-status

README.md
[![agentmods](https://agentmods.dev/badge/skills/preghosh/solitarius-mcp/job-status/github.svg)](https://agentmods.dev/skills/preghosh/solitarius-mcp/job-status)
Your own site
<a href="https://agentmods.dev/skills/preghosh/solitarius-mcp/job-status"><img src="https://agentmods.dev/badge/skills/preghosh/solitarius-mcp/job-status/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 job-status

Your own site · 80×15
<a href="https://agentmods.dev/skills/preghosh/solitarius-mcp/job-status"><img src="https://agentmods.dev/badge/skills/preghosh/solitarius-mcp/job-status.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 983 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.00035 $0.00983
Opus 5 $0.00017 $0.00491
Sonnet 5 $0.00007 $0.00197
Haiku 4.5 $0.00003 $0.00098

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

Security

Grade A, and why

job-status 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 10d ago.

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/job-status/SKILL.md · 135 lines

How it starts

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

REINVENT4 Job Status

Monitor a running or completed REINVENT4 job by reading its log file and output CSV directly. No MCP server needed.

Workflow

1. Locate the log file

From $ARGUMENTS, determine the workdir or log path. The log is always at:

<workdir>/reinvent.log

If no argument provided, ask the user for the workdir or log path.

2. Check if the process is still running

If you know the PID:

kill -0 <PID> 2>/dev/null && echo "RUNNING" || echo "FINISHED"

Without PID, check if any reinvent process is active:

pgrep -la reinvent

3. Read the log

Quick status (last 20 lines):

tail -20 <workdir>/reinvent.log

For TL jobs, look for lines like:

  • Epoch X/N — current epoch
  • loss = — training loss
  • Saving model — checkpoint written

For RL jobs, look for lines like:

  • Step X or Iteration X — current step
  • total_score = or Score: — current score
  • Stage X completed — stage transition

4. Check output files

TL — list checkpoints and output model:

ls -lh <workdir>/*.model <workdir>/*.chkpt 2>/dev/null

RL — list stage CSVs and checkpoints:

ls -lh <workdir>/*.csv <workdir>/*.chkpt 2>/dev/null

5. For completed RL runs — summarise results

Read the stage CSV(s) with Python/pandas:

import pandas as pd, glob

csvs = sorted(glob.glob("<workdir>/*.csv"))
for csv in csvs:
    df = pd.read_csv(csv)
    print(f"\n{csv}")
    print(f"  Steps: {len(df)}")
    if "total_score" in df.columns:
        print(f"  Score — mean: {df['total_score'].mean():.3f}, max: {df['total_score'].max():.3f}")
    # show top 10 by score
    if "SMILES" in df.columns and "total_score" in df.columns:
        top = df.nlargest(10, "total_score")[["SMILES", "total_score"]]
        print(top.to_string(index=False))

6. Offer RL optimisation plots

For RL runs, offer to plot the training history. Ask which columns to include beyond the standard four (Agent NLL, Prior NLL, Augmented NLL, total_score):

Read the full file on GitHub · 135 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. 10d ago First seen · 135 lines · 35 tokens per session scan A 898873dc45cd

Subscribe to this mod's changes

job-status is a skill published in the GitHub repository pregHosh/Solitarius-mcp (0 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 35 tokens to every session and 983 once invoked, about $0.0002 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

text-based-molecule-editing

Modify molecules based on natural language descriptions using MolT5/BioT5 models. Use this skill when: (1) User wants to modify a molecule to improve specific properties (solubility, potency, etc.), (2) User provides a molecule and asks to "make it more X" or "improve Y", (3) User wants to generate molecule variants…

PharMolix/OpenBioMed · 128 tokens

biomed-research

Use when answering biomedical research questions that need source-backed evidence from local MCP servers, including gene, disease, drug, variant, phenotype, study, or clinical-trial questions.

nickzren/biomed-agent · 39 tokens

tooluniverse

Access 1000+ scientific tools through ToolUniverse for drug discovery, protein analysis, genomics, literature search, clinical data, ADMET prediction, molecular docking, and more. Use when the user needs biomedical or scientific research capabilities.

AgentTeam-TaichuAI/ScienceClaw · 51 tokens

datamol

Pythonic wrapper around RDKit with simplified interface and sensible defaults. Preferred for standard drug discovery including SMILES parsing, standardization, descriptors, fingerprints, clustering, 3D conformers, parallel processing. Returns native rdkit.Chem.Mol objects. For advanced control or custom parameters…

synthetic-sciences/openscience · 67 tokens

drug-design

End-to-end drug discovery pipeline orchestration. Deterministic Python script that auto-chains structure prediction, pocket detection, de novo design, docking, scoring, and ADMET filtering into reproducible workflows.

synthetic-sciences/openscience · 44 tokens

pocket-detection

Multi-method binding pocket detection and druggability assessment. Grid-based, fpocket, and P2Rank detection with druggability scoring, visualization, and cross-structure comparison.

synthetic-sciences/openscience · 41 tokens