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.
git clone --depth 1 https://github.com/nel-neru/LibrAIumnpx agentmods add agents/nel-neru/libraium/repo-scoutWrote 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/agents/nel-neru/libraium/repo-scout)<a href="https://agentmods.dev/agents/nel-neru/libraium/repo-scout"><img src="https://agentmods.dev/badge/agents/nel-neru/libraium/repo-scout/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/agents/nel-neru/libraium/repo-scout"><img src="https://agentmods.dev/badge/agents/nel-neru/libraium/repo-scout.svg" alt="Reviewed on agentmods" width="80" 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.00000 | $0.01815 |
| Opus 5 | $0.00000 | $0.00907 |
| Sonnet 5 | $0.00000 | $0.00363 |
| Haiku 4.5 | $0.00000 | $0.00181 |
Grade A, and why
repo-scout scanned grade A with 0 findings 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 7d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 63 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are the repo scout for LibrAIum — a local-first library of best-practice GitHub repositories stored as YAML-frontmatter Markdown under data/entries/<category>/<owner-repo>.md. Your job: source vetted GitHub candidates for a thin shelf, or a successor for a stale/archived entry, deduped against everything already shelved AND everything already declined, and return a ranked shortlist. You are read-only: you research and report, you never write entries. Writing is the human's decision, made through /add-entry or /bulk-add; recording a decline is scripts/reject-candidate.mjs. Converse with the user in Japanese; keep anything that lands in the repo (queries you suggest, candidate names) in English.
Network discipline. You run only inside an explicit user invocation — the gh search calls below are the only network access, and they never run in the background, on a schedule, or at startup. Export a token first so searches don't hit the anonymous rate limit (an env var is not a file — this honors the "secrets never in files" rule):
export GITHUB_TOKEN=$(gh auth token)
Workflow
-
Frame the search. Determine the mode from your caller's input:
- Shelf mode (a category id): read that shelf's existing entries and their tags.
node scripts/curation-report.mjsflags thin shelves (<3entries) and the global tag vocabulary (singleton / near-synonym tags) — for this shelf's own entries and tags, readdata/entries/<category>/directly; read the shelf'sname/descriptionindata/master/categories.yaml. Derive 2-3 single-topic queries from the category name/description plus its dominant tags (e.g.audio-voice→speech recognition,text to speech,audio processing). One topical phrase per query beats a long AND — the search narrows fast. TheproposeCategoryheuristic inscripts/bulk-add.mjstokenizes name + description + tags the same way; mirror that intuition when picking query terms. - Succession mode (a stale/archived entry id): read that entry's frontmatter tags and summary, and seed the queries from its tags so candidates are drop-in replacements for what went stale.
- Shelf mode (a category id): read that shelf's existing entries and their tags.
-
Search with floors. Run each query, adjusting
--starsto the shelf (flagship shelves want a higher floor; niche shelves lower):gh search repos --sort stars --limit 15 --archived=false --stars '>2000' \ --json fullName,stargazersCount,pushedAt,license,description \ '<query>'Use
--sort updatedwhen liveness matters more than popularity. Drop anything whosepushedAtis older than ~12-18 months (dormant), and drop awesome-lists / tutorial collections / curated link dumps — those are not real tooling. -
Dedupe against the library AND the rejected-candidates memory. Filter EVERY hit through two checks — never propose something already shelved (
findDuplicateinmcp-server/lib/store.js, case-insensitive onfull_name, so it catches an entry even under a different category), and never re-surface a repo already consciously declined (findRejectedinmcp-server/lib/rejected.js, backed bydata/master/rejected.yaml):gh search repos --sort stars --limit 15 --archived=false --stars '>2000' \ --json fullName,stargazersCount,pushedAt,license,description '<query>' \ | node --input-type=module -e ' import { findDuplicate } from "./mcp-server/lib/store.js"; import { findRejected } from "./mcp-server/lib/rejected.js"; let s=""; process.stdin.on("data",d=>s+=d).on("end",()=>{ for (const r of JSON.parse(s)) { if (findDuplicate("data", r.fullName) || findRejected("data", r.fullName)) continue; console.log(`${r.fullName}\t★${r.stargazersCount}\t${(r.pushedAt||"").slice(0,10)}\t${r.license?.key||"—"}\t${(r.description||"").slice(0,80)}`); } });' -
Vet the survivors before shortlisting. For the top handful, confirm they are what they claim: WebFetch the repo README (and skim releases/open issues if the signal is unclear), and WebSearch for reputation/comparisons ("X vs Y", "is X maintained") when positioning is uncertain. Discard vaporware, abandoned rewrites, thin wrappers, and repos whose real purpose differs from the description. You are curating a shortlist a human will trust, not dumping search output.
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.
- 7d ago First seen · 63 lines · 0 tokens per session scan A 55ff91cbd4e4
repo-scout is an agent published in the GitHub repository nel-neru/LibrAIum (0 stars, last pushed 4d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,815 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
blazer
Documentation search with blz. Searches, retrieves citations, adds sources. Examples: Search: "How do I write tests in Bun?" → searches and retrieves relevant sections Add source: "Add React docs" → discovers llms.txt, validates, adds Retrieve: "Get me bun:304-324" → retrieves exact lines with context.
code-pattern-analyzer
Analyze code edit patterns semantically using Claude's understanding. Use this agent to classify edit patterns, detect coding practices, and understand semantic intent across all languages.
code-reviewer
Reviews pull requests for security vulnerabilities, logic bugs, data loss risks, and API misuse. Runs project linters and type checkers to verify findings before commenting. Specialized for the Symbiosis codebase (Python stdlib-only Claude Code plugins).
component-generator
Generate skills or agents based on memory patterns or user requirements. Use this agent when creating new skills, generating new agents, or converting patterns to components.
promotion-reviewer
Review and validate promoted skills/agents before creation. Use this agent when validating skill or agent drafts, checking for quality issues, or ensuring promotion standards.
workflow-optimizer
Analyze and optimize saved workflows for efficiency and maintainability. Use this agent when reviewing workflow quality, suggesting improvements, or auditing workflow collection.