Integrations & APIs
Integration agent skills teach AI agents to work with specific external services and APIs: third-party platforms, webhooks, MCP servers, and data syncs. Instead of re-explaining an API every session, install the skill and the agent knows the endpoints and conventions.
-
builderio Skill Notion IntegrationHow Notion sync works. Covers connecting, linking pages, pulling from Notion, pushing to Notion, and checking sync status.
3.4k -
builderio Skill External IntegrationsHow Clips connects to Slack and Atlassian/Jira, and the provider-API boundary for credentialed integrations. Use when installing or debugging the Slack app, connecting Atlassian/Jira, or adding raw provider API access to a Clips integration.
3.4k -
builderio Skill Ingestion And ConnectorsCreate, sync, and diagnose Brain sources across all providers (manual, generic, clips, slack, granola, github) — health states, sync scheduling, and credential resolution. Use when adding a source, running or debugging a sync, or the user asks why a source is stale, erroring, or not importing.
3.4k -
maxrave-dev Skill Custom Shuffle OrderReplacing a media engine's default shuffle order so that tracks added mid-playback land contiguously after the current one instead of being scattered through the rest of the queue. Use when "play next" or an appended continuation page ends up in random positions while shuffle is on, or when writing any custom shuffle order and needing the insert/remove/clone contract to stay consistent.
-
maxrave-dev Skill Clean Arch Kmp ReadinessLay out a Kotlin Multiplatform app in layers that actually hold — a domain module carrying interfaces and models, repository implementations kept internal to the data module, and one module per external integration so a breaking service cannot spread — plus how to verify each boundary with a grep instead of trusting the diagram. Use when starting a multiplatform app, when splitting a monolithic module, or when platform types have started appearing in shared feature code.
-
maxrave-dev Skill Glance Layout VocabularyThe composable widget toolkit is not Compose with a different import — it has no aspect ratio, its weight is always 1 so an even split is the entire vocabulary, its corner radius only applies from API 31, and a widget always fills the launcher's cell so the spare height must be spent deliberately. Covers the weighted-spacer trick that keeps square tiles square, and where a fill modifier swallows a whole band. Android only. Use when a square tile renders as a rectangle, when a widget shows a block of dead colour below its content, or when corners are round on one device and square on another.
-
maxrave-dev Skill Repository Flow ConventionsOne table of method shapes for a repository sitting over a local database plus a remote API — local reads as a cold flow moved onto the IO dispatcher, remote reads as a flow of a success/error envelope, writes as withContext. Use when adding methods to a repository, when reviewing one whose shapes have drifted apart, or when a screen sits on its loading state forever with nothing in the log.
-
maxrave-dev Skill Retry Needs Backoff And CapGive every reconnect loop exponential backoff, a ceiling, a class of failures it refuses to retry, and a lifecycle gate — then give the feature a health signal, because one that fails silently stays broken for months. Use when a background connection drains the battery, when a bad credential produces an endless reconnect, or when an integration quietly stopped working.
-
maxrave-dev Skill Force Dark Immersive SubtreeKeep one part of a Compose app rendered dark — screens drawn over dark artwork — while the rest of the app follows the user's light theme, by providing a whole dark colour scheme plus your own token locals to that subtree; includes why a text-colour flag alone is not enough, and the verified fact that bottom sheets and dialogs inherit these locals across the window boundary while a freshly rooted composition does not. Use when icons or buttons on an image-backed screen turn grey and unreadable in light theme, when a sheet opened from such a screen comes out the wrong colour, or when a forced-dark screen still asks the system whether it is night.
-
maxrave-dev Skill Ktor Kmp Client ArchitectureA multiplatform HTTP stack where one expect/actual hands back the engine and each integration builds its own client from it — an instrumented client for API calls next to a deliberately bare one for bulk downloads, content negotiation registered per format, and a settings change that rebuilds the client rather than mutating it. Use when standing up networking in a Kotlin Multiplatform module, when a proxy setting appears to be ignored by some requests but not others, or when downloading a large file crawls and floods the log.
-
maxrave-dev Skill Bundled Native Soname ConflictA native library you bundle with a desktop app drags its own copy of a general-purpose base library along, that copy claims the shared-object name for the whole process the moment your native loads, and an unrelated platform API then fails with a missing-symbol message naming a third library. Use when a feature that opens links or system dialogs works on your machine but silently does nothing on users' machines, when a platform API reports itself unsupported at runtime, when deciding what a native bundle may contain, or when a merged fix for exactly this bug does not seem to have changed anything for users.
-
team-telnyx Skill Telnyx Fax CurlSend and receive faxes programmatically. Manage fax applications and media. This skill provides REST API (curl) examples.
-
team-telnyx Skill Telnyx Fax JavaSend and receive faxes programmatically. Manage fax applications and media. This skill provides Java SDK examples.
-
team-telnyx Skill Telnyx Fax RubySend and receive faxes programmatically. Manage fax applications and media. This skill provides Ruby SDK examples.
-
team-telnyx Skill Telnyx Iot CurlManage IoT SIM cards, eSIMs, data plans, and wireless connectivity. Use when building IoT/M2M solutions. This skill provides REST API (curl) examples.
-
team-telnyx Skill Telnyx Iot JavaManage IoT SIM cards, eSIMs, data plans, and wireless connectivity. Use when building IoT/M2M solutions. This skill provides Java SDK examples.
-
team-telnyx Skill Telnyx Iot RubyManage IoT SIM cards, eSIMs, data plans, and wireless connectivity. Use when building IoT/M2M solutions. This skill provides Ruby SDK examples.
-
team-telnyx Skill Telnyx OAUTH GoImplement OAuth 2.0 authentication flows for Telnyx API access. This skill provides Go SDK examples.
-
team-telnyx Skill Telnyx Sip CurlConfigure SIP trunking connections and outbound voice profiles. Use when connecting PBX systems or managing SIP infrastructure. This skill provides REST API (curl) examples.
-
team-telnyx Skill Telnyx Sip JavaConfigure SIP trunking connections and outbound voice profiles. Use when connecting PBX systems or managing SIP infrastructure. This skill provides Java SDK examples.
-
team-telnyx Skill Telnyx Sip RubyConfigure SIP trunking connections and outbound voice profiles. Use when connecting PBX systems or managing SIP infrastructure. This skill provides Ruby SDK examples.
-
team-telnyx Skill Telnyx Texml GoBuild voice applications using TeXML markup language (TwiML-compatible). Manage applications, calls, conferences, recordings, queues, and streams. This skill provides Go SDK examples.
-
team-telnyx Skill Telnyx Video GoCreate and manage video rooms for real-time video communication and conferencing. This skill provides Go SDK examples.
-
team-telnyx Bundle Telnyx Voice GoProgrammatic call control: make/receive calls, transfer, bridge, gather DTMF, stream audio. Real-time call events via webhooks.
-
team-telnyx Skill Telnyx Verify GoLook up phone number information (carrier, type, caller name) and verify users via SMS/voice OTP. Use for phone verification and data enrichment. This skill provides Go SDK examples.
-
team-telnyx Skill Telnyx Webrtc GoManage WebRTC credentials and mobile push notification settings. Use when building browser-based or mobile softphone applications. This skill provides Go SDK examples.
-
team-telnyx Skill Telnyx Fax PythonSend and receive faxes programmatically. Manage fax applications and media. This skill provides Python SDK examples.
-
team-telnyx Skill Telnyx Iot PythonManage IoT SIM cards, eSIMs, data plans, and wireless connectivity. Use when building IoT/M2M solutions. This skill provides Python SDK examples.
-
team-telnyx Bundle Telnyx Numbers GoSearch, order, and manage phone numbers by location, features, and coverage.
-
team-telnyx Skill Telnyx OAUTH CurlImplement OAuth 2.0 authentication flows for Telnyx API access. This skill provides REST API (curl) examples.
-
team-telnyx Skill Telnyx OAUTH JavaImplement OAuth 2.0 authentication flows for Telnyx API access. This skill provides Java SDK examples.
Audited -
team-telnyx Skill Telnyx OAUTH RubyImplement OAuth 2.0 authentication flows for Telnyx API access. This skill provides Ruby SDK examples.
-
team-telnyx Skill Telnyx Sip PythonConfigure SIP trunking connections and outbound voice profiles. Use when connecting PBX systems or managing SIP infrastructure. This skill provides Python SDK examples.
-
team-telnyx Skill Telnyx Texml CurlBuild voice applications using TeXML markup language (TwiML-compatible). Manage applications, calls, conferences, recordings, queues, and streams. This skill provides REST API (curl) examples.
-
team-telnyx Skill Telnyx Texml JavaBuild voice applications using TeXML markup language (TwiML-compatible). Manage applications, calls, conferences, recordings, queues, and streams. This skill provides Java SDK examples.
-
team-telnyx Skill Telnyx Texml RubyBuild voice applications using TeXML markup language (TwiML-compatible). Manage applications, calls, conferences, recordings, queues, and streams. This skill provides Ruby SDK examples.
Frequently asked questions
What are Integrations & APIs agent skills?
Integration agent skills teach AI agents to work with specific external services and APIs: third-party platforms, webhooks, MCP servers, and data syncs. Instead of re-explaining an API every session, install the skill and the agent knows the endpoints and conventions.
Which Integrations & APIs skills are most installed?
Popular Integrations & APIs skills on SkillMD right now include bundled-native-soname-conflict, telnyx-sip-java, telnyx-voice-go. Rankings shift as installs change; sort this page by "Most installs" for the live list.
Do Integrations & APIs skills work with Claude Code and Cursor?
Yes. Every skill here ships as a SKILL.md file, an open format that works in Claude Code, Claude.ai, Cursor, Codex, Windsurf, and 60+ other agents. Install one with npx skillmds@latest add <owner>/<name>, or copy the file into your agent's skills directory.