[object Object]

← back to Cli Printing Press

feat(pipeline): add 10 new APIs to known specs registry for dogfood gauntlet

d81e961a5877c5d1cda9efbce38bec1c9a277be0 · 2026-03-24 09:26:12 -0700 · Matt Van Horn

Files touched

Diff

commit d81e961a5877c5d1cda9efbce38bec1c9a277be0
Author: Matt Van Horn <455140+mvanhorn@users.noreply.github.com>
Date:   Tue Mar 24 09:26:12 2026 -0700

    feat(pipeline): add 10 new APIs to known specs registry for dogfood gauntlet
---
 internal/pipeline/discover.go | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/internal/pipeline/discover.go b/internal/pipeline/discover.go
index 2ebea347..248fa98f 100644
--- a/internal/pipeline/discover.go
+++ b/internal/pipeline/discover.go
@@ -81,6 +81,46 @@ var KnownSpecs = map[string]KnownSpec{
 		URL:         "https://raw.githubusercontent.com/anthropics/anthropic-cookbook/main/misc/anthropic.openapi.yaml",
 		SandboxSafe: false,
 	},
+	"cloudflare": {
+		URL:         "https://raw.githubusercontent.com/cloudflare/api-schemas/main/openapi.json",
+		SandboxSafe: false,
+	},
+	"flyio": {
+		URL:         "https://docs.machines.dev/spec/openapi3.json",
+		SandboxSafe: false,
+	},
+	"jira": {
+		URL:         "https://api.apis.guru/v2/specs/atlassian.com/jira/1001.0.0-SNAPSHOT/openapi.json",
+		SandboxSafe: false,
+	},
+	"launchdarkly": {
+		URL:         "https://app.launchdarkly.com/api/v2/openapi.json",
+		SandboxSafe: false,
+	},
+	"sentry": {
+		URL:         "https://raw.githubusercontent.com/getsentry/sentry-api-schema/main/openapi-derefed.json",
+		SandboxSafe: false,
+	},
+	"spotify": {
+		URL:         "https://api.apis.guru/v2/specs/spotify.com/sonallux/2023.2.27/openapi.json",
+		SandboxSafe: false,
+	},
+	"supabase": {
+		URL:         "https://api.supabase.com/api/v1-json",
+		SandboxSafe: false,
+	},
+	"telegram": {
+		URL:         "https://api.apis.guru/v2/specs/telegram.org/5.0.0/openapi.json",
+		SandboxSafe: false,
+	},
+	"trello": {
+		URL:         "https://api.apis.guru/v2/specs/trello.com/1.0/openapi.json",
+		SandboxSafe: false,
+	},
+	"vercel": {
+		URL:         "https://api.apis.guru/v2/specs/vercel.com/0.0.1/openapi.json",
+		SandboxSafe: false,
+	},
 }
 
 // ApisGuruPattern builds an apis-guru URL for a provider and version.

← aae78017 feat(pipeline): add autonomous dogfood phase with 3-tier tes  ·  back to Cli Printing Press  ·  feat(catalog): add telegram, launchdarkly, sentry from dogfo 0f1beba2 →