What problem does it solve? Setting up third-party services like Google Sheets, Stripe, or Linear normally requires asking users for API keys and managing OAuth flows manually. This Skill discovers existing Replit integrations and wires them into a project securely, so credentials are handled through Replit's OAuth system instead of manual secrets. ## Core Features & Use Cases - Integration Discovery: Search available blueprints, connectors, and existing connections with searchIntegrations before ever asking the user for an API key. - OAuth Connection Flow: Use proposeIntegration to walk users through OAuth authorization, then addIntegration to wire the connection into the project with automatic package installation. - Ready-to-Use Code Snippets: Each added integration returns a code snippet with built-in token refresh logic that can be copied directly into the project. - Use Case: A user asks to sync app data with Google Sheets. Search for the integration, propose the Google Sheets connector for OAuth, add the resulting connection, and use the provided client snippet to read and write spreadsheet data. ## Quick Start Search Replit integrations for Stripe and connect it to my project so I can accept payments.