library-docs

Look up library documentation by finding and exploring the library's source code repository.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "library-docs" with this command: npx skills add sawyerhood/sawyer-mart/sawyerhood-sawyer-mart-library-docs

Library Docs

Look up library documentation by finding and exploring the library's source code repository.

Workflow

  1. Check for Local Availability

First, check if the library source code already exists locally:

Check common locations

ls /tmp/cc-repos/{library-name} 2>/dev/null

If the library exists locally, skip to step 3.

  1. Clone the Repository

If not available locally, find and clone the repository:

  • Search for the library's GitHub repository (most libraries are on GitHub)

  • Clone into the standard location:

mkdir -p /tmp/cc-repos git clone https://github.com/{owner}/{repo}.git /tmp/cc-repos/{repo-name}

Common repository patterns:

  • npm packages: Check package.json homepage or repository field, or search https://github.com/{package-name}

  • Python packages: Check PyPI page for "Homepage" or "Source" links

  • Go packages: The import path often is the repository URL

  • Rust crates: Check crates.io for repository link

  1. Research the Repository

Launch a Research agent (using the Task tool with subagent_type="Explore" ) to traverse the repository and answer the question.

Example prompt for the agent:

Explore the repository at /tmp/cc-repos/{repo-name} to answer: {user's question}

Focus on:

  • README and documentation files
  • Source code structure
  • API exports and public interfaces
  • Examples and tests for usage patterns
  1. Synthesize and Answer

Use the research findings to provide a clear, accurate answer to the user's question about the library.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

dev-browser

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

library-docs

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

openclaw-version-monitor

监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明

Archived SourceRecently Updated
Coding

ask-claude

Delegate a task to Claude Code CLI and immediately report the result back in chat. Supports persistent sessions with full context memory. Safe execution: no data exfiltration, no external calls, file operations confined to workspace. Use when the user asks to run Claude, delegate a coding task, continue a previous Claude session, or any task benefiting from Claude Code's tools (file editing, code analysis, bash, etc.).

Archived SourceRecently Updated