emem-find-similar

emem-find-similar is a skill for Claude Code from Vortx-AI/emem. It costs 96 tokens per session (1,342 once invoked), scanned A, original, Apache-2.0.

A search tool for finding places on Earth that resemble a given place or map cell. It compares satellite, radar, and seasonal environmental data using a learned representation.

In plain words
What is it for?
Use it to find cities, forests, regions, or other areas with similar Earth-observation signatures, such as places resembling Bangalore or the Western Ghats.
Why use it?
It helps when ordinary location searches cannot identify places with similar physical or urban patterns.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to find cities, forests, regions, or other areas with similar Earth-observation signatures, such as places resembling Bangalore or the Western Ghats.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vortx-ai/emem/emem-find-similar
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 Vortx-AI/emem --skill emem-find-similar
Clone the repo
git clone --depth 1 https://github.com/Vortx-AI/emem

Made for: Claude Code.

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 emem-find-similar

README.md
[![agentmods](https://agentmods.dev/badge/skills/vortx-ai/emem/emem-find-similar/github.svg)](https://agentmods.dev/skills/vortx-ai/emem/emem-find-similar)
Your own site
<a href="https://agentmods.dev/skills/vortx-ai/emem/emem-find-similar"><img src="https://agentmods.dev/badge/skills/vortx-ai/emem/emem-find-similar/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 emem-find-similar

Your own site · 80×15
<a href="https://agentmods.dev/skills/vortx-ai/emem/emem-find-similar"><img src="https://agentmods.dev/badge/skills/vortx-ai/emem/emem-find-similar.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 96 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,342 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 4 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Tool Misuse · line 47
    Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
    Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
  • medium Data Exfiltration · line 34
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 47
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 79
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
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.00096 $0.01342
Opus 5 $0.00048 $0.00671
Sonnet 5 $0.00019 $0.00268
Haiku 4.5 $0.00010 $0.00134

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

Security

Grade A, and why

emem-find-similar 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 12d 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.

allowed-tools: Bash(curl:*) Bash(jq:*) Read
claude-skills/emem-find-similar/SKILL.md · 125 lines

How it starts

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

emem-find-similar

This skill runs a nearest-neighbour search over the Tessera embedding field on emem.dev. Tessera is a 128-D learned multimodal vector that fuses Sentinel-2 optical, Sentinel-1 radar, and seasonality into one position-stable representation per cell per year. Two cells with cosine similarity >0.85 are usually the same physical archetype.

When to invoke

The user asks for analogues:

  • "Find cities globally that look like Bangalore."
  • "What other places have an urban canopy similar to Singapore?"
  • "Show me regions with the same forest signature as the Western Ghats."
  • "Compare Mumbai and Lagos by their Tessera embedding."

If the user wants exact-band matching (e.g., "all places with NDVI > 0.7"), this is the wrong skill — use query_region or compare_bands instead. This skill is vector cosine, not predicate filtering.

How to invoke

Step 1 — resolve the seed place to cell64

SEED_CELL=$(curl -sf -X POST https://emem.dev/v1/locate \
  -H 'content-type: application/json' \
  -d '{"q":"Bangalore, India"}' | jq -r '.cell64')
echo "seed cell: $SEED_CELL"

Step 2 — ensure the seed has a Tessera vector attested

/v1/find_similar returns 404 cid_not_found when the seed cell has no geotessera band attested on this responder. Materialise it first (idempotent if already present):

curl -sf -X POST https://emem.dev/v1/recall \
  -H 'content-type: application/json' \
  -d "{\"cell\":\"$SEED_CELL\",\"bands\":[\"geotessera\"]}" > /dev/null

Step 3 — query top-K neighbours

curl -sf -X POST https://emem.dev/v1/find_similar \
  -H 'content-type: application/json' \
  -d "{\"key\":\"$SEED_CELL\",\"k\":12}" \
  | jq '.neighbors[] | {cell, score, place: .place_label_cached, lat, lng}'

The response includes:

  • neighbors[].cell — cell64 of the neighbour
  • neighbors[].score — cosine similarity in [0, 1]
  • neighbors[].lat, .lng — centre coords
  • neighbors[].place_label_cached — cached human label if known
  • neighbors[].band_used — almost always geotessera
  • neighbors[].similarity_methodcosine (default) or hamming (if you set band: "geotessera.bin128")
  • neighbors[].deep_recall_url — the /v1/recall payload that fetches the neighbour's full embedding for further drill-down

Read the full file on GitHub · 125 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. 12d ago First seen · 125 lines · 96 tokens per session scan A c3d48b7dd568

Subscribe to this mod's changes

emem-find-similar is a skill published in the GitHub repository Vortx-AI/emem (56 stars, last pushed today), licensed Apache-2.0. It adds 96 tokens to every session and 1,342 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.