| name | search-for-documentation |
| description | Use when working with external libraries, APIs, GitHub Actions, or SDKs. Reminds to search for current documentation instead of relying on training data which may be outdated. |
Always Search for Current Documentation
Your training data is outdated. APIs change frequently. Libraries release new versions.
When to Search
Before using any of these, search the web for current documentation:
- Library APIs or function signatures
- Package versions and compatibility
- GitHub Actions versions
- Framework-specific patterns
- SDK methods and options
How to Search
- Check
package.json for the installed version
- Use WebSearch to find official docs for that specific version
- If training data conflicts with web docs, trust the web docs
Documentation Sources
Examples of Training Data Problems
- API parameter names changed between versions
- New required options were added
- Deprecated features still appear in training data
- Version incompatibilities cause silent failures