Find Documentation
Locate official documentation for: $ARGUMENTS
Search Strategy
Step 1: Find Official Sources
Use google_search with targeted queries:
code
"[subject] documentation" "[subject] docs" "[subject] API reference" "[subject] official guide" site:github.com "[subject]" README
Prioritize results from:
- •Official project domains
- •github.com (official repos)
- •readthedocs.io
- •docs.* subdomains
Step 2: Identify Documentation Types
Look for:
- •Getting Started / Quickstart - Initial setup and basic usage
- •API Reference - Complete API documentation
- •Guides / Tutorials - Step-by-step instructions
- •Examples - Code samples and use cases
- •Changelog - Version history and breaking changes
- •Migration Guides - Upgrading between versions
Step 3: Extract Key Information
Use extract_webpage_content on official docs to get:
- •Installation instructions
- •Basic usage examples
- •Configuration options
- •Common patterns
Step 4: Find Community Resources
Secondary search for:
code
"[subject] tutorial" "[subject] example" "[subject] best practices" "[subject] cheatsheet"
Output Format
markdown
# Documentation: [Subject] ## Official Resources | Resource | URL | Type | Notes | |----------|-----|------|-------| | Official Docs | [url] | Reference | Main documentation | | GitHub Repo | [url] | Source | README, examples | | API Reference | [url] | Reference | Detailed API docs | ## Quick Start ### Installation [Official installation command/steps] ### Basic Usage [Minimal example from official docs] ## Key Documentation Sections ### [Section 1: e.g., Configuration] - URL: [link] - Summary: [what it covers] ### [Section 2: e.g., API] - URL: [link] - Summary: [what it covers] ## Version Information - Current stable: [version] - Documentation version: [version if different] - Last updated: [date if known] ## Community Resources - [Tutorial/Guide title](url) - [brief description] - [Cheatsheet](url) - [brief description] ## Related Documentation - [Related tool/library](docs url)
Search Tips
- •Add version number if looking for specific version docs
- •Use
site:operator for official domains - •Check GitHub repo's
/docsfolder or wiki - •Look for "awesome-[subject]" lists for curated resources
- •Recent blog posts often have updated examples