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

airbyte-agent-connectorsAirbyte Agent 连接器

Agent Skill

airbyte-agent-connectors 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

367

周安装

15

GitHub Stars

115

下载量

118
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/airbytehq/airbyte-agent-connectors --skill airbyte-agent-connectors

简介

用于查找、检索和筛选相关信息,支持第三方 API 调用。

  • 适合根据关键词或场景快速定位候选结果。airbyte-agent-connectors 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装方式:通过 npx 从 GitHub 仓库添加。
  • 建议确认权限范围和是否会触发联网操作。

SKILL.md

Airbyte Agent Connectors

Airbyte Agent Connectors let AI agents call third-party APIs through strongly typed, well-documented tools. Each connector is a standalone Python package.

Terminology: Platform Mode = Airbyte Cloud at app.airbyte.ai (managed credentials, UI visibility). OSS Mode = local Python SDK (self-managed credentials, no cloud dependency). Definition ID = UUID that identifies a connector type in the Airbyte API (used in definition_id fields, not connector_type or connector_definition_id).
Important: This skill provides documentation and setup guidance. When helping users set up connectors, follow the documented workflows below. Do NOT attempt to import Python modules, verify package installations, or run code to check configurations -- simply guide users through the steps using the code examples provided.

Mode Detection

First, determine which mode the user needs:

Platform Mode (Airbyte Cloud)

Use when:

  • Environment has AIRBYTE_CLIENT_ID + AIRBYTE_CLIENT_SECRET
  • User wants connectors visible in the Airbyte UI at app.airbyte.ai
  • User needs managed credential storage, entity cache, or multi-tenant deployments

OSS Mode (Open Source / Local SDK)

Use when:

  • User wants to run connectors directly without platform integration
  • User is doing quick development or prototyping
  • User wants direct control over credentials and no cloud dependency
Ask if unclear: "Are you using Airbyte Platform (app.airbyte.ai) or open source connectors?"

Supported Connectors

51 connectors available. All connectors follow the same entity-action pattern: connector.execute(entity, action, params)

ConnectorPackageAuth TypeKey Entities
Stripeairbyte-agent-stripeTokenCustomers, Invoices, Charges, Subscri...
HubSpotairbyte-agent-hubspotOAuth, TokenContacts, Companies, Deals, Tickets,...
GitHubairbyte-agent-githubOAuth, TokenRepositories, Org Repositories, Branc...
Salesforceairbyte-agent-salesforceOAuthSobjects, Accounts, Contacts, Leads,...
Gongairbyte-agent-gongOAuth, TokenUsers, Calls, Calls Extensive, Call A...
Full table: See references/connector-index.md for all 51 connectors with auth types, key entities, and documentation status.

If the connector is NOT in the index: Inform the user that this connector isn't available yet. Point them to GitHub issues.


Platform Mode Quick Start

For users with Airbyte Platform credentials.

Prerequisites

Get credentials from app.airbyte.ai > Settings > API Keys:

  • AIRBYTE_CLIENT_ID
  • AIRBYTE_CLIENT_SECRET

Create a Connector

from airbyte_agent_stripe import StripeConnector
from airbyte_agent_stripe.models import StripeAuthConfig

connector = await StripeConnector.create_hosted(
    external_user_id="user_123",
    airbyte_client_id="...",
    airbyte_client_secret="...",
    auth_config=StripeAuthConfig(api_key="sk_live_...")
)

Use Existing Connector

connector = StripeConnector(
    external_user_id="user_123",
    airbyte_client_id="...",
    airbyte_client_secret="...",
)
result = await connector.execute("customers", "list", {"limit": 10})

OSS Mode Quick Start

Install

# Using uv (recommended)
uv add airbyte-agent-github

# Or using pip in a virtual environment
python3 -m venv .venv && source .venv/bin/activate
pip install airbyte-agent-github

Use Directly

from airbyte_agent_github import GithubConnector
from airbyte_agent_github.models import GithubPersonalAccessTokenAuthConfig

connector = GithubConnector(
    auth_config=GithubPersonalAccessTokenAuthConfig(token="ghp_your_token")
)

result = await connector.execute("issues", "list", {
    "owner": "airbytehq",
    "repo": "airbyte",
    "states": ["OPEN"],
    "per_page": 10
})

Entity-Action API Pattern

All connectors use the same interface:

result = await connector.execute(entity, action, params)
# result.data contains the records (list or dict depending on action)
# result.meta contains pagination info for list operations

Actions

ActionDescriptionresult.data Type
listGet multiple recordslist[dict]
getGet single record by IDdict
createCreate new recorddict
updateModify existing recorddict
deleteRemove recorddict
api_searchNative API search syntaxlist[dict]

Quick Examples

# List
await connector.execute("customers", "list", {"limit": 10})

# Get
await connector.execute("customers", "get", {"id": "cus_xxx"})

# Search
await connector.execute("repositories", "api_search", {
    "query": "language:python stars:>1000"
})

Pagination

async def fetch_all(connector, entity, params=None):
    all_records = []
    cursor = None
    params = params or {}

    while True:
        if cursor:
            params["after"] = cursor
        result = await connector.execute(entity, "list", params)
        all_records.extend(result.data)

        if result.meta and hasattr(result.meta, 'pagination'):
            cursor = getattr(result.meta.pagination, 'cursor', None)
            if not cursor:
                break
        else:
            break

    return all_records

Authentication Quick Reference

API Key Connectors

# Stripe
from airbyte_agent_stripe.models import StripeAuthConfig
auth_config=StripeAuthConfig(api_key="sk_live_...")

# Gong
from airbyte_agent_gong.models import GongAccessKeyAuthenticationAuthConfig
auth_config=GongAccessKeyAuthenticationAuthConfig(
    access_key="...", access_key_secret="..."
)

# HubSpot (Private App)
from airbyte_agent_hubspot.models import HubspotPrivateAppAuthConfig
auth_config=HubspotPrivateAppAuthConfig(access_token="pat-na1-...")

Personal Access Token

# GitHub
from airbyte_agent_github.models import GithubPersonalAccessTokenAuthConfig
auth_config=GithubPersonalAccessTokenAuthConfig(token="ghp_...")

# Slack
from airbyte_agent_slack.models import SlackAuthConfig
auth_config=SlackAuthConfig(token="xoxb-...")

OAuth (requires refresh token)

# Salesforce
from airbyte_agent_salesforce.models import SalesforceAuthConfig
auth_config=SalesforceAuthConfig(
    client_id="...", client_secret="...", refresh_token="..."
)
Per-connector auth details: Each connector reference in references/connectors/ includes the specific auth class name and fields.

Security Best Practices

  • Never hard-code credentials in source files. Use environment variables or .env files.
  • Use .env pattern: from dotenv import load_dotenv; load_dotenv()
  • Rotate tokens regularly. Use short-lived tokens where possible.
  • For production, use Platform Mode for managed credential storage.

Per-Connector Reference Documentation

Each per-connector reference includes: package name and version, authentication details, available entities and actions, quick-start code snippets, and links to full GitHub documentation.

Reference Documentation

How References Are Generated

Reference docs are auto-generated by scripts/generate_skill_references.py. Run python scripts/generate_skill_references.py --all to regenerate all references, or --connector <name> for a specific connector.


Skill Metadata

Support

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.31%
按下载量换算44

Claude

28.59%
按下载量换算34

Cursor

18.03%
按下载量换算21

Gemini CLI

9.73%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills