feat: Phase 3 — port all 21 providers to spec-driven catalogue - #14
Merged
Conversation
Add 14 new OpenAPI 3.0.3 spec files covering every provider from the Python connector tree. With the existing hetzner.json and gmail.json, the catalogue now spans 21 providers and 278 operations — 2x the Python baseline of 142 actions with 100% parity coverage. Spec-driven providers (from JSON specs): - LLM: openai (3), claude (2), kimi (2), cloudflare (2) - Cloud: linode (9), contabo (8), ovh (7), oneprovider (6) - Hosting: whm (9), cpanel (11), whmcs (9), ultrahost (6) - Chat: tawk (8) - SCM: github (25) - Already present: hetzner (72), gmail (79) Manually registered (local/SMTP transport): - email: send_email, list_accounts, check_inbox, search - ops_ssh: run_local, run_ssh, list_hosts - ops_browser: fetch, check_status, screenshot - ops_security: 5 audit/scan tools - ops_network: ping, dns_lookup, port_check, traceroute, http_headers Also adds: - Transport::Local variant for ops/IMAP operations - Auth store entries for all 11 new providers - Proper dispatch handling for Local transport Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_0176k7T6i3B197hY6TqPdWqj
CodeWithJuber
marked this pull request as ready for review
August 12, 2026 09:32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Phase 3 of the Rust rebuild: port all 21 Python connectors into the spec-driven operation catalogue. The catalogue now spans 278 operations across 21 providers — a 2x expansion over the Python baseline of 142 actions, with 100% parity coverage (every Python action has a corresponding Rust catalogue entry).
14 new OpenAPI 3.0.3 spec files added to
specs/:Key changes:
Transport::Localvariant for ops connectors and IMAP operationsConfigurationRequiredfor Local transport opsValidation
cargo fmt --check,cargo clippy --all-targets -D warnings)Security and operations
.envfiles are included.Generated by Claude Code