Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计提醒

integrationsintegrations 搜索

Agent Skill

integrations 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

267

周安装

11

GitHub Stars

167

下载量

87
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:integrations(integrations 搜索)
来源仓库:https://github.com/whawkinsiv/claude-code-skills
仓库路径:skills/integrations
安装命令:
npx skills add https://github.com/whawkinsiv/claude-code-skills --skill integrations
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/whawkinsiv/claude-code-skills --skill integrations

简介

integrations 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态或协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前需确认权限范围、维护状态,避免触发联网或文件读写。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Third-Party Integrations

The simplest integration that works is the best integration. If Zapier can do it, don't build a custom one. This skill helps you decide which integrations to build, how to build them simply, and how to handle the inevitable breakage.

Core Principles

  • Build integrations your customers ask for, not ones you think are cool.
  • The simplest integration that works is the best integration. Zapier before custom code.
  • Every integration is a maintenance burden. Each one can break when the third party changes their API.
  • Authentication is the hardest part. Get OAuth right or use pre-built libraries.
  • Always handle the failure case. APIs go down. Webhooks get lost. Plan for it.

Integration Decision Framework

Build vs. Buy vs. Skip

Should I build this integration?

1. Are 3+ customers asking for it?
   No → Skip it. Revisit when demand exists.
   Yes ↓

2. Can Zapier/Make/n8n handle it?
   Yes → Tell users to use Zapier. Don't build it yourself.
   No ↓

3. Is there a well-documented API with a good SDK?
   Yes → Build it (or have AI build it).
   No → Evaluate if the effort is worth the churn it prevents.

Integration Priority for SaaS

Build these first (most SaaS apps need them):

IntegrationWhyDifficulty
StripePayments are core to your businessMedium (good docs, SDKs)
Email provider (Resend, SendGrid)Transactional emails are requiredEasy
Auth provider (Supabase Auth, Clerk)Login is requiredEasy (use their SDK)
Analytics (PostHog, Mixpanel)You need to track usageEasy (drop-in script)

Build these when customers ask:

IntegrationWhyDifficulty
SlackNotifications where teams already workEasy
ZapierLets users build their own integrationsMedium
Google/Microsoft OAuth"Sign in with Google" is expectedMedium
Webhooks (outgoing)Let customers receive events in their systemsMedium

Skip these until $10k+ MRR:

IntegrationWhy to Wait
SalesforceComplex API, long sales cycles to close deals that need it
Custom enterprise SSO (SAML)Only needed for enterprise deals
Data warehouse exportsBuild when you have data-heavy customers

Common Integration Patterns

Pattern 1: OAuth Sign-In (Google, GitHub, etc.)

What it does: Let users log in with existing accounts.

Tell AI:

Add Google OAuth sign-in to my app.
I'm using [Supabase Auth / Clerk / NextAuth].
Requirements:
- "Sign in with Google" button on login page
- Create user record on first sign-in
- Link to existing account if email matches
- Handle the error case gracefully

Setup checklist:

- [ ] Create OAuth app in provider's developer console
- [ ] Set redirect URI to your production AND localhost URLs
- [ ] Store client ID and secret in environment variables (never in code)
- [ ] Test the full flow: sign in → callback → user created
- [ ] Test edge case: user signs up with email, then tries Google with same email

Pattern 2: Sending Emails (Transactional)

What it does: Welcome emails, password resets, notifications.

Recommended providers:

  • Resend — Simple API, good free tier, built for developers
  • SendGrid — Established, more features, higher free tier
  • Postmark — Best deliverability, focused on transactional email

Tell AI:

Set up transactional email with [Resend/SendGrid] for my [framework] app.
I need to send:
- Welcome email on signup
- Password reset email
- [Other emails you need]
Use environment variables for API keys.
Include error handling if the email fails to send.

Pattern 3: Webhooks (Receiving)

What it does: Third-party services notify your app when something happens (e.g., Stripe payment succeeded).

Tell AI:

Create a webhook endpoint for [Stripe/service] in my [framework] app.
Requirements:
- Verify the webhook signature (critical for security)
- Handle these events: [list events, e.g., checkout.session.completed]
- Respond with 200 quickly, process async if needed
- Log the raw payload for debugging
- Handle duplicate events (idempotency)

Webhook checklist:

- [ ] Endpoint URL is configured in the third party's dashboard
- [ ] Webhook signature is verified on every request
- [ ] Endpoint responds with 200 within 5 seconds
- [ ] Failed processing retries gracefully
- [ ] Events are idempotent (processing the same event twice is safe)
- [ ] Raw payloads are logged for debugging

Pattern 4: Webhooks (Sending)

What it does: Your app notifies customer systems when something happens.

Tell AI:

Add outgoing webhooks to my app so customers can receive events.
Requirements:
- Customers can register a webhook URL in settings
- Send POST requests with JSON payload when [events] occur
- Include a signature header for verification
- Retry failed deliveries 3 times with exponential backoff
- Show delivery status in the customer's dashboard

Pattern 5: Zapier Integration

What it does: Lets your customers connect your app to 5,000+ other apps without you building each integration.

When to build: When multiple customers ask for integrations you don't want to build individually.

Tell AI:

Help me plan a Zapier integration for [product].
My app can:
- Triggers (things that happen): [e.g., new project created, task completed]
- Actions (things Zapier can do in my app): [e.g., create a task, update a record]
What API endpoints do I need to expose for Zapier?

API Key Management

For Your API Keys (Connecting to Services)

Rules:
- [ ] NEVER put API keys in code. Use environment variables.
- [ ] Different keys for development and production.
- [ ] Rotate keys if you accidentally commit one (immediately).
- [ ] Document which keys are needed in a .env.example file.
- [ ] Use the narrowest permissions possible for each key.

For Your Customers' API Keys (If You Offer an API)

- [ ] Generate unique keys per customer
- [ ] Allow customers to revoke and regenerate keys
- [ ] Rate limit by API key
- [ ] Log usage by API key
- [ ] Hash stored keys (don't store in plain text)

Error Handling for Integrations

Every integration will fail at some point. Plan for it:

Integration Error Handling Checklist:
- [ ] What happens if the API is down? (Queue and retry? Show error to user?)
- [ ] What happens if auth credentials expire? (Re-auth flow? Alert the user?)
- [ ] What happens if the API returns unexpected data? (Log and fail gracefully?)
- [ ] What happens if rate limits are hit? (Backoff and retry? Queue?)
- [ ] Is there a timeout? (Don't wait forever for a response)
- [ ] Are errors logged with enough context to debug?

Common Mistakes

MistakeFix
Building custom integrations nobody asked forWait for 3+ customer requests before building
API keys in source codeEnvironment variables, always
No webhook signature verificationVerify every incoming webhook. Unverified = security hole
No error handling on API callsEvery external call needs try/catch and a fallback
Building what Zapier can handleRecommend Zapier to customers. Build only what Zapier can't
No retry logic for failed webhooksRetry 3x with exponential backoff
Testing only the happy pathTest: API down, bad credentials, rate limited, timeout

Success Looks Like

  • Core integrations (payments, email, auth) working reliably in production
  • Third-party API keys stored securely in environment variables
  • Webhook endpoints verified, idempotent, and logged
  • Customers can connect the tools they need (directly or via Zapier)
  • You can debug integration failures quickly with proper logging

Related Skills

  • build — Hand integration specs to AI tools for implementation
  • database — Schema design for storing integration data
  • secure — Secure API key storage and OAuth implementation
  • debug — Diagnose integration failures

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.13%
按下载量换算33

Claude

29.49%
按下载量换算26

Cursor

20.11%
按下载量换算17

Gemini CLI

8.9%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills