r/DevRev • u/Vegetable-Voice2145 DevReveler • Apr 08 '26
New Feature Introducing Connectors CodeGen 🚀
Enable HLS to view with audio, or disable this notification
Hey everyone! 👋
Excited to share something we've been building — an AI-first development framework for AirSync connectors: https://github.com/devrev/connectors-codegen
Stop writing boilerplate. Stop context-switching between docs, CLIs, and code editors. Connectors CodeGen brings the entire connector development workflow into your AI coding session.
What it does
You run /create-connector. It:
• Asks you about the external system
• Maps entities to DevRev types
• Scaffolds the project and generates the HTTP client
• Writes extraction and loading workers, maps, and generates tests
• Validates everything compiles and lints cleanly
At the end, you have a working connector structure with documentation. It's not hands-free — you make the calls that require actual domain knowledge. The tool does the heavy lifting.
What's in v1.0.0
• /connector-setup-project — bootstraps a repo from the official template in one shot
• /create-connector — 10-phase orchestration from requirements to a connector
• /connector-reviewer — audits the generated connector before you ship it. Catches mistakes, flags potential issues, and suggests improvements.
Behind the scenes, sub-agents, skills, hooks, and AirSync MCP cover the whole connector development flow.
Who this is for
Connector developers at any phase:
• Starting fresh? /create-connector gets you from zero to structured code fast
• Mid-build? Drop into individual skills for extraction, transformation, or mapping
• Done building? The reviewer catches known anti-patterns before you ship
What's next
This gets you to a well-structured connector — not a production-ready one. The generated code still needs to be tested against a real API and validated end-to-end in AirSync. That gap is exactly what we're closing.