bootstrapping-agent

Automate Airbyte connector wiring for AI agents with PydanticAI or Claude SDKs.

132|14|Updated Nov 26, 2025
One-click install
npx skills add https://github.com/airbytehq/airbyte-agent-sdk --skill bootstrapping-agent
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: bootstrapping-agent
Source: https://github.com/airbytehq/airbyte-agent-sdk/tree/main/.claude/skills/bootstrapping-agent
Command: npx skills add https://github.com/airbytehq/airbyte-agent-sdk --skill bootstrapping-agent

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Wires up an Airbyte connector for use in AI agents by generating authentication config, initializing the connector, and exposing a tool decorated with tool_utils for deterministic usage.

Core Features & Use Cases

  • Generate AirbyteAuthConfig credentials for a given workspace and client.
  • Initialize a typed connector (e.g., StripeConnector) and prepare a tool for agent invocation.
  • Demonstrate decorator stacking with tool_utils to enable retry translation and framework-agnostic operation.

Quick Start

Instantiate a StripeConnector with an AirbyteAuthConfig and expose a tool decorated with tool_utils for your agent.

Frequently Asked Questions about bootstrapping-agent

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I wire an Airbyte connector for AI agents?

To wire an Airbyte connector for AI agents, you generate authentication config, initialize a typed connector like StripeConnector, and expose a tool function decorated with tool_utils for deterministic agent invocation.

Does this Airbyte connector wiring tool work with PydanticAI and Claude SDKs?

Yes, this Airbyte connector wiring tool works with PydanticAI and Claude SDKs, applying decorator stacking with tool_utils to enable retry translation and framework-agnostic operation for your AI agents.

What is AirbyteAuthConfig used for when initializing a connector?

AirbyteAuthConfig is used to configure credentials and workspace settings for a given client, allowing you to instantiate a typed connector like StripeConnector and prepare it for agent invocation.

How do I expose an Airbyte connector as a tool for an AI agent?

You expose an Airbyte connector as a tool for an AI agent by initializing the connector with an AirbyteAuthConfig and applying the tool_utils decorator to the function, enabling framework-agnostic usage.

Do I need the Airbyte Agent SDK to use this connector wiring approach?

Yes, you need the Airbyte Agent SDK to use this connector wiring approach, as it requires the AirbyteAuthConfig pattern and the StripeConnector class to configure credentials and tool exposure.

Why use tool_utils decorator stacking when wiring Airbyte connectors for agents?

Using tool_utils decorator stacking when wiring Airbyte connectors enables retry translation and framework-agnostic operation, ensuring deterministic usage of the connector tool across different agent SDKs.