building-multi-connector-agent

Installation
SKILL.md

Building a Multi-Connector Agent

Use this when an agent needs two or more Airbyte connectors.

Going from Single to Multi

The bootstrapping-agent skill shows the single-connector pattern: direct class construction with AirbyteAuthConfig + @Connector.tool_utils decorator. Multi-connector agents use the same pattern, just repeated:

  1. Build a single AirbyteAuthConfig(...) so credentials are shared across connectors.
  2. Construct one typed connector per service (e.g. JiraConnector(auth_config=auth)).
  3. Define one tool function per connector, each with its own @Connector.tool_utils decorator.

There are no new APIs — same install, same constructor, same classmethod decorator.

Install the SDK

uv pip install airbyte-agent-sdk
Related skills
Installs
3
GitHub Stars
119
First Seen
Apr 21, 2026