using-the-skill-librarian

using-the-skill-librarian is a skill for Claude Code, Codex from aka-kika/the-librarian. It costs 51 tokens per session (791 once invoked), scanned A, original, MIT.

A skill that searches a larger collection of agent skills and recommends the best match for a task.

In plain words
What is it for?
Finding skills before non-trivial tasks, brainstorming options, reporting whether recommendations helped, and reindexing the collection.
Why use it?
It helps locate useful skills that are not currently installed and avoids manually searching the whole collection.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Finding skills before non-trivial tasks, brainstorming options, reporting whether recommendations helped, and reindexing the collection.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aka-kika/the-librarian/using-the-skill-librarian
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.

Any agent
npx skills add aka-kika/the-librarian --skill using-the-skill-librarian
Clone the repo
git clone --depth 1 https://github.com/aka-kika/the-librarian

Made for: Claude Code, Codex.

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 using-the-skill-librarian

README.md
[![agentmods](https://agentmods.dev/badge/skills/aka-kika/the-librarian/using-the-skill-librarian/github.svg)](https://agentmods.dev/skills/aka-kika/the-librarian/using-the-skill-librarian)
Your own site
<a href="https://agentmods.dev/skills/aka-kika/the-librarian/using-the-skill-librarian"><img src="https://agentmods.dev/badge/skills/aka-kika/the-librarian/using-the-skill-librarian/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 using-the-skill-librarian

Your own site · 80×15
<a href="https://agentmods.dev/skills/aka-kika/the-librarian/using-the-skill-librarian"><img src="https://agentmods.dev/badge/skills/aka-kika/the-librarian/using-the-skill-librarian.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 791 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00051 $0.00791
Opus 5 $0.00026 $0.00396
Sonnet 5 $0.00010 $0.00158
Haiku 4.5 $0.00005 $0.00079

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

Security

Grade A, and why

using-the-skill-librarian 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 11d 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.

skills/using-the-skill-librarian/SKILL.md · 72 lines

How it starts

The opening of the file, as written. The whole thing — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Using the Skill Librarian

Overview

The skill-librarian MCP server searches your full skill collection and recommends the best fits for a stated intent. The librarian is the access path: only a small curated set of skills stays installed per agent; everything else is one librarian_find call away. Never copy skill files into agent config directories — read recommendations in place.

This is the one skill worth installing everywhere. It replaces the rest.

Quick Reference

Tool When to call
librarian_find(intent, k) Before any non-trivial task. Plain-language intent ("package a python mcp server for distribution"), not keywords.
librarian_brainstorm Open-ended ideation — "what could I build/do here" — instead of find.
librarian_report(skill, worked, note) Always after acting on a recommendation — used or rejected, one line why. Success rates drive curation; this is not optional bookkeeping.
librarian_reindex After adding or editing skills in the collection.
librarian_stats Collection health and usage stats.

Workflow

  1. librarian_find with your intent. Do this even if locally-installed skills look sufficient — the librarian searches the whole collection; your installed list is a tiny fraction of it.
  2. Weigh each recommendation's fit, why, and why_not. Rejecting all of them is a valid outcome.
  3. Load the chosen skill from the collection — recommendations return names, not paths, and skills may be nested inside bundles: find <your-skills-dir> -maxdepth 4 -type d -name "<skill-name>" → read its SKILL.md.
  4. Follow the skill.
  5. librarian_report with worked=true/false and a one-line note (why it worked, why it failed, or why you rejected it).

If the MCP isn't connected

The server is a local stdio Python process. Command and env (translate to your agent's config format):

{
  "command": "/path/to/the_librarian/.venv/bin/python",
  "args": ["/path/to/the_librarian/server.py"],
  "env": {
    "LIBRARIAN_SKILLS_DIR": "/path/to/your/skills-collection",
    "OLLAMA_HOST": "http://localhost:11434",
    "LIBRARIAN_EMBED_MODEL": "nomic-embed-text",
    "LIBRARIAN_RERANK_BIN": "/path/to/the_librarian/bin/afm-rerank"
  }
}

Read the full file on GitHub · 72 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. 11d ago First seen · 72 lines · 51 tokens per session scan A 42617311ecc6

Subscribe to this mod's changes

using-the-skill-librarian is a skill published in the GitHub repository aka-kika/the-librarian (41 stars, last pushed 1mo ago), licensed MIT. It adds 51 tokens to every session and 791 once invoked, about $0.0003 per session on Opus 5. 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-30.

Related

Other skills, from other repositories

gno

Search local documents, files, notes, and knowledge bases. Index directories, search with BM25/vector/hybrid, get AI answers with citations. Use when user wants to search files, find documents, query notes, look up information in local folders, index a directory, set up document search, build a knowledge base, needs…

gmickel/gno · 86 tokens

chromadb-manager

Query the ChromaDB Manager document base over MCP.

dem2007/ChromaDB-Manager · 15 tokens

velesdb-memory

Use durable, explainable, self-improving memory across a coding session via the velesdb-memory MCP server. Trigger whenever the velesdb-memory MCP tools (remember/recall/recallfused/relate/why/feedback/forget/rememberextracted/extractionstatus/entity/memorystatus) are available and the work would benefit from…

cyberlife-coder/VelesDB · 328 tokens

velesdb-context-optimizer

Compress an agent's working context deterministically with VelesDB's context compiler before sending it to a model — fewer tokens, same facts, every decision auditable and reversible. Use when a prompt is bloated with repeated context, long logs, or accumulated conversation turns; when token costs need to drop…

cyberlife-coder/VelesDB · 175 tokens

velesdb-learning-loop

Turn every velesdb design / implement / verify cycle into durable, connected memory so the SAME mistake is never repeated and later decisions build on what was already learned, instead of re-deriving it or silently colliding with it. Trigger BEFORE starting a design or implementation on velesdb / velesdb-core /…

cyberlife-coder/VelesDB · 275 tokens

trailmem

Use when saving or recalling persistent memory via trailmem MCP tools (trailmemstore, trailmemquery, trailmemwelcome, ...), when a trailmem tool call fails or is rejected, or when unsure how to fill its parameters (project scoping, agenttype, eventtype, dedup, linking, archiving).

amitnexTech/trailmem · 69 tokens