What problem does it solve? When writing code against external services like OpenAI, Stripe, or Anthropic, relying on memorized API knowledge leads to outdated model names, deprecated endpoints, and incorrect code patterns. This Skill fetches the current, correct API reference before you write any code. ## Core Features & Use Cases - Doc Discovery: Search available documentation by library name with chub search and pick the best-matching doc ID (e.g., openai/chat, stripe/api). - Language-Specific Fetching: Retrieve docs for Python, JavaScript, or TypeScript with chub get <id> --lang py|js|ts. - Persistent Annotations: Save gotchas, workarounds, and version quirks with chub annotate so future sessions start smarter. - Quality Feedback Loop: Rate docs up or down with labels like outdated or accurate to help authors fix incorrect content. - Use Case: Before writing code that calls the Stripe API, run chub search stripe, fetch stripe/api docs, and implement against the current reference instead of training data. ## Quick Start Ask the assistant to fetch the latest documentation for the library you want to use, for example: get the current OpenAI API docs with chub before writing the integration code.