repo-scout

repo-scout is an agent for Claude Code from nel-neru/LibrAIum. It costs 0 tokens per session (1,815 once invoked), scanned A, original, MIT.

A read-only research agent that finds and ranks GitHub repositories for a curated library. It checks both existing entries and previously rejected candidates to avoid duplicates.

In plain words
What is it for?
Use it to find repositories for gaps in the library or replacements for outdated entries, then pass the shortlist to /add-entry or /bulk-add.
Why use it?
It reduces the manual work of searching for suitable repositories and prevents reconsidering candidates that were already shelved or declined.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is node scripts/reject-candidate.mjs <owner/repo> "<one-line reason>".

Good fit Use it to find repositories for gaps in the library or replacements for outdated entries, then pass the shortlist to /add-entry or /bulk-add.

Compare 6 agents from other repositories ↓
Install

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.

Clone the repo
git clone --depth 1 https://github.com/nel-neru/LibrAIum
agentmods
npx agentmods add agents/nel-neru/libraium/repo-scout

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 repo-scout

README.md
[![agentmods](https://agentmods.dev/badge/agents/nel-neru/libraium/repo-scout/github.svg)](https://agentmods.dev/agents/nel-neru/libraium/repo-scout)
Your own site
<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.

agentmods 80×15 button for repo-scout

Your own site · 80×15
<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>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,815 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00000 $0.01815
Opus 5 $0.00000 $0.00907
Sonnet 5 $0.00000 $0.00363
Haiku 4.5 $0.00000 $0.00181

Measured 7d ago against content hash 55ff91cbd4e4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

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.

.claude/agents/repo-scout.md · 63 lines

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

  1. 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.mjs flags thin shelves (<3 entries) and the global tag vocabulary (singleton / near-synonym tags) — for this shelf's own entries and tags, read data/entries/<category>/ directly; read the shelf's name/description in data/master/categories.yaml. Derive 2-3 single-topic queries from the category name/description plus its dominant tags (e.g. audio-voicespeech recognition, text to speech, audio processing). One topical phrase per query beats a long AND — the search narrows fast. The proposeCategory heuristic in scripts/bulk-add.mjs tokenizes 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.
  2. Search with floors. Run each query, adjusting --stars to 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 updated when liveness matters more than popularity. Drop anything whose pushedAt is older than ~12-18 months (dormant), and drop awesome-lists / tutorial collections / curated link dumps — those are not real tooling.

  3. Dedupe against the library AND the rejected-candidates memory. Filter EVERY hit through two checks — never propose something already shelved (findDuplicate in mcp-server/lib/store.js, case-insensitive on full_name, so it catches an entry even under a different category), and never re-surface a repo already consciously declined (findRejected in mcp-server/lib/rejected.js, backed by data/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)}`);
        }
      });'
    
  4. 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.

Read the full file on GitHub · 63 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. 7d ago First seen · 63 lines · 0 tokens per session scan A 55ff91cbd4e4

Subscribe to this mod's changes

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.

Related

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.

outfitter-dev/blz · 76 tokens

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.

h315uk3/symbiosis · 36 tokens

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

h315uk3/symbiosis · 53 tokens

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.

h315uk3/symbiosis · 33 tokens

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.

h315uk3/symbiosis · 34 tokens

workflow-optimizer

Analyze and optimize saved workflows for efficiency and maintainability. Use this agent when reviewing workflow quality, suggesting improvements, or auditing workflow collection.

h315uk3/symbiosis · 31 tokens