discovering-connectors-6caf30 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited discovering-connectors-6caf30 (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
from airbyte_agent_sdk import list_connectors
available = list_connectors()
# Returns sorted list of connector slugs: ["airtable", "asana", "github", ...]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 |
AUTH.md | Credential requirements (OAuth, API key, etc.), hosted setup |
REFERENCE.md | Full entity/action parameters and schemas |
Read the connector's README first to understand what it can do.
When a typed connector package is installed, use runtime methods for schema details:
from airbyte_agent_sdk import AirbyteAuthConfig
from airbyte_agent_sdk.connectors.stripe import StripeConnector
connector = StripeConnector(
auth_config=AirbyteAuthConfig(
airbyte_client_id=os.getenv("AIRBYTE_CLIENT_ID"),
airbyte_client_secret=os.getenv("AIRBYTE_CLIENT_SECRET"),
workspace_name=os.getenv("AIRBYTE_WORKSPACE_NAME", "default"),
)
)
# List all entities and their available actions
entities = connector.list_entities()
for entity in entities:
print(f"{entity['entity_name']}: {entity['available_actions']}")
# Get JSON schema for a specific entity
schema = connector.entity_schema("customers")Note: list_entities() and entity_schema() require a typed connector (available after uv pip install airbyte-agent-sdk). They are not available on the generic HostedExecutor.
Read the connector's AUTH.md to understand what credentials are needed. For hosted mode (the default), API credentials are stored in Airbyte Cloud — you provide Airbyte client credentials instead.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.