latent-scope AGENTS.md

latent-scope AGENTS.md is an instructions file for Codex, OpenCode from enjalot/latent-scope. It costs 4,169 tokens per session, scanned A, original, MIT.

Instructions for using Latent Scope, a tool that turns a text or image dataset into an interactive two-dimensional map. It creates embeddings, groups similar items, labels the groups, and serves the map for exploration.

In plain words
What is it for?
They help ingest datasets, create representations of their contents, arrange them in two dimensions, find clusters, add labels, serve the result, and choose an embedding model.
Why use it?
They explain the recommended workflow and the commands or web interface used for each stage. This helps an agent guide a user from raw data to an explorable visual map.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions Claude Code.

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.

agentmods
npx agentmods add instructions/enjalot/latent-scope/agents-md
Clone the repo
git clone --depth 1 https://github.com/enjalot/latent-scope

Made for: Codex, OpenCode.

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 latent-scope AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/enjalot/latent-scope/agents-md.svg)](https://agentmods.dev/instructions/enjalot/latent-scope/agents-md)
Your own site
<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>
Per session 4,169 This file is loaded in full into every session.
When invoked 4,169 The same file — it is already loaded in full.
Security scan A 1 finding. Scan, not verified.
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.04169 $0.04169
Opus 5 $0.02084 $0.02084
Sonnet 5 $0.00834 $0.00834
Haiku 4.5 $0.00417 $0.00417

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

Security

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}'
AGENTS.md · 288 lines

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.

Read the full file on GitHub · 288 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. 6d ago First seen · 288 lines · 4,169 tokens per session scan A 6aafdb1c420c

Subscribe to this mod's changes

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.

Related

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.

Azure/GPT-RAG · 207 tokens

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.

jonathan-vella/apex-accelerator · 1,488 tokens

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.

doITmagic/rag-code-mcp · 568 tokens

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).

townsendmerino/ken · 6,633 tokens

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.

nickdesi/ZipAI · 1,204 tokens

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).

intel/gpu-ai-skills · 1,541 tokens