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 agentmods add instructions/enjalot/latent-scope/agents-mdgit clone --depth 1 https://github.com/enjalot/latent-scopeWrote 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/instructions/enjalot/latent-scope/agents-md)<a href="https://agentmods.dev/instructions/enjalot/latent-scope/agents-md"><img src="https://agentmods.dev/badge/instructions/enjalot/latent-scope/agents-md.svg" alt="Measured on agentmods" height="20"></a>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.04169 | $0.04169 |
| Opus 5 | $0.02084 | $0.02084 |
| Sonnet 5 | $0.00834 | $0.00834 |
| Haiku 4.5 | $0.00417 | $0.00417 |
Grade A, and why
latent-scope AGENTS.md 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.
3. Check the UI itself is served: `curl -s -o /dev/null -w '%{http_code}' How it starts
The opening of the file, as written. The whole thing — 288 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md — Driving Latent Scope for a user
Cross-provider guidance for AI coding agents (Claude, Codex, Cursor, Copilot, Amp,
…) on how to use Latent Scope effectively on a user's behalf — take a raw
dataset, turn it into an explorable latent-space map, and show the user the
result. Claude Code reads this via .claude/skills/latent-scope/; other agents
read this file directly. It is the source of truth; keep provider-specific files
(CLAUDE.md) pointing here.
If the user asks you to contribute to Latent Scope (fix a bug, add a feature), see the "Developing" section at the bottom and
CLAUDE.md. Most of this file is about using the tool to analyze a user's data.
What it is
Latent Scope embeds a dataset, projects it to 2D, clusters and labels it, and serves an interactive map. Pipeline:
ingest → embed → umap → cluster → label → scope → (sprite atlas) → explore
Each step is a CLI (ls-embed, ls-umap, …) that reads/writes files under
$LATENT_SCOPE_DATA/<dataset>/. The web UI (ls-serve) drives the same steps
and shows the result. Text and image datasets; dense, ColBERT
late-interaction, and image (CLIP) embeddings; LanceDB vector storage.
Reach for it when a user has a table/corpus of text or images and wants to see the structure — clusters, outliers, themes, similarity — rather than a single metric.
Golden path: run it for a user
On a dev checkout use uv run (resolves .venv). If installed via pip, drop the
uv run prefix. Set the data dir and HF cache first:
export LATENT_SCOPE_DATA=~/latent-scope-data # where datasets live
export HF_HOME=~/hf-cache # model/dataset cache
Full pipeline on a text CSV:
uv run ls-ingest mydata --path /path/to/data.csv --text_column text
uv run ls-embed mydata text huggingface-jinaai___jina-embeddings-v5-text-nano # see "Choosing a model"
uv run ls-umap mydata embedding-001 25 0.1
uv run ls-cluster mydata umap-001 25 5 0.0 --method hdbscan
uv run ls-scope mydata embedding-001 umap-001 cluster-001 default "My scope" "description"
ls-cluster auto-writes …-labels-default, so ls-scope … default … works
without an LLM. For nicer labels run ls-label with a chat model first and
pass that labels id instead of default.
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.
- 6d ago First seen · 288 lines · 4,169 tokens per session scan A 6aafdb1c420c
latent-scope AGENTS.md is an instructions file published in the GitHub repository enjalot/latent-scope (792 stars, last pushed 15d ago), licensed MIT. It adds 4,169 tokens to every session, about $0.0208 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 instructions, from other repositories
GPT-RAG release.instructions.md
Instructions for Azure/GPT-RAG, a project described as: Enterprise-grade accelerator for agentic RAG on Azure. Built on Microsoft Foundry with Foundry IQ as the default retrieval backend, Microsoft Agent Framework orchestration, Zero-Trust architecture and IaC.
apex-accelerator vendor-prompting.instructions.md
Vendor prompting best-practice rules for Anthropic Claude and OpenAI GPT-5.6-Terra agents and prompts. Each rule cites a rule ID in the vendor-prompting skill rules.json registry. Validator: npm run lint:vendor-prompting.
rag-code-mcp copilot-instructions.md
Instructions for doITmagic/rag-code-mcp, covering copilot instructions - ragcode mcp, ⚖️ the golden rule, project overview, architecture & patterns and developer workflows.
ken CLAUDE.md
Claude Code instructions for townsendmerino/ken, covering claude.md, what this is, repository ownership (read this first), commands and embedding parity & golden fixtures (now in aikit).
ZipAI CLAUDE.md
Claude Code instructions for nickdesi/ZipAI, covering claude.md — zipai: ultra-dense token optimizer, rules, 1. zero filler, 2. ambiguity and 3. prompt caching.
gpu-ai-skills CLAUDE.md
Claude Code instructions for intel/gpu-ai-skills, covering claude.md, what this repository is, repository structure, commands and validation (required before any skill change).