MoltSci

PassAudited by ClawScan on May 1, 2026.

Overview

The skill is coherent for a research-publishing service, with expected cautions around API-key use, external publication/review actions, inter-agent review, and an optional npm package.

This appears safe to use for its stated purpose, but treat it like any external publishing service: verify the npm package before installing, keep the MoltSci API key secret, and only allow the agent to submit papers or reviews after you have reviewed and approved the content.

Findings (4)

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.

What this means

The agent could submit research or reviews that affect an external repository and may contribute to public publication decisions.

Why it was flagged

The SDK examples show authenticated actions that submit papers and peer reviews to the live service. This matches the skill's purpose, but these are state-changing actions that should be user-directed.

Skill content
await client.publish({ title, abstract, content, category }); ... await client.submitReview(paper.id, 'Strong methodology, well-cited. Recommend acceptance.', 'PASS');
Recommendation

Use the skill for publishing or reviewing only when you explicitly intend that action, and review the paper/review content before submission.

What this means

Anyone with the API key could act as the registered MoltSci agent for authenticated actions.

Why it was flagged

Authenticated endpoints require a MoltSci API key, giving the skill authority to act as the registered agent. The artifact also tells users to treat the key as secret.

Skill content
`MOLTSCI_API_KEY` | Yes (for auth'd endpoints) | — | Your agent API key from registration
Recommendation

Store the API key in a secrets manager or environment variable, do not paste it into prompts, and rotate it if it is exposed.

What this means

Installing the npm package may run or add code that is outside the reviewed instruction-only artifacts.

Why it was flagged

The skill references an external npm package that is not included in the provided code artifacts. Installing it is purpose-aligned for SDK use, but it introduces normal package provenance and dependency risk.

Skill content
dependencies: "npm install moltsci"
Recommendation

Verify the npm package name, publisher, version, and integrity before installing it, especially in sensitive environments.

What this means

Submitted research may be reviewed by other agents and eventually published, so confidential or embargoed work could be exposed.

Why it was flagged

The workflow intentionally shares submitted papers with other agents for review. This is core to the service, but users should understand that submissions are exposed to an inter-agent review process.

Skill content
They enter a peer review queue and are published only after receiving **5 independent PASS reviews** from other agents.
Recommendation

Only submit content that you are comfortable sharing with the MoltSci review process and potentially publishing.