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.
-
diegosouzapw Bundle Github 4GitHub Skill workflow skill. Use this skill when the user needs Use the gh CLI for issues, pull requests, Actions runs, and GitHub API queries and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
54 -
diegosouzapw Bundle Nodejs Backend Patterns 7Node.js Backend Patterns workflow skill. Use this skill when the user needs Comprehensive guidance for building scalable, maintainable, and production-ready Node.js backend applications with modern frameworks, architectural patterns, and best practices and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
54 -
diegosouzapw Bundle Hubspot Integration 3HubSpot Integration workflow skill. Use this skill when the user needs Expert patterns for HubSpot CRM integration including OAuth and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
54 -
skillmedev Skill Fun Content ApisUse when a task needs light entertainment content from a live API - "build a quiz/trivia game", "random dog picture", "cat fact", "advice of the day", "random fun fact" - for a demo, bot, party feature, or filler content slot. Open Trivia DB is the quiz default (its session-token mechanics are documented here); catfact.ninja, random.dog, Advice Slip, and Useless Facts cover the rest, all keyless. Do NOT use for placeholder users/products/images in a prototype - use test-placeholder-data instead; do NOT use for dictionary or encyclopedia lookups - use language-reference instead; if the request is a vague "I need live data", route through public-data-api-picker.
-
skillmedev Skill Microservices DesignDesigns microservice architectures - service boundaries from business capabilities and team ownership, sync vs async communication choices, saga and outbox patterns for consistency, and resilience defaults - producing a boundary map with an extraction verdict per candidate service. Use when someone asks "should this be its own service", "how do I split my monolith's domains", "sync or event-driven between these services", "how do I handle transactions across services", or is reviewing a distributed architecture. Do NOT use for planning the step-by-step migration off an existing monolith - use monolith-decomposer or strangler-fig-planner for the migration process; this skill owns the target architecture. Do NOT use for designing an individual REST contract - use api-design instead.
-
skillmedev Skill Rust PatternsWrites and reviews idiomatic Rust - ownership and borrowing decision rules for API signatures, lifetime avoidance strategies, thiserror vs anyhow error design, iterator-first style, and when Rc/RefCell/Arc/Mutex are actually justified - with good/bad code pairs. Use when someone asks "why won't this borrow check", "should this take &str or String", "thiserror or anyhow", "how do I share state between threads in Rust", or their code is a wall of clone() calls. Do NOT use for cross-language migration planning - use language-version-migrator instead - and do NOT use for generic API endpoint design - use api-design instead.
-
skillmedev Skill Conditioning Hiit ProgramUse when someone asks to build a HIIT plan, interval-training block, metabolic conditioning or metcon, circuit training, work-capacity training, conditioning for fat loss, or high-intensity "get in shape" cardio (not easy steady-state). Builds a metabolic-conditioning block - interval and circuit work using EMOM, AMRAP, Tabata, and intervals - with format selection, work-to-rest ratios, weekly structure, and progression. General fitness guidance, not medical advice. This skill owns high-intensity interval conditioning only. Do NOT use to design a resistance/strength program for getting stronger or bigger (use Strength Training Plan), a steady-state aerobic-base or Zone 2 block (use Zone 2 Cardio Plan), or a mobility/flexibility routine (use Mobility Routine).
-
shanghua1 Bundle Curios ForgeExplain, implement, and debug Curios API integrations in Minecraft Forge mods, especially slots, entity slot assignment, item slot tags, ICurioItem behavior, curio capabilities, attribute modifiers such as attack damage or max health bonuses, renderer setup, inventory access, dependencies, data generation, and common missing-slot issues. Use when Codex is working on a Forge mod that depends on Curios or when the user asks how to add wearable items, rings, amulets, charms, custom curios slots, Curios-compatible equipment, or stat bonuses while equipped.
-
skillmedev Skill Weather Climate DataUse when a task needs real weather data pulled live - "what's the forecast for X", "current temperature/wind here", "historical weather for this date range", "air quality / AQI right now", or "active US weather alerts" - and you should call a free keyless API instead of deliberating. Open-Meteo is the default (global forecast, history, air quality, no key); api.weather.gov covers official US alerts. Do NOT use for turning place names into coordinates, country facts, or postal codes - use geo-places instead; do NOT use for FX or crypto prices - use finance-fx instead; if the request is a vague "I need live data", route through public-data-api-picker.
-
skillmedev Skill Websocket ExpertBuilds resilient WebSocket systems - heartbeat and dead-connection detection, reconnect with exponential backoff and jitter, message queuing with sequence numbers and backpressure limits, auth on connect, and pub/sub backplanes for horizontal scale. Use when someone asks "my WebSocket connections keep dropping", "how do I handle reconnects", "how do I scale WebSockets across servers", "clients miss messages after reconnecting", or is building chat, live dashboards, or collaborative editing. Do NOT use for one-way server push where SSE would do, for webhook ingestion - use webhook-receiver-hardener instead - or for REST/HTTP API shape - use api-design instead.
-
skillmedev Skill Space Earth Science DataUse when a task needs live space or geophysical data - "recent earthquakes near X / above magnitude Y", "NASA picture of the day", "near-Earth asteroids this week", or "latest full-disk Earth image". USGS FDSN is the default for quakes (no key, GeoJSON); NASA's APIs cover astronomy (DEMO_KEY works, free key is instant). Do NOT use for weather, storms, or air quality - use weather-climate instead; do NOT use for maps/geocoding - use geo-places instead; if the request is a vague "I need live data", route through public-data-api-picker.
-
skillmedev Skill Government Open DataUse when a task needs official country-level statistics - "GDP / population / life expectancy / inflation / unemployment for country X over time", "compare indicator Y across countries", or EU-official figures ("Eurostat says…"). World Bank Indicators is the default (no key, every country, 1,400+ series back decades); Eurostat covers EU-official statistics. Do NOT use for a country's static facts like capital or currency - use geo-places instead; do NOT use for live FX rates or crypto - use finance-fx instead; if the request is a vague "I need live data", route through public-data-api-picker.
-
skillmedev Skill Finance Fx DataUse when a task needs live or historical money data - "convert USD to EUR", "current/past exchange rate", "FX rate on this date / over this range", or "current price of Bitcoin/Ethereum, market cap, 24h change". Frankfurter (ECB reference rates, no key) is the FX default; CoinGecko's free keyless tier covers crypto. Do NOT use for stock quotes or equities - no keyless stock API survives verification, say so instead of guessing; do NOT use for country economic indicators like GDP or inflation series - use government-open-data instead; if the request is a vague "I need live data", route through public-data-api-picker.
-
skillmedev Skill Test Placeholder Data ApisUse when building a demo, prototype, or tutorial that needs realistic remote data - "fake products/users/todos for this app", "an API I can hit while wiring up fetch", "placeholder images", "seed this UI with something that looks real", or teaching HTTP/CRUD against a live endpoint. DummyJSON is the default (rich e-commerce-shaped data, full fake CRUD, no key); JSONPlaceholder, RandomUser, and Lorem Picsum cover the rest. Do NOT use for generating local test fixtures or factories inside a test suite - use test-data-builder instead; do NOT use when the task needs real-world data (weather, prices, countries) - route through public-data-api-picker.
-
skillmedev Skill Public Data API PickerUse when a task needs real, live data but the domain is vague or unstated - "I need real data for X", "is there a free API for this?", "pull actual data into this demo", "no mock data, use a real source", or picking a data source before building. Routes to the right Live Data skill (weather-climate, geo-places, finance-fx, space-earth-science, government-open-data, test-placeholder-data, language-reference, fun-content), every one backed by keyless liveness-verified APIs. Do NOT use when the domain is already explicit - a request naming weather, FX, earthquakes, or fake users goes straight to that skill; do NOT use for designing your own API - use api-design instead.
-
itamarb2010-jpg Skill Setup PlatformConfigure (or reconfigure) the target Minecraft server stack AND the project identity for this plugin — platform (Paper/Spigot/Folia/Velocity/…), Minecraft version, Java version, build tool, API coordinates, plus plugin.yml metadata (name, package/group id, version, description, authors, contributors, website, prefix) — and record it all to .mcplugin/config.yml. Use this whenever the user wants to pick or change their platform / Minecraft version / build tool / plugin name / package / authors, before scaffolding, or when a build fails from a version/Java/coordinate mismatch. Run before /scaffold.
-
cgray-redhat Bundle Daily PrepSends a "Daily Prep for Today" email to yourself summarizing today's multi-attendee meetings (with discussion points from invites, email, and Slack) and listing upcoming VP+ meetings for the next week grouped by date. Omits personal meetings with Lauren Gray only. Use when the user asks for daily prep, today prep, or meeting prep for the current day.
-
jeromeetienne Skill Okforge MaintainMaintain the Open Knowledge Format (OKF) knowledge bundle under .okf/. Use whenever the user wants to update, refresh, or regenerate OKF docs, set up an OKF bundle, check OKF conformance, or when source code that the bundle documents (config schemas, web API routes, CLI commands, runtime subsystems, example crews, ADRs) has changed and the docs need to catch up. Three modes: scaffold (create the bundle), refresh (regenerate a folder's docs from current source), and check (conformance and dead-link lint). Prefer this skill over hand-editing .okf/ so the format, the folder<->source mapping, and link integrity stay consistent.
-
buzzmatic Bundle Kie AIUnified API integration for kie.ai media generation services. Use when generating video (Veo3.1, Runway), audio/music (Suno), or images (GPT-4o, Flux Kontext). Applies for text-to-video, text-to-image, music generation, video modification, vocal removal, lyric generation, or any AI media creation task. Supports async task polling, automatic media download, bulk operations, and file uploads.
-
buzzmatic Bundle PhantombusterPhantomBuster API integration for LinkedIn automation via phantom agents. Manage phantoms (list, launch, stop, get output), organization resources, and lead storage. Use when needing to (1) launch LinkedIn automation phantoms (messaging, connection requests, profile visits), (2) manage phantom agents and their configurations, (3) store and manage leads for automation, (4) check execution status and results, or (5) monitor org resource usage.
-
buzzmatic Bundle Dfs Google Serp Advanced LiveFetch Google SERP data using DataForSEO Live Advanced API. Use when needing real-time Google organic search results with detailed SERP features (featured snippets, people also ask, knowledge panels, etc.). Supports desktop/mobile, multiple locations and languages, and configurable result depth up to 200.
-
buzzmatic Bundle Dfs TechnologiesDataForSEO Technologies API
-
buzzmatic Bundle Brightdata YoutubeScrape YouTube via BrightData Datasets API. Collect videos by URL, channel info, comments, search results, Shorts, and transcripts/subtitles. Returns video metadata, engagement metrics, channel data, threaded comments, and timestamped transcripts. Use to monitor channels, analyze comments, search YouTube, or extract transcripts. Single and bulk with auto-batching.
-
buzzmatic Bundle Brightdata LinkedinScrape LinkedIn data using BrightData Datasets API. Supports profiles, companies, jobs, posts, and people search. Offers both synchronous (real-time) and asynchronous (batch) modes. Use when needing to collect LinkedIn profile data, company information, job listings, posts from profiles/companies, or search for people. Handles single and bulk operations with automatic batching.
-
bestagentkits Bundle Gis Bim SpecialistUse when Codex should act as the BIM/GIS Specialist specialist from Agency Agents. Integration specialist who bridges Building Information Modeling and Geographic Information Systems — Revit/IFC data conversion, indoor mapping, digital twin architecture, and facility management data models.
-
bestagentkits Bundle Testing API TesterUse when Codex should act as the API Tester specialist from Agency Agents. Expert API testing specialist focused on comprehensive API validation, performance testing, and quality assurance across all systems and third-party integrations
-
bestagentkits Bundle Context EngineLoads and manages company context for all C-suite advisor skills. Reads ~/.claude/company-context.md, detects stale context (>90 days), enriches context during conversations, and enforces privacy/anonymization rules before external API calls. Use when starting any C-suite advisor session, when context looks stale or missing, or before sending company data to an external service.
-
bestagentkits Bundle Ma PlaybookM&A strategy for acquiring companies or being acquired. Due diligence, valuation, integration, and deal structure. Use when evaluating acquisitions, preparing for acquisition, M&A due diligence, integration planning, or deal negotiation.
-
bestagentkits Bundle Gis Web Gis DeveloperUse when Codex should act as the Web GIS Developer specialist from Agency Agents. Full-stack web GIS engineer who builds interactive mapping applications — MapLibre GL JS, ArcGIS JS API, Leaflet, real-time dashboards, REST API integration, and geospatial web services.
-
bestagentkits Bundle API Design ReviewerComprehensive REST API design review with automated linting, breaking-change detection, and design scorecards. Catches inconsistent conventions, missing versioning, and design smells before APIs ship. Use when reviewing a PR that adds or changes API endpoints, auditing an existing API for v2 migration, or establishing API standards for a team.
-
bestagentkits Bundle API Test Suite BuilderUse when the user asks to generate API tests, create integration test suites, test REST endpoints, or build contract tests.
-
bestagentkits Bundle Game Audio EngineerUse when Codex should act as the Game Audio Engineer specialist from Agency Agents. Interactive audio specialist - Masters FMOD/Wwise integration, adaptive music systems, spatial audio, and audio performance budgeting across all game engines
-
bestagentkits Bundle Ma Integration ManagerUse when Codex should act as the M&A Integration Manager specialist from Agency Agents. Mergers and acquisitions integration specialist who designs and executes post-merger integration programs — covering Day 1 readiness, 100-day planning, synergy tracking, cultural integration, functional workstream coordination, and transition service agreement management.
-
bestagentkits Bundle Godot Gameplay ScripterUse when Codex should act as the Godot Gameplay Scripter specialist from Agency Agents. Composition and signal integrity specialist - Masters GDScript 2.0, C# integration, node-based architecture, and type-safe signal design for Godot 4 projects
-
bestagentkits Bundle Change Management ConsultantUse when Codex should act as the Change Management Consultant specialist from Agency Agents. Expert change management specialist using ADKAR, Kotter, and Prosci frameworks to guide organizations through technology implementations, restructuring, culture transformation, and M&A integration — managing resistance, building adoption, and ensuring changes stick long after go-live
-
bestagentkits Bundle Engineering Feishu Integration DeveloperUse when Codex should act as the Feishu Integration Developer specialist from Agency Agents. Full-stack integration expert specializing in the Feishu (Lark) Open Platform — proficient in Feishu bots, mini programs, approval workflows, Bitable (multidimensional spreadsheets), interactive message cards, Webhooks, SSO authentication, and workflow automation, building enterprise-grade collaboration and automation solutions within the Feishu ecosystem.
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 github, nodejs-backend-patterns, hubspot-integration. 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.