Labrynth banner
amaannawab923 amaannawab923

Labrynth

Data community

Description

> **AI-powered data connector generation using multi-agent orchestration**

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Agentic Connectors

**AI-powered data connector generation using multi-agent orchestration**

An autonomous system that generates production-ready data connectors using Claude AI agents orchestrated by LangGraph. Give it an API name, and it researches, codes, tests, reviews, and publishes a complete connector—all without human intervention.


How It Works

┌─────────────┐     ┌─────────────┐     ┌─────────────┐     ┌──────────────┐     ┌─────────────┐
│  Research   │────▶│  Generator  │────▶│   Tester    │────▶│ Test Review  │────▶│  Reviewer   │
│    Agent    │     │    Agent    │     │    Agent    │     │    Agent     │     │    Agent    │
└─────────────┘     └─────────────┘     └─────────────┘     └──────────────┘     └─────────────┘
      │                   ▲                   ▲                    │                    │
      │                   │                   │                    │                    │
      │                   └───────────────────┴────────────────────┘                    │
      │                        (Retry loops with intelligent feedback)                  │
      │                                                                                 ▼
      │                                                                          ┌─────────────┐
      └──────────────────────────────────────────────────────────────────────────│  Publisher  │
                                                                                 │    Agent    │
                                                                                 └─────────────┘

The Agents

Agent Role Tools
Research Agent Searches the web for API documentation, authentication patterns, rate limits, and existing implementations WebSearch, WebFetch, Read
Generator Agent Writes production-quality Python connector code with proper error handling, retries, and type hints Read, Write, Edit, Bash
*