Skills molfeat
๐Ÿ“ฆ

molfeat

Content revision r1 Medium Risk ๐Ÿ“ Filesystem accessโš™๏ธ External commands๐ŸŒ Network access

Build Molecular Features for ML

Molecular ML projects need consistent features from SMILES and RDKit molecules. This skill guides molfeat choices, batch featurization, pretrained embeddings, caching, and QSAR workflows.

Supports: Claude Codex Code(CC)
๐Ÿ“Š 68 Adequate

Install with my Agent

Copy this request to your Agent. It includes the canonical Skill page and manifest.

Agent request
Review the Skillstore skill "molfeat" from https://skillstore.io/skills/k-dense-ai-molfeat.md and its manifest at https://skillstore.io/api/skills/k-dense-ai-molfeat/manifest. Verify the artifact. You may proceed after verification, subject to the environment's own policy.

Your Agent should still show its plan and request any confirmation required by the security policy.

Agent-readable resources

Use these links when an AI agent, crawler, or script needs clean context instead of reading the full page.

Test it

Using "molfeat". I have 100,000 SMILES and need features for a property model.

Expected outcome:

  • Recommended starting with ECFP for speed and a strong baseline.
  • Suggested chunked batch processing with parallel workers to control memory use.
  • Outlined validation steps for invalid SMILES and reproducible featurizer settings.

Using "molfeat". I want to compare ChemBERTa embeddings with classical descriptors.

Expected outcome:

  • Identified dependency and runtime differences for pretrained embeddings.
  • Proposed a comparison plan using the same train and validation splits.
  • Recommended tracking feature dimensions, runtime, and model metrics together.

Using "molfeat". I need a similarity search workflow for a compound library.

Expected outcome:

  • Recommended ECFP or MAP4 depending on library size and similarity goals.
  • Explained how to compute query and library features consistently.
  • Suggested ranking top compounds after similarity scoring and review.

Security Audit

Medium Risk
v7 โ€ข 7/5/2026 Open versioned report

Most static findings are false positives caused by Markdown code fences, inline API names, local cache examples, and documentation links. No prompt injection attempt, data exfiltration intent, or automatic command execution was found. The only semantic concern is unsafe pickle cache loading guidance without a trust warning.

4
Files scanned
1,998
Lines analyzed
0
Review items
0
False positives ignored

Confirmed security concerns (1)

Medium
Unsafe Pickle Cache Loading in Examples
The caching examples load embeddings from pickle files without warning that pickle files must be trusted. Copying this pattern for attacker-controlled cache files can enable code execution.
Both examples use pickle.load on a local cache file. Exploitability depends on attacker control of that file, so the guidance risk is clear but contextual.
Audited by: codex View Audit History โ†’
Share & cite this report

Share the versioned assessment report, neutral badge, embed card, and citations. Skillstore reports evidence without deciding whether this Skill is safe.

Open versioned report
Security Assessment

Copy report link

https://skillstore.io/skills/k-dense-ai-molfeat/audits/7?utm_source=security_passport&utm_medium=share&utm_campaign=versioned_report

Markdown badge

[![Skillstore security assessment](https://skillstore.io/badges/skills/k-dense-ai-molfeat/security.svg)](https://skillstore.io/skills/k-dense-ai-molfeat?utm_source=security_passport_badge)

HTML badge

<a href="https://skillstore.io/skills/k-dense-ai-molfeat?utm_source=security_passport_badge"><img src="https://skillstore.io/badges/skills/k-dense-ai-molfeat/security.svg" alt="Skillstore security assessment" loading="lazy"></a>

Embed card

<iframe src="https://skillstore.io/embed/skills/k-dense-ai-molfeat.html" title="Skillstore Security Assessment" sandbox="allow-popups allow-popups-to-escape-sandbox" loading="lazy" referrerpolicy="no-referrer" width="420" height="180"></iframe>
Academic citations (APA ยท BibTeX ยท CFF)

APA citation

K-Dense-AI. (2026). molfeat security audit report (audit version 7) [Author version unspecified]. Skillstore. https://skillstore.io/skills/k-dense-ai-molfeat/audits/7

BibTeX citation

@techreport{k-dense-ai-k-dense-ai-molfeat-2026, author = {K-Dense-AI}, title = {molfeat security audit report (audit version 7)}, institution = {Skillstore}, year = {2026}, number = {7}, url = {https://skillstore.io/skills/k-dense-ai-molfeat/audits/7}, note = {Author version unspecified} }

CITATION.cff

cff-version: 1.2.0 message: "If you use this Skill, cite its author and this versioned security audit report." title: "molfeat security audit report (audit version 7)" version: "unspecified" type: report authors: - name: "K-Dense-AI" date-released: "2026-07-05" url: "https://skillstore.io/skills/k-dense-ai-molfeat/audits/7" identifiers: - type: other value: "skillstore:k-dense-ai-molfeat:audit:7" description: "Skillstore immutable audit report identifier"

Compare variants

2 installable variants

Each author remains a separate installable skill. The recommended variant is ranked by Skillstore evidence.

Why this variant is first

Highest Skillstore Score
K-Dense-AI Recommended Current

k-dense-ai-molfeat

Skillstore Score 68
Evidence Confidence High
Skillstore usage 7
Updated

2026-08-21

davila7-molfeat

Skillstore Score 38
Evidence Confidence Medium
Skillstore usage 7
Updated

2026-08-21

Skillstore Score

Why this score Evidence Confidence: High
45
Architecture
85
Maintainability
87
Content
70
Community
87
Spec Compliance

What You Can Build

Prepare QSAR Features

Select fingerprints or descriptors and build reproducible inputs for property prediction models.

Build Screening Pipelines

Convert large compound libraries into features for ranking, classification, and hit selection.

Compare Molecular Embeddings

Evaluate traditional fingerprints against pretrained embeddings for chemical similarity and model performance.

Try These Prompts

Choose a Featurizer
Help me choose a molfeat featurizer for my SMILES dataset and explain the tradeoffs for QSAR modeling.
Plan Batch Featurization
Design a molfeat workflow for a large SMILES list with invalid molecule handling, parallel processing, and reproducible settings.
Compare Model Inputs
Compare ECFP, MACCS, RDKit descriptors, Mordred, and ChemBERTa features for my molecular prediction task.
Design Screening Pipeline
Create a virtual screening plan using molfeat features, scikit-learn evaluation, ranking logic, and memory-conscious batch processing.

Best Practices

  • Start with fast fingerprints before testing larger pretrained embeddings.
  • Save featurizer configuration and package versions for reproducible experiments.
  • Use chunking and parallel processing for large molecule collections.

Avoid

  • Do not compare featurizers using different train and validation splits.
  • Do not ignore invalid SMILES without tracking which molecules failed.
  • Do not use pretrained model caches from untrusted sources.

Frequently Asked Questions

What is molfeat used for?
Molfeat converts molecular structures into numerical features for machine learning, similarity search, and virtual screening.
Can it work with SMILES strings?
Yes. The examples show SMILES inputs and RDKit molecule inputs for calculators and transformers.
Does it include deep learning embeddings?
Yes. The skill covers pretrained transformers such as ChemBERTa, ChemGPT, GIN, and Graphormer models.
Can I use it with scikit-learn?
Yes. The skill describes scikit-learn compatible transformers, pipelines, cross-validation, and grid search workflows.
Does the skill install dependencies automatically?
No. It documents install commands and optional extras, but users must manage their environment.
Is it safe for production workflows?
It is guidance for implementation. Review dependencies, cache handling, and scientific validation before production use.

Developer Details

Author

K-Dense-AI

License

Apache-2.0 license

Skillstore revision

r1

Version notice

The author did not declare a version.

Ref

a25199bc7d6b82598536822d1738eb5d5f54025b

Maintenance freshness

7/18/2026

Usage

5 downloads ยท 227 views

File structure

๐Ÿ“ references/

๐Ÿ“„ api_reference.md

๐Ÿ“„ available_featurizers.md

๐Ÿ“„ examples.md

๐Ÿ“„ SKILL.md

More from K-Dense-AI

View all
View all