segment-anything-model

segment-anything-model is a skill for Claude Code, Codex from moltis-org/moltis. It costs 45 tokens per session (3,367 once invoked), scanned A, a copy of segment-anything-model, MIT.

An image-segmentation model that separates objects from their backgrounds using points, boxes, masks, or automatic detection. Image segmentation means marking which pixels belong to each object.

In plain words
What is it for?
Use it to build image annotation tools, create training data, or process medical, satellite, and other specialized images.
Why use it?
It lets you outline objects in unfamiliar images without training a separate model for each type of image.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for hermes-agent. Also seen: built for hermes-agent.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python scripts/export_onnx_model.py \.

Good fit Use it to build image annotation tools, create training data, or process medical, satellite, and other specialized images.

Compare 6 skills from other repositories ↓
About the project

Moltis is a persistent personal agent server written in Rust that runs on hardware controlled by its user. It provides an AI agent with sandboxed command execution, model-provider connections, memory, voice, scheduling, messaging integrations, browser automation, and MCP tools. Its catalogue add-ons extend the agent’s workflows and available tools.

moltis-org/moltis · 2,847 stars · on GitHub · moltis.org

Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/moltis-org/moltis
agentmods
npx agentmods add skills/moltis-org/moltis/segment-anything-model

Made for: Claude Code, Codex.

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 segment-anything-model

README.md
[![agentmods](https://agentmods.dev/badge/skills/moltis-org/moltis/segment-anything-model/github.svg)](https://agentmods.dev/skills/moltis-org/moltis/segment-anything-model)
Your own site
<a href="https://agentmods.dev/skills/moltis-org/moltis/segment-anything-model"><img src="https://agentmods.dev/badge/skills/moltis-org/moltis/segment-anything-model/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 segment-anything-model

Your own site · 80×15
<a href="https://agentmods.dev/skills/moltis-org/moltis/segment-anything-model"><img src="https://agentmods.dev/badge/skills/moltis-org/moltis/segment-anything-model.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,367 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 92% copy Near-identical to another mod 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.00045 $0.03367
Opus 5 $0.00023 $0.01684
Sonnet 5 $0.00009 $0.00673
Haiku 4.5 $0.00005 $0.00337

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

Security

Grade A, and why

segment-anything-model scanned grade A with 1 finding 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.

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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

wget https://dl.fbaipublicfiles.com/segment_anything/sam_vit_h_4b8939.pth
Origin

This is a copy

92% identical to segment-anything-model — 19 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

crates/skills/src/assets/mlops/models/segment-anything-model/SKILL.md · 500 lines

How it starts

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

Segment Anything Model (SAM)

Comprehensive guide to using Meta AI's Segment Anything Model for zero-shot image segmentation.

When to use SAM

Use SAM when:

  • Need to segment any object in images without task-specific training
  • Building interactive annotation tools with point/box prompts
  • Generating training data for other vision models
  • Need zero-shot transfer to new image domains
  • Building object detection/segmentation pipelines
  • Processing medical, satellite, or domain-specific images

Key features:

  • Zero-shot segmentation: Works on any image domain without fine-tuning
  • Flexible prompts: Points, bounding boxes, or previous masks
  • Automatic segmentation: Generate all object masks automatically
  • High quality: Trained on 1.1 billion masks from 11 million images
  • Multiple model sizes: ViT-B (fastest), ViT-L, ViT-H (most accurate)
  • ONNX export: Deploy in browsers and edge devices

Use alternatives instead:

  • YOLO/Detectron2: For real-time object detection with classes
  • Mask2Former: For semantic/panoptic segmentation with categories
  • GroundingDINO + SAM: For text-prompted segmentation
  • SAM 2: For video segmentation tasks

Quick start

Installation

# From GitHub
pip install git+https://github.com/facebookresearch/segment-anything.git

# Optional dependencies
pip install opencv-python pycocotools matplotlib

# Or use HuggingFace transformers
pip install transformers

Download checkpoints

# ViT-H (largest, most accurate) - 2.4GB
wget https://dl.fbaipublicfiles.com/segment_anything/sam_vit_h_4b8939.pth

# ViT-L (medium) - 1.2GB
wget https://dl.fbaipublicfiles.com/segment_anything/sam_vit_l_0b3195.pth

# ViT-B (smallest, fastest) - 375MB
wget https://dl.fbaipublicfiles.com/segment_anything/sam_vit_b_01ec64.pth

Basic usage with SamPredictor

import numpy as np
from segment_anything import sam_model_registry, SamPredictor

# Load model
sam = sam_model_registry["vit_h"](checkpoint="sam_vit_h_4b8939.pth")
sam.to(device="cuda")

# Create predictor
predictor = SamPredictor(sam)

# Set image (computes embeddings once)
image = cv2.imread("image.jpg")
image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
predictor.set_image(image)

# Predict with point prompts
input_point = np.array([[500, 375]])  # (x, y) coordinates
input_label = np.array([1])  # 1 = foreground, 0 = background

masks, scores, logits = predictor.predict(
    point_coords=input_point,
    point_labels=input_label,
    multimask_output=True  # Returns 3 mask options
)

# Select best mask
best_mask = masks[np.argmax(scores)]

Read the full file on GitHub · 500 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 500 lines · 45 tokens per session scan A ce93bf77012b

Subscribe to this mod's changes

segment-anything-model is a skill published in the GitHub repository moltis-org/moltis (2,847 stars, last pushed 6d ago), licensed MIT. It adds 45 tokens to every session and 3,367 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 92% identical to segment-anything-model, differing in 19 lines, and is treated as a copy.

Related

Other skills, from other repositories

audit-training-experiment

Audits an ML training experiment for reproducibility, evidence integrity, leakage, checkpoint identity, evaluation validity, and overclaimed conclusions. Use before accepting results, spending on a longer run, publishing artifacts, or handing work to another agent.

bastos/skills · 52 tokens

close-out-ml-experiment

Preserves positive or negative ML experiment evidence, reconciles report discrepancies, records the canonical decision and limitations, and prepares a concise handoff. Use when stopping an experiment, rejecting a prompt/model, or freezing a result before the next iteration.

bastos/skills · 55 tokens

pubmed-cli

Search PubMed, fetch article metadata, traverse citation graphs, and look up MeSH terms from the command line. Use when: (1) Searching PubMed with Boolean/MeSH queries, (2) Fetching article details by PMID (abstract, authors, DOI, MeSH terms), (3) Finding papers that cite a given article (cited-by), (4) Finding papers…

drpedapati/sciclaw · 142 tokens

experiment-provenance

Capture experiment provenance with reproducible run metadata, artifact pointers, and decision logs for scientific claims.

drpedapati/sciclaw · 24 tokens

scientific-writing

Draft and revise scientific manuscript sections with claim-evidence alignment and reproducible method reporting.

drpedapati/sciclaw · 21 tokens

biorxiv-database

Search and summarize preprints from bioRxiv/medRxiv with explicit date windows and traceable query logs.

drpedapati/sciclaw · 29 tokens