Install
$ agentstack add skill-aka-kika-the-librarian-using-the-skill-librarian ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
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
librarian_findwith 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.
- Weigh each recommendation's
fit,why, andwhy_not. Rejecting all of them is a
valid outcome.
- Load the chosen skill from the collection — recommendations return names, not
paths, and skills may be nested inside bundles: find -maxdepth 4 -type d -name "" → read its SKILL.md.
- Follow the skill.
librarian_reportwith 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"
}
}
LIBRARIAN_RERANK_BIN is optional (macOS + Apple Intelligence only); omit it to use pure embedding order. See the repo README for full setup.
Common Mistakes
- Skipping find because an installed skill looks close enough — the collection
version may be better; check first.
- Keyword-style intents ("mcp python") — write what you're trying to accomplish;
the embedding search works on intent.
- Forgetting
librarian_report— unreported uses starve the curation loop. - Copying a recommended skill into an agent's skills dir — read it in place; if it
earns permanent installation, the human decides.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: aka-kika
- Source: aka-kika/the-librarian
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.