current-docs

Look up version-accurate documentation for installed libraries locally.

Updated Jun 22, 2026
One-click install
npx skills add https://github.com/skylarsabo/code-ops --skill current-docs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: current-docs
Source: https://github.com/skylarsabo/code-ops/tree/main/plugins/code-ops-suite/skills/current-docs
Command: npx skills add https://github.com/skylarsabo/code-ops --skill current-docs

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires lib-docs, and includes scripts (resource) components.

What problem does it solve?

This Skill provides quick access to the current, version-accurate documentation for libraries or frameworks, eliminating the need to rely on external sources or outdated information.

Core Features & Use Cases

  • Local Documentation Lookup: Retrieve real-time documentation from installed libraries without external indexing.
  • Version Accuracy: Ensure that the documentation matches the version of the library in use.
  • Use Case: Before integrating a new library, use this Skill to read its documentation to understand its capabilities and usage.

Quick Start

To view the documentation for a specific library, run: node ${CLAUDE_PLUGIN_ROOT}/scripts/lib-docs.mjs <library> --root <repo>

Frequently Asked Questions about current-docs

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I look up local library documentation for a specific installed version?

To look up local library documentation, run the lib-docs.mjs script with the target library name and repository root path. This retrieves version-accurate documentation directly from your installed dependencies without relying on external sources.

Why does library documentation from external sources not match my installed version?

External documentation sources often reflect the latest release rather than your installed version. Local-first documentation lookup solves this by parsing the actual library files in your codebase, ensuring the documentation matches the exact version in use.

Do I need a specific script to parse local library documentation in my codebase?

Yes, you need the lib-docs script dependency to parse local library documentation. The current-docs Skill requires this script to extract and retrieve real-time, version-accurate documentation directly from installed libraries within your repository.

Can I read library documentation locally before integrating a new framework?

Yes, you can read library documentation locally before integration by running the lib-docs.mjs script against the library. This allows you to understand capabilities and usage of the specific version without needing external web sources or outdated information.

What are the limitations of using local-first documentation lookup for installed libraries?

Local-first documentation lookup requires local access to the library files and the lib-docs parsing script. It cannot retrieve documentation for libraries that are not installed in the current repository environment.