discovering-connectors
Installation
SKILL.md
Discovering Connectors
Programmatic Discovery
from airbyte_agent_sdk import list_connectors
available = list_connectors()
# Returns sorted list of connector slugs: ["airtable", "asana", "github", ...]
Exploring a Connector's Capabilities
Each connector has documentation at:
https://github.com/airbytehq/airbyte-agent-sdk/tree/main/connectors/{name}
| File | What it tells you |
|---|---|
README.md |
Entities/actions table, install instructions, example questions |
Related skills
More from airbytehq/airbyte-agent-sdk
airbyte-sdk-reference
Reference documentation for the Airbyte per-connector typed SDK packages
4bootstrapping-agent
Wires up an Airbyte connector for use in a PydanticAI or Claude SDK agent. Generates auth config, connector initialization, and tool_utils-decorated tool function. Use when adding a connector to an agent or setting up a new agent with a connector.
3building-multi-connector-agent
Builds a complete agent with multiple Airbyte connectors using PydanticAI or Claude SDK. Scaffolds project structure, wires up connectors, composes tools, and creates a run loop. Use when building an agent with multiple connectors or scaffolding a new agent project.
3