What problem does it solve? Coding agents often hallucinate API usage from outdated training data when asked to integrate third-party APIs. This Skill routes every integration through the context-matic MCP server so the agent works from authoritative, version-aware SDK documentation instead of guessing. ## Core Features & Use Cases - API Discovery: Uses fetch_api to find available API SDKs by language and key, and stops gracefully when an API is not available in the plugin. - Integration Guidance: Uses ask for focused queries (authentication, payments, rate limits) plus model_search and endpoint_search for exact SDK model and endpoint definitions. - Milestone Tracking: Calls update_activity at concrete integration milestones such as sdk_setup, auth_configured, first_call_made, error_encountered, and error_resolved. - Use Case: A developer asks to add PayPal payments to a TypeScript project. The Skill detects the language, ensures guidelines exist, discovers the PayPal SDK key via fetch_api, retrieves integration guidance via ask, and records milestones as the SDK is installed and the first call succeeds. ## Quick Start Ask your agent to integrate a third-party API such as PayPal into your project and it will use the context-matic MCP tools to discover the SDK and guide the implementation.