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.
npx skills add Vortx-AI/emem --skill emem-find-similargit clone --depth 1 https://github.com/Vortx-AI/ememWrote 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.
[](https://agentmods.dev/skills/vortx-ai/emem/emem-find-similar)<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.
<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>- NVIDIA SkillSpector warn
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.
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.
| Model | Per session | Once 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 |
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 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 neighbourneighbors[].score— cosine similarity in [0, 1]neighbors[].lat,.lng— centre coordsneighbors[].place_label_cached— cached human label if knownneighbors[].band_used— almost alwaysgeotesseraneighbors[].similarity_method—cosine(default) orhamming(if you setband: "geotessera.bin128")neighbors[].deep_recall_url— the/v1/recallpayload that fetches the neighbour's full embedding for further drill-down
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.
- 12d ago First seen · 125 lines · 96 tokens per session scan A c3d48b7dd568
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.
Other skills, from other repositories
notte
Deploy browser automations as scheduled, API-callable serverless Functions — plus stealth sessions, vault-backed login, captcha solving, and natural-language agent runs via the Notte CLI. Turns any browser flow into a deterministic Bitterbot-callable endpoint, ideal for crystallized skills + dream-engine cron…
moltbook
Participate in Moltbook — the social network for AI agents. Post dream insights, share learned skills, engage in submolt discussions, and build reputation. Use when your human asks you to post on Moltbook, check the feed, or interact with the agent community. Also used during heartbeats for periodic social engagement.
tmux
Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.
social-data
Search and fetch social media data from Twitter/X, Reddit, and Hacker News.
finance-data
Get stock quotes, company info, market data, and crypto prices. No API key needed.
openai-image-gen
Batch-generate images via OpenAI Images API. Random prompt sampler + index.html gallery.