integrations

Discover and wire Replit integrations via OAuth and blueprint scaffolding.

2|Updated Apr 11, 2026
One-click install
npx skills add https://github.com/kvm9-dev/susanoo --skill integrations-kvm9-dev
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: integrations
Source: https://github.com/kvm9-dev/susanoo/tree/main/.local/skills/integrations
Command: npx skills add https://github.com/kvm9-dev/susanoo --skill integrations-kvm9-dev

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps you find and wire the right Replit integration so a user can authenticate and safely access third-party services without you asking for raw API keys or secrets.

Core Features & Use Cases

  • Integration discovery before credentials: searches for Replit-supported connectors, connections, and blueprints before requesting any secrets.
  • OAuth and token-safe onboarding: uses proposeIntegration to run the OAuth flow for connectors and then addIntegration to wire the approved connection to the project.
  • Blueprint installation and confirmation handling: adds reusable templates that scaffold required packages and integration boilerplate.
  • Use Case: a user wants to connect their Google Sheets and then read spreadsheets from their Repl, with the Skill handling discovery, OAuth, and project wiring in the correct order.

Quick Start

Use the integrations skill to connect the user's Google Sheets account to this Repl and prepare the project for authenticated spreadsheet access.

Frequently Asked Questions about integrations

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I connect third-party services to my Replit app without handling raw API keys?

Use Replit integrations to discover supported connectors and run OAuth authorization flows, wiring authenticated third-party service access into your project without requesting raw API keys or secrets from users.

What's the correct order for discovering and installing Replit connectors?

You must search integrations first to find supported connectors, then route connector onboarding to proposeIntegration for OAuth authorization, and finally use addIntegration to complete the connection installation with proper logging.

Does Replit support authenticated access to databases and payment services through integrations?

Yes, Replit integrations enable authenticated access to third-party capabilities including databases, payments, and APIs by searching available connectors and establishing connection tokens through OAuth authorization workflows.

Why does my Replit integration require confirmation before connecting?

The addIntegration step returns requiresConfirmation responses that must be handled properly during connection installation, ensuring the OAuth authorization and token establishment flow completes securely before wiring the service.