AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Using The Skill Librarian

skill-aka-kika-the-librarian-using-the-skill-librarian · by aka-kika

Use when starting any non-trivial task, when wondering "is there a skill for this", or after finishing work that used a librarian recommendation. Applies in every agent connected to the skill-librarian MCP server.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-aka-kika-the-librarian-using-the-skill-librarian

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

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

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-aka-kika-the-librarian-using-the-skill-librarian)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
8d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Using The Skill Librarian? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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

  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.

  1. Weigh each recommendation's fit, why, and why_not. Rejecting all of them is a

valid outcome.

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

  1. Follow the skill.
  2. 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"
  }
}

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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.