fetching-library-docs

1 stars 2 forks
17
B

Token-efficient library API documentation fetcher using Context7 MCP with 77% token savings.Fetches code examples, API references, and usage patterns for published libraries (React,Next.js, Prisma, etc). Use when users ask "how do I use X library", need code examples,want API syntax, or are learning a framework's official API. Triggers: "Show me React hooks","Prisma query syntax", "Next.js routing API". NOT for exploring repo internals/source code(use researching-with-deepwiki) or local files.

Also in: javascript

Third-Party Agent Skill: Review the code before installing. Agent skills execute in your AI assistant's environment and can access your files. Learn more about security

Installation for Agentic Skill

View all platforms →
skilz install mjunaidca/mjs-agent-skills/fetching-library-docs
skilz install mjunaidca/mjs-agent-skills/fetching-library-docs --agent opencode
skilz install mjunaidca/mjs-agent-skills/fetching-library-docs --agent codex
skilz install mjunaidca/mjs-agent-skills/fetching-library-docs --agent gemini

First time? Install Skilz: pip install skilz

Works with 22+ AI coding assistants

Cursor, Aider, Copilot, Windsurf, Qwen, Kimi, and more...

View All Agents
Download Agent Skill ZIP

Extract and copy to ~/.claude/skills/ then restart Claude Desktop

1. Clone the repository:
git clone https://github.com/mjunaidca/mjs-agent-skills
2. Copy the agent skill directory:
cp -r mjs-agent-skills/.claude/skills/fetching-library-docs ~/.claude/skills/

Need detailed installation help? Check our platform-specific guides:

Related Agentic Skills

Agentic Skill Details

Stars
1
Forks
2
Type
Technical
Meta-Domain
web api
Primary Domain
api
Market Score
17

Agent Skill Grade

B
Score: 85/100 Click to see breakdown

Score Breakdown

Spec Compliance
13/15
PDA Architecture
23/30
Ease of Use
21/25
Writing Style
9/10
Utility
18/20
Modifiers: +1

Areas to Improve

  • Missing TOC in long files
  • Token savings over-emphasized
  • Second-person voice in patterns

Recommendations

  • Add trigger phrases to description for discoverability
  • Add table of contents for files over 100 lines

Graded: 2026-01-24

Developer Feedback

I checked out the fetching-library-docs skill and noticed you're tackling the documentation retrieval problem with a pretty thoughtful approach to handling different library formats—curious whether you've run into cases where the extraction logic needs to adapt for libraries with non-standard doc structures, or if that's something you're planning to handle as it comes up?

Links:

The TL;DR

You're at 85/100, solid B-grade territory. This is based on Anthropic's skill grading standards. Your strongest area is Writing Style (9/10)—the technical voice is clean and consistent. Weakest area is PDA/Progressive Disclosure (23/30)—you've got good layering but both your main file and reference doc exceed 200+ lines without navigation aids, which burns tokens unnecessarily.

What's Working Well

  • Strong trigger phrases in the metadata description ('how do I use X library', 'code examples')—this will help people find it when they need it
  • Clear scope boundaries—the "NOT for" exclusion (repo internals) tells users exactly when NOT to use this, which is smart
  • Solid feedback loops—you've got verification steps, a --verbose flag for token stats, and a troubleshooting table with stop-and-report patterns baked in
  • Real token efficiency claims—77% reduction is measurable and actually useful, not marketing fluff

The Big One: Navigation in Long Files

Your SKILL.md hits 222 lines and the reference doc hits 226 lines, but neither has a Table of Contents. This is burning tokens for anyone trying to find what they need.

Fix: Add a ToC at the top of both files:

## Table of Contents
- [Quick Start](#quick-start)
- [Standard Workflow](#standard-workflow)
- [Parameters...

Report Security Issue

Found a security vulnerability in this agent skill?