@better-openclaw/core 1.0.25 → 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/addon-stack.cjs +55 -3
- package/dist/addon-stack.cjs.map +1 -1
- package/dist/addon-stack.d.cts.map +1 -1
- package/dist/addon-stack.d.mts.map +1 -1
- package/dist/addon-stack.mjs +54 -2
- package/dist/addon-stack.mjs.map +1 -1
- package/dist/addon-stack.test.cjs +113 -1
- package/dist/addon-stack.test.cjs.map +1 -1
- package/dist/addon-stack.test.mjs +112 -0
- package/dist/addon-stack.test.mjs.map +1 -1
- package/dist/compose-validation.test.cjs +1 -1
- package/dist/composer.cjs +1 -1
- package/dist/composer.test.cjs +1 -1
- package/dist/deployers/strip-host-ports.cjs +1 -1
- package/dist/generate.cjs +1 -1
- package/dist/generate.test.cjs +1 -1
- package/dist/generators/env.cjs +1 -1
- package/dist/generators/postgres-init.cjs +5 -0
- package/dist/generators/postgres-init.cjs.map +1 -1
- package/dist/generators/postgres-init.d.cts.map +1 -1
- package/dist/generators/postgres-init.d.mts.map +1 -1
- package/dist/generators/postgres-init.mjs +5 -0
- package/dist/generators/postgres-init.mjs.map +1 -1
- package/dist/generators/skills.cjs +1 -1
- package/dist/generators/skills.d.cts.map +1 -1
- package/dist/generators/skills.d.mts.map +1 -1
- package/dist/generators/skills.mjs +141 -0
- package/dist/generators/skills.mjs.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/presets/presets.test.cjs +1 -1
- package/dist/{schema-CKBRu-Rt.d.cts → schema-BQnZrcw8.d.cts} +6 -1
- package/dist/{schema-CKBRu-Rt.d.cts.map → schema-BQnZrcw8.d.cts.map} +1 -1
- package/dist/{schema-Dn-_Jpb6.d.mts → schema-SBpL0bdI.d.mts} +6 -1
- package/dist/{schema-Dn-_Jpb6.d.mts.map → schema-SBpL0bdI.d.mts.map} +1 -1
- package/dist/schema.cjs +11 -2
- package/dist/schema.cjs.map +1 -1
- package/dist/schema.d.cts +1 -1
- package/dist/schema.d.mts +1 -1
- package/dist/schema.mjs +10 -1
- package/dist/schema.mjs.map +1 -1
- package/dist/services/definitions/burnlink.cjs +142 -0
- package/dist/services/definitions/burnlink.cjs.map +1 -0
- package/dist/services/definitions/burnlink.d.cts +7 -0
- package/dist/services/definitions/burnlink.d.cts.map +1 -0
- package/dist/services/definitions/burnlink.d.mts +7 -0
- package/dist/services/definitions/burnlink.d.mts.map +1 -0
- package/dist/services/definitions/burnlink.mjs +141 -0
- package/dist/services/definitions/burnlink.mjs.map +1 -0
- package/dist/services/definitions/hindsight.cjs +130 -0
- package/dist/services/definitions/hindsight.cjs.map +1 -0
- package/dist/services/definitions/hindsight.d.cts +7 -0
- package/dist/services/definitions/hindsight.d.cts.map +1 -0
- package/dist/services/definitions/hindsight.d.mts +7 -0
- package/dist/services/definitions/hindsight.d.mts.map +1 -0
- package/dist/services/definitions/hindsight.mjs +129 -0
- package/dist/services/definitions/hindsight.mjs.map +1 -0
- package/dist/services/definitions/index.cjs +9 -0
- package/dist/services/definitions/index.cjs.map +1 -1
- package/dist/services/definitions/index.d.cts +4 -1
- package/dist/services/definitions/index.d.cts.map +1 -1
- package/dist/services/definitions/index.d.mts +4 -1
- package/dist/services/definitions/index.d.mts.map +1 -1
- package/dist/services/definitions/index.mjs +7 -1
- package/dist/services/definitions/index.mjs.map +1 -1
- package/dist/services/definitions/opensandbox.cjs +149 -0
- package/dist/services/definitions/opensandbox.cjs.map +1 -0
- package/dist/services/definitions/opensandbox.d.cts +7 -0
- package/dist/services/definitions/opensandbox.d.cts.map +1 -0
- package/dist/services/definitions/opensandbox.d.mts +7 -0
- package/dist/services/definitions/opensandbox.d.mts.map +1 -0
- package/dist/services/definitions/opensandbox.mjs +148 -0
- package/dist/services/definitions/opensandbox.mjs.map +1 -0
- package/dist/{skills-BlzpHmpH.cjs → skills-BSF7iNa4.cjs} +142 -1
- package/dist/{skills-BlzpHmpH.cjs.map → skills-BSF7iNa4.cjs.map} +1 -1
- package/dist/types.d.cts +1 -1
- package/dist/types.d.mts +1 -1
- package/dist/validator.cjs +1 -1
- package/package.json +1 -1
- package/src/addon-stack.test.ts +158 -0
- package/src/addon-stack.ts +48 -0
- package/src/generators/postgres-init.ts +2 -0
- package/src/generators/skills.ts +142 -0
- package/src/schema.ts +7 -0
- package/src/services/definitions/burnlink.ts +142 -0
- package/src/services/definitions/hindsight.ts +131 -0
- package/src/services/definitions/index.ts +10 -0
- package/src/services/definitions/opensandbox.ts +156 -0
|
@@ -14,6 +14,7 @@ import { baserowDefinition } from "./baserow.mjs";
|
|
|
14
14
|
import { beszelDefinition } from "./beszel.mjs";
|
|
15
15
|
import { boxyhqSaasDefinition } from "./boxyhq-saas.mjs";
|
|
16
16
|
import { browserlessDefinition } from "./browserless.mjs";
|
|
17
|
+
import { burnlinkDefinition } from "./burnlink.mjs";
|
|
17
18
|
import { caddyDefinition } from "./caddy.mjs";
|
|
18
19
|
import { calComDefinition } from "./cal-com.mjs";
|
|
19
20
|
import { calibreWebDefinition } from "./calibre-web.mjs";
|
|
@@ -64,6 +65,7 @@ import { headscaleDefinition } from "./headscale.mjs";
|
|
|
64
65
|
import { hedgedocDefinition } from "./hedgedoc.mjs";
|
|
65
66
|
import { hexstrikeDefinition } from "./hexstrike.mjs";
|
|
66
67
|
import { heyformDefinition } from "./heyform.mjs";
|
|
68
|
+
import { hindsightDefinition } from "./hindsight.mjs";
|
|
67
69
|
import { homeassistantDefinition } from "./homeassistant.mjs";
|
|
68
70
|
import { hoppscotchDefinition } from "./hoppscotch.mjs";
|
|
69
71
|
import { immichDefinition } from "./immich.mjs";
|
|
@@ -119,6 +121,7 @@ import { openWebuiDefinition } from "./open-webui.mjs";
|
|
|
119
121
|
import { opencodeDefinition } from "./opencode.mjs";
|
|
120
122
|
import { openhandsDefinition } from "./openhands.mjs";
|
|
121
123
|
import { openpanelDefinition } from "./openpanel.mjs";
|
|
124
|
+
import { opensandboxDefinition } from "./opensandbox.mjs";
|
|
122
125
|
import { opensearchDefinition } from "./opensearch.mjs";
|
|
123
126
|
import { outlineDefinition } from "./outline.mjs";
|
|
124
127
|
import { paperlessNgxDefinition } from "./paperless-ngx.mjs";
|
|
@@ -189,5 +192,5 @@ import { ixartzSaasDefinition } from "./ixartz-saas.mjs";
|
|
|
189
192
|
//#region src/services/definitions/index.d.ts
|
|
190
193
|
declare const allServiceDefinitions: ServiceDefinition[];
|
|
191
194
|
//#endregion
|
|
192
|
-
export { adguardHomeDefinition, airbyteDefinition, airflowDefinition, allServiceDefinitions, anythingLlmDefinition, appflowyDefinition, apptensionSaasDefinition, appwriteDefinition, audiobookshelfDefinition, autheliaDefinition, authentikDefinition, axolotlDefinition, baserowDefinition, beszelDefinition, boxyhqSaasDefinition, browserlessDefinition, caddyDefinition, calComDefinition, calibreWebDefinition, chatwootDefinition, chatwootWorkerDefinition, chromadbDefinition, claudeCodeDefinition, clickhouseDefinition, cloudflaredDefinition, cmsaasStarterDefinition, cockroachdbDefinition, codeServerDefinition, coderDefinition, codexDefinition, comfyuiDefinition, convexDashboardDefinition, convexDefinition, coolifyDefinition, crowdsecDefinition, dagsterDefinition, desktopEnvironmentDefinition, difyDefinition, directusDefinition, docsgptDefinition, dokployDefinition, dozzleDefinition, dragonflyDefinition, droneCiDefinition, duplicatiDefinition, elementWebDefinition, excalidrawDefinition, ffmpegDefinition, firecrawlDefinition, firecrawlPlaywrightDefinition, flagsmithDefinition, flowiseDefinition, focalboardDefinition, fonosterDefinition, forgejoDefinition, formbricksDefinition, geminiCliDefinition, ghostDefinition, giteaDefinition, gotifyDefinition, grafanaDefinition, graylogDefinition, headscaleDefinition, hedgedocDefinition, hexstrikeDefinition, heyformDefinition, homeassistantDefinition, hoppscotchDefinition, immichDefinition, infisicalDefinition, influxdbDefinition, invokeAiDefinition, ixartzSaasDefinition, jaegerDefinition, janDefinition, jellyfinDefinition, jenkinsDefinition, jitsiMeetDefinition, keycloakDefinition, kimiDefinition, kongDefinition, lagoDefinition, langflowDefinition, langfuseDefinition, lasuiteMeetAgentsDefinition, lasuiteMeetBackendDefinition, lasuiteMeetFrontendDefinition, librechatDefinition, lightpandaDefinition, listmonkDefinition, litellmDefinition, livekitDefinition, localAiDefinition, lokiDefinition, mariadbDefinition, matomoDefinition, matrixSynapseDefinition, mattermostDefinition, mauticDefinition, medusaDefinition, meilisearchDefinition, metabaseDefinition, milvusDefinition, minioDefinition, missionControlDefinition, mixpostDefinition, mosquittoDefinition, motionCanvasDefinition, mysqlDefinition, n8nDefinition, navidromeDefinition, neo4jDefinition, nextcloudDefinition, nginxProxyManagerDefinition, nocodbDefinition, nodeRedDefinition, ntfyDefinition, ollamaDefinition, openSaasDefinition, openWebuiDefinition, opencodeDefinition, openhandsDefinition, openpanelDefinition, opensearchDefinition, outlineDefinition, paperlessNgxDefinition, pentagiDefinition, pentestagentDefinition, photoprismDefinition, piholeDefinition, piperTtsDefinition, planeDefinition, plausibleDefinition, playwrightServerDefinition, pocketIdDefinition, pocketbaseDefinition, portainerDefinition, postgresqlDefinition, posthogDefinition, postizDefinition, prometheusDefinition, qdrantDefinition, rabbitmqDefinition, ragflowDefinition, redisDefinition, remotionDefinition, resticDefinition, revoltDefinition, rocketchatDefinition, saleorDefinition, scraplingDefinition, searxngDefinition, sentryDefinition, signozDefinition, solidityGuardDefinition, sonarqubeDefinition, stableDiffusionDefinition, steelBrowserDefinition, stirlingPdfDefinition, strapiDefinition, streamGatewayDefinition, supabaseDefinition, supersetDefinition, surrealdbDefinition, tabbyMlDefinition, tailscaleDefinition, tempoDefinition, temporalDefinition, textGenWebuiDefinition, timescaledbDefinition, traefikDefinition, twentyDefinition, umamiDefinition, uptimeKumaDefinition, usesendDefinition, valkeyDefinition, vaultDefinition, vaultwardenDefinition, vectorLogDefinition, vikunjaDefinition, watchtowerDefinition, weaviateDefinition, whisperDefinition, wireguardDefinition, woodpeckerCiDefinition, xyopsDefinition, zulipDefinition };
|
|
195
|
+
export { adguardHomeDefinition, airbyteDefinition, airflowDefinition, allServiceDefinitions, anythingLlmDefinition, appflowyDefinition, apptensionSaasDefinition, appwriteDefinition, audiobookshelfDefinition, autheliaDefinition, authentikDefinition, axolotlDefinition, baserowDefinition, beszelDefinition, boxyhqSaasDefinition, browserlessDefinition, burnlinkDefinition, caddyDefinition, calComDefinition, calibreWebDefinition, chatwootDefinition, chatwootWorkerDefinition, chromadbDefinition, claudeCodeDefinition, clickhouseDefinition, cloudflaredDefinition, cmsaasStarterDefinition, cockroachdbDefinition, codeServerDefinition, coderDefinition, codexDefinition, comfyuiDefinition, convexDashboardDefinition, convexDefinition, coolifyDefinition, crowdsecDefinition, dagsterDefinition, desktopEnvironmentDefinition, difyDefinition, directusDefinition, docsgptDefinition, dokployDefinition, dozzleDefinition, dragonflyDefinition, droneCiDefinition, duplicatiDefinition, elementWebDefinition, excalidrawDefinition, ffmpegDefinition, firecrawlDefinition, firecrawlPlaywrightDefinition, flagsmithDefinition, flowiseDefinition, focalboardDefinition, fonosterDefinition, forgejoDefinition, formbricksDefinition, geminiCliDefinition, ghostDefinition, giteaDefinition, gotifyDefinition, grafanaDefinition, graylogDefinition, headscaleDefinition, hedgedocDefinition, hexstrikeDefinition, heyformDefinition, hindsightDefinition, homeassistantDefinition, hoppscotchDefinition, immichDefinition, infisicalDefinition, influxdbDefinition, invokeAiDefinition, ixartzSaasDefinition, jaegerDefinition, janDefinition, jellyfinDefinition, jenkinsDefinition, jitsiMeetDefinition, keycloakDefinition, kimiDefinition, kongDefinition, lagoDefinition, langflowDefinition, langfuseDefinition, lasuiteMeetAgentsDefinition, lasuiteMeetBackendDefinition, lasuiteMeetFrontendDefinition, librechatDefinition, lightpandaDefinition, listmonkDefinition, litellmDefinition, livekitDefinition, localAiDefinition, lokiDefinition, mariadbDefinition, matomoDefinition, matrixSynapseDefinition, mattermostDefinition, mauticDefinition, medusaDefinition, meilisearchDefinition, metabaseDefinition, milvusDefinition, minioDefinition, missionControlDefinition, mixpostDefinition, mosquittoDefinition, motionCanvasDefinition, mysqlDefinition, n8nDefinition, navidromeDefinition, neo4jDefinition, nextcloudDefinition, nginxProxyManagerDefinition, nocodbDefinition, nodeRedDefinition, ntfyDefinition, ollamaDefinition, openSaasDefinition, openWebuiDefinition, opencodeDefinition, openhandsDefinition, openpanelDefinition, opensandboxDefinition, opensearchDefinition, outlineDefinition, paperlessNgxDefinition, pentagiDefinition, pentestagentDefinition, photoprismDefinition, piholeDefinition, piperTtsDefinition, planeDefinition, plausibleDefinition, playwrightServerDefinition, pocketIdDefinition, pocketbaseDefinition, portainerDefinition, postgresqlDefinition, posthogDefinition, postizDefinition, prometheusDefinition, qdrantDefinition, rabbitmqDefinition, ragflowDefinition, redisDefinition, remotionDefinition, resticDefinition, revoltDefinition, rocketchatDefinition, saleorDefinition, scraplingDefinition, searxngDefinition, sentryDefinition, signozDefinition, solidityGuardDefinition, sonarqubeDefinition, stableDiffusionDefinition, steelBrowserDefinition, stirlingPdfDefinition, strapiDefinition, streamGatewayDefinition, supabaseDefinition, supersetDefinition, surrealdbDefinition, tabbyMlDefinition, tailscaleDefinition, tempoDefinition, temporalDefinition, textGenWebuiDefinition, timescaledbDefinition, traefikDefinition, twentyDefinition, umamiDefinition, uptimeKumaDefinition, usesendDefinition, valkeyDefinition, vaultDefinition, vaultwardenDefinition, vectorLogDefinition, vikunjaDefinition, watchtowerDefinition, weaviateDefinition, whisperDefinition, wireguardDefinition, woodpeckerCiDefinition, xyopsDefinition, zulipDefinition };
|
|
193
196
|
//# sourceMappingURL=index.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","names":[],"sources":["../../../src/services/definitions/index.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":[],"sources":["../../../src/services/definitions/index.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAiYa,qBAAA,EAAuB,iBAAA"}
|
|
@@ -11,6 +11,7 @@ import { axolotlDefinition } from "./axolotl.mjs";
|
|
|
11
11
|
import { baserowDefinition } from "./baserow.mjs";
|
|
12
12
|
import { beszelDefinition } from "./beszel.mjs";
|
|
13
13
|
import { browserlessDefinition } from "./browserless.mjs";
|
|
14
|
+
import { burnlinkDefinition } from "./burnlink.mjs";
|
|
14
15
|
import { caddyDefinition } from "./caddy.mjs";
|
|
15
16
|
import { calComDefinition } from "./cal-com.mjs";
|
|
16
17
|
import { calibreWebDefinition } from "./calibre-web.mjs";
|
|
@@ -58,6 +59,7 @@ import { grafanaDefinition } from "./grafana.mjs";
|
|
|
58
59
|
import { graylogDefinition } from "./graylog.mjs";
|
|
59
60
|
import { headscaleDefinition } from "./headscale.mjs";
|
|
60
61
|
import { hedgedocDefinition } from "./hedgedoc.mjs";
|
|
62
|
+
import { hindsightDefinition } from "./hindsight.mjs";
|
|
61
63
|
import { hexstrikeDefinition } from "./hexstrike.mjs";
|
|
62
64
|
import { heyformDefinition } from "./heyform.mjs";
|
|
63
65
|
import { homeassistantDefinition } from "./homeassistant.mjs";
|
|
@@ -115,6 +117,7 @@ import { openWebuiDefinition } from "./open-webui.mjs";
|
|
|
115
117
|
import { opencodeDefinition } from "./opencode.mjs";
|
|
116
118
|
import { openhandsDefinition } from "./openhands.mjs";
|
|
117
119
|
import { openpanelDefinition } from "./openpanel.mjs";
|
|
120
|
+
import { opensandboxDefinition } from "./opensandbox.mjs";
|
|
118
121
|
import { opensearchDefinition } from "./opensearch.mjs";
|
|
119
122
|
import { outlineDefinition } from "./outline.mjs";
|
|
120
123
|
import { paperlessNgxDefinition } from "./paperless-ngx.mjs";
|
|
@@ -367,6 +370,9 @@ const allServiceDefinitions = [
|
|
|
367
370
|
vikunjaDefinition,
|
|
368
371
|
wireguardDefinition,
|
|
369
372
|
woodpeckerCiDefinition,
|
|
373
|
+
hindsightDefinition,
|
|
374
|
+
burnlinkDefinition,
|
|
375
|
+
opensandboxDefinition,
|
|
370
376
|
openSaasDefinition,
|
|
371
377
|
apptensionSaasDefinition,
|
|
372
378
|
boxyhqSaasDefinition,
|
|
@@ -374,6 +380,6 @@ const allServiceDefinitions = [
|
|
|
374
380
|
cmsaasStarterDefinition
|
|
375
381
|
];
|
|
376
382
|
//#endregion
|
|
377
|
-
export { adguardHomeDefinition, airbyteDefinition, airflowDefinition, allServiceDefinitions, anythingLlmDefinition, appflowyDefinition, apptensionSaasDefinition, appwriteDefinition, audiobookshelfDefinition, autheliaDefinition, authentikDefinition, axolotlDefinition, baserowDefinition, beszelDefinition, boxyhqSaasDefinition, browserlessDefinition, caddyDefinition, calComDefinition, calibreWebDefinition, chatwootDefinition, chatwootWorkerDefinition, chromadbDefinition, claudeCodeDefinition, clickhouseDefinition, cloudflaredDefinition, cmsaasStarterDefinition, cockroachdbDefinition, codeServerDefinition, coderDefinition, codexDefinition, comfyuiDefinition, convexDashboardDefinition, convexDefinition, coolifyDefinition, crowdsecDefinition, dagsterDefinition, desktopEnvironmentDefinition, difyDefinition, directusDefinition, docsgptDefinition, dokployDefinition, dozzleDefinition, dragonflyDefinition, droneCiDefinition, duplicatiDefinition, elementWebDefinition, excalidrawDefinition, ffmpegDefinition, firecrawlDefinition, firecrawlPlaywrightDefinition, flagsmithDefinition, flowiseDefinition, focalboardDefinition, fonosterDefinition, forgejoDefinition, formbricksDefinition, geminiCliDefinition, ghostDefinition, giteaDefinition, gotifyDefinition, grafanaDefinition, graylogDefinition, headscaleDefinition, hedgedocDefinition, hexstrikeDefinition, heyformDefinition, homeassistantDefinition, hoppscotchDefinition, immichDefinition, infisicalDefinition, influxdbDefinition, invokeAiDefinition, ixartzSaasDefinition, jaegerDefinition, janDefinition, jellyfinDefinition, jenkinsDefinition, jitsiMeetDefinition, keycloakDefinition, kimiDefinition, kongDefinition, lagoDefinition, langflowDefinition, langfuseDefinition, lasuiteMeetAgentsDefinition, lasuiteMeetBackendDefinition, lasuiteMeetFrontendDefinition, librechatDefinition, lightpandaDefinition, listmonkDefinition, litellmDefinition, livekitDefinition, localAiDefinition, lokiDefinition, mariadbDefinition, matomoDefinition, matrixSynapseDefinition, mattermostDefinition, mauticDefinition, medusaDefinition, meilisearchDefinition, metabaseDefinition, milvusDefinition, minioDefinition, missionControlDefinition, mixpostDefinition, mosquittoDefinition, motionCanvasDefinition, mysqlDefinition, n8nDefinition, navidromeDefinition, neo4jDefinition, nextcloudDefinition, nginxProxyManagerDefinition, nocodbDefinition, nodeRedDefinition, ntfyDefinition, ollamaDefinition, openSaasDefinition, openWebuiDefinition, opencodeDefinition, openhandsDefinition, openpanelDefinition, opensearchDefinition, outlineDefinition, paperlessNgxDefinition, pentagiDefinition, pentestagentDefinition, photoprismDefinition, piholeDefinition, piperTtsDefinition, planeDefinition, plausibleDefinition, playwrightServerDefinition, pocketIdDefinition, pocketbaseDefinition, portainerDefinition, postgresqlDefinition, posthogDefinition, postizDefinition, prometheusDefinition, qdrantDefinition, rabbitmqDefinition, ragflowDefinition, redisDefinition, remotionDefinition, resticDefinition, revoltDefinition, rocketchatDefinition, saleorDefinition, scraplingDefinition, searxngDefinition, sentryDefinition, signozDefinition, solidityGuardDefinition, sonarqubeDefinition, stableDiffusionDefinition, steelBrowserDefinition, stirlingPdfDefinition, strapiDefinition, streamGatewayDefinition, supabaseDefinition, supersetDefinition, surrealdbDefinition, tabbyMlDefinition, tailscaleDefinition, tempoDefinition, temporalDefinition, textGenWebuiDefinition, timescaledbDefinition, traefikDefinition, twentyDefinition, umamiDefinition, uptimeKumaDefinition, usesendDefinition, valkeyDefinition, vaultDefinition, vaultwardenDefinition, vectorLogDefinition, vikunjaDefinition, watchtowerDefinition, weaviateDefinition, whisperDefinition, wireguardDefinition, woodpeckerCiDefinition, xyopsDefinition, zulipDefinition };
|
|
383
|
+
export { adguardHomeDefinition, airbyteDefinition, airflowDefinition, allServiceDefinitions, anythingLlmDefinition, appflowyDefinition, apptensionSaasDefinition, appwriteDefinition, audiobookshelfDefinition, autheliaDefinition, authentikDefinition, axolotlDefinition, baserowDefinition, beszelDefinition, boxyhqSaasDefinition, browserlessDefinition, burnlinkDefinition, caddyDefinition, calComDefinition, calibreWebDefinition, chatwootDefinition, chatwootWorkerDefinition, chromadbDefinition, claudeCodeDefinition, clickhouseDefinition, cloudflaredDefinition, cmsaasStarterDefinition, cockroachdbDefinition, codeServerDefinition, coderDefinition, codexDefinition, comfyuiDefinition, convexDashboardDefinition, convexDefinition, coolifyDefinition, crowdsecDefinition, dagsterDefinition, desktopEnvironmentDefinition, difyDefinition, directusDefinition, docsgptDefinition, dokployDefinition, dozzleDefinition, dragonflyDefinition, droneCiDefinition, duplicatiDefinition, elementWebDefinition, excalidrawDefinition, ffmpegDefinition, firecrawlDefinition, firecrawlPlaywrightDefinition, flagsmithDefinition, flowiseDefinition, focalboardDefinition, fonosterDefinition, forgejoDefinition, formbricksDefinition, geminiCliDefinition, ghostDefinition, giteaDefinition, gotifyDefinition, grafanaDefinition, graylogDefinition, headscaleDefinition, hedgedocDefinition, hexstrikeDefinition, heyformDefinition, hindsightDefinition, homeassistantDefinition, hoppscotchDefinition, immichDefinition, infisicalDefinition, influxdbDefinition, invokeAiDefinition, ixartzSaasDefinition, jaegerDefinition, janDefinition, jellyfinDefinition, jenkinsDefinition, jitsiMeetDefinition, keycloakDefinition, kimiDefinition, kongDefinition, lagoDefinition, langflowDefinition, langfuseDefinition, lasuiteMeetAgentsDefinition, lasuiteMeetBackendDefinition, lasuiteMeetFrontendDefinition, librechatDefinition, lightpandaDefinition, listmonkDefinition, litellmDefinition, livekitDefinition, localAiDefinition, lokiDefinition, mariadbDefinition, matomoDefinition, matrixSynapseDefinition, mattermostDefinition, mauticDefinition, medusaDefinition, meilisearchDefinition, metabaseDefinition, milvusDefinition, minioDefinition, missionControlDefinition, mixpostDefinition, mosquittoDefinition, motionCanvasDefinition, mysqlDefinition, n8nDefinition, navidromeDefinition, neo4jDefinition, nextcloudDefinition, nginxProxyManagerDefinition, nocodbDefinition, nodeRedDefinition, ntfyDefinition, ollamaDefinition, openSaasDefinition, openWebuiDefinition, opencodeDefinition, openhandsDefinition, openpanelDefinition, opensandboxDefinition, opensearchDefinition, outlineDefinition, paperlessNgxDefinition, pentagiDefinition, pentestagentDefinition, photoprismDefinition, piholeDefinition, piperTtsDefinition, planeDefinition, plausibleDefinition, playwrightServerDefinition, pocketIdDefinition, pocketbaseDefinition, portainerDefinition, postgresqlDefinition, posthogDefinition, postizDefinition, prometheusDefinition, qdrantDefinition, rabbitmqDefinition, ragflowDefinition, redisDefinition, remotionDefinition, resticDefinition, revoltDefinition, rocketchatDefinition, saleorDefinition, scraplingDefinition, searxngDefinition, sentryDefinition, signozDefinition, solidityGuardDefinition, sonarqubeDefinition, stableDiffusionDefinition, steelBrowserDefinition, stirlingPdfDefinition, strapiDefinition, streamGatewayDefinition, supabaseDefinition, supersetDefinition, surrealdbDefinition, tabbyMlDefinition, tailscaleDefinition, tempoDefinition, temporalDefinition, textGenWebuiDefinition, timescaledbDefinition, traefikDefinition, twentyDefinition, umamiDefinition, uptimeKumaDefinition, usesendDefinition, valkeyDefinition, vaultDefinition, vaultwardenDefinition, vectorLogDefinition, vikunjaDefinition, watchtowerDefinition, weaviateDefinition, whisperDefinition, wireguardDefinition, woodpeckerCiDefinition, xyopsDefinition, zulipDefinition };
|
|
378
384
|
|
|
379
385
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","names":[],"sources":["../../../src/services/definitions/index.ts"],"sourcesContent":["export { adguardHomeDefinition } from \"./adguard-home.js\";\nexport { airbyteDefinition } from \"./airbyte.js\";\nexport { airflowDefinition } from \"./airflow.js\";\nexport { anythingLlmDefinition } from \"./anything-llm.js\";\nexport { appflowyDefinition } from \"./appflowy.js\";\nexport { appwriteDefinition } from \"./appwrite.js\";\nexport { audiobookshelfDefinition } from \"./audiobookshelf.js\";\nexport { autheliaDefinition } from \"./authelia.js\";\nexport { authentikDefinition } from \"./authentik.js\";\nexport { axolotlDefinition } from \"./axolotl.js\";\nexport { baserowDefinition } from \"./baserow.js\";\nexport { beszelDefinition } from \"./beszel.js\";\nexport { browserlessDefinition } from \"./browserless.js\";\nexport { caddyDefinition } from \"./caddy.js\";\nexport { calComDefinition } from \"./cal-com.js\";\nexport { calibreWebDefinition } from \"./calibre-web.js\";\nexport { chatwootDefinition } from \"./chatwoot.js\";\nexport { chatwootWorkerDefinition } from \"./chatwoot-worker.js\";\nexport { chromadbDefinition } from \"./chromadb.js\";\nexport { claudeCodeDefinition } from \"./claude-code.js\";\nexport { clickhouseDefinition } from \"./clickhouse.js\";\nexport { cloudflaredDefinition } from \"./cloudflared.js\";\nexport { cockroachdbDefinition } from \"./cockroachdb.js\";\nexport { codeServerDefinition } from \"./code-server.js\";\nexport { coderDefinition } from \"./coder.js\";\nexport { codexDefinition } from \"./codex.js\";\nexport { comfyuiDefinition } from \"./comfyui.js\";\nexport { convexDefinition } from \"./convex.js\";\nexport { convexDashboardDefinition } from \"./convex-dashboard.js\";\nexport { coolifyDefinition } from \"./coolify.js\";\nexport { crowdsecDefinition } from \"./crowdsec.js\";\nexport { dagsterDefinition } from \"./dagster.js\";\nexport { desktopEnvironmentDefinition } from \"./desktop-environment.js\";\nexport { difyDefinition } from \"./dify.js\";\nexport { directusDefinition } from \"./directus.js\";\nexport { docsgptDefinition } from \"./docsgpt.js\";\nexport { dokployDefinition } from \"./dokploy.js\";\nexport { dozzleDefinition } from \"./dozzle.js\";\nexport { dragonflyDefinition } from \"./dragonfly.js\";\nexport { droneCiDefinition } from \"./drone-ci.js\";\nexport { duplicatiDefinition } from \"./duplicati.js\";\nexport { elementWebDefinition } from \"./element-web.js\";\nexport { excalidrawDefinition } from \"./excalidraw.js\";\nexport { ffmpegDefinition } from \"./ffmpeg.js\";\nexport { firecrawlDefinition } from \"./firecrawl.js\";\nexport { firecrawlPlaywrightDefinition } from \"./firecrawl-playwright.js\";\nexport { flagsmithDefinition } from \"./flagsmith.js\";\nexport { flowiseDefinition } from \"./flowise.js\";\nexport { focalboardDefinition } from \"./focalboard.js\";\nexport { fonosterDefinition } from \"./fonoster.js\";\nexport { forgejoDefinition } from \"./forgejo.js\";\nexport { formbricksDefinition } from \"./formbricks.js\";\nexport { geminiCliDefinition } from \"./gemini-cli.js\";\nexport { ghostDefinition } from \"./ghost.js\";\nexport { giteaDefinition } from \"./gitea.js\";\nexport { gotifyDefinition } from \"./gotify.js\";\nexport { grafanaDefinition } from \"./grafana.js\";\nexport { graylogDefinition } from \"./graylog.js\";\nexport { headscaleDefinition } from \"./headscale.js\";\nexport { hedgedocDefinition } from \"./hedgedoc.js\";\nexport { hexstrikeDefinition } from \"./hexstrike.js\";\nexport { heyformDefinition } from \"./heyform.js\";\nexport { homeassistantDefinition } from \"./homeassistant.js\";\nexport { hoppscotchDefinition } from \"./hoppscotch.js\";\nexport { immichDefinition } from \"./immich.js\";\nexport { infisicalDefinition } from \"./infisical.js\";\nexport { influxdbDefinition } from \"./influxdb.js\";\nexport { invokeAiDefinition } from \"./invoke-ai.js\";\nexport { jaegerDefinition } from \"./jaeger.js\";\nexport { janDefinition } from \"./jan.js\";\nexport { jellyfinDefinition } from \"./jellyfin.js\";\nexport { jenkinsDefinition } from \"./jenkins.js\";\nexport { jitsiMeetDefinition } from \"./jitsi-meet.js\";\nexport { keycloakDefinition } from \"./keycloak.js\";\nexport { kimiDefinition } from \"./kimi.js\";\nexport { kongDefinition } from \"./kong.js\";\nexport { lagoDefinition } from \"./lago.js\";\nexport { langflowDefinition } from \"./langflow.js\";\nexport { langfuseDefinition } from \"./langfuse.js\";\nexport { lasuiteMeetAgentsDefinition } from \"./lasuite-meet-agents.js\";\nexport { lasuiteMeetBackendDefinition } from \"./lasuite-meet-backend.js\";\nexport { lasuiteMeetFrontendDefinition } from \"./lasuite-meet-frontend.js\";\nexport { librechatDefinition } from \"./librechat.js\";\nexport { lightpandaDefinition } from \"./lightpanda.js\";\nexport { listmonkDefinition } from \"./listmonk.js\";\nexport { litellmDefinition } from \"./litellm.js\";\nexport { livekitDefinition } from \"./livekit.js\";\nexport { localAiDefinition } from \"./local-ai.js\";\nexport { lokiDefinition } from \"./loki.js\";\nexport { mariadbDefinition } from \"./mariadb.js\";\nexport { matomoDefinition } from \"./matomo.js\";\nexport { matrixSynapseDefinition } from \"./matrix-synapse.js\";\nexport { mattermostDefinition } from \"./mattermost.js\";\nexport { mauticDefinition } from \"./mautic.js\";\nexport { medusaDefinition } from \"./medusa.js\";\nexport { meilisearchDefinition } from \"./meilisearch.js\";\nexport { metabaseDefinition } from \"./metabase.js\";\nexport { milvusDefinition } from \"./milvus.js\";\nexport { minioDefinition } from \"./minio.js\";\nexport { missionControlDefinition } from \"./mission-control.js\";\nexport { mixpostDefinition } from \"./mixpost.js\";\nexport { mosquittoDefinition } from \"./mosquitto.js\";\nexport { motionCanvasDefinition } from \"./motion-canvas.js\";\nexport { mysqlDefinition } from \"./mysql.js\";\nexport { n8nDefinition } from \"./n8n.js\";\nexport { navidromeDefinition } from \"./navidrome.js\";\nexport { neo4jDefinition } from \"./neo4j.js\";\nexport { nextcloudDefinition } from \"./nextcloud.js\";\nexport { nginxProxyManagerDefinition } from \"./nginx-proxy-manager.js\";\nexport { nocodbDefinition } from \"./nocodb.js\";\nexport { nodeRedDefinition } from \"./node-red.js\";\nexport { ntfyDefinition } from \"./ntfy.js\";\nexport { ollamaDefinition } from \"./ollama.js\";\nexport { openWebuiDefinition } from \"./open-webui.js\";\nexport { opencodeDefinition } from \"./opencode.js\";\nexport { openhandsDefinition } from \"./openhands.js\";\nexport { openpanelDefinition } from \"./openpanel.js\";\nexport { opensearchDefinition } from \"./opensearch.js\";\nexport { outlineDefinition } from \"./outline.js\";\nexport { paperlessNgxDefinition } from \"./paperless-ngx.js\";\nexport { pentagiDefinition } from \"./pentagi.js\";\nexport { pentestagentDefinition } from \"./pentestagent.js\";\nexport { photoprismDefinition } from \"./photoprism.js\";\nexport { piholeDefinition } from \"./pihole.js\";\nexport { piperTtsDefinition } from \"./piper-tts.js\";\nexport { planeDefinition } from \"./plane.js\";\nexport { plausibleDefinition } from \"./plausible.js\";\nexport { playwrightServerDefinition } from \"./playwright-server.js\";\nexport { pocketIdDefinition } from \"./pocket-id.js\";\nexport { pocketbaseDefinition } from \"./pocketbase.js\";\nexport { portainerDefinition } from \"./portainer.js\";\nexport { postgresqlDefinition } from \"./postgresql.js\";\nexport { posthogDefinition } from \"./posthog.js\";\nexport { postizDefinition } from \"./postiz.js\";\nexport { prometheusDefinition } from \"./prometheus.js\";\nexport { qdrantDefinition } from \"./qdrant.js\";\nexport { rabbitmqDefinition } from \"./rabbitmq.js\";\nexport { ragflowDefinition } from \"./ragflow.js\";\nexport { redisDefinition } from \"./redis.js\";\nexport { remotionDefinition } from \"./remotion.js\";\nexport { resticDefinition } from \"./restic.js\";\nexport { revoltDefinition } from \"./revolt.js\";\nexport { rocketchatDefinition } from \"./rocketchat.js\";\nexport { saleorDefinition } from \"./saleor.js\";\nexport { scraplingDefinition } from \"./scrapling.js\";\nexport { searxngDefinition } from \"./searxng.js\";\nexport { sentryDefinition } from \"./sentry.js\";\nexport { signozDefinition } from \"./signoz.js\";\nexport { solidityGuardDefinition } from \"./solidityguard.js\";\nexport { sonarqubeDefinition } from \"./sonarqube.js\";\nexport { stableDiffusionDefinition } from \"./stable-diffusion.js\";\nexport { steelBrowserDefinition } from \"./steel-browser.js\";\nexport { stirlingPdfDefinition } from \"./stirling-pdf.js\";\nexport { strapiDefinition } from \"./strapi.js\";\nexport { streamGatewayDefinition } from \"./stream-gateway.js\";\nexport { supabaseDefinition } from \"./supabase.js\";\nexport { supersetDefinition } from \"./superset.js\";\nexport { surrealdbDefinition } from \"./surrealdb.js\";\nexport { tabbyMlDefinition } from \"./tabby-ml.js\";\nexport { tailscaleDefinition } from \"./tailscale.js\";\nexport { tempoDefinition } from \"./tempo.js\";\nexport { temporalDefinition } from \"./temporal.js\";\nexport { textGenWebuiDefinition } from \"./text-gen-webui.js\";\nexport { timescaledbDefinition } from \"./timescaledb.js\";\nexport { traefikDefinition } from \"./traefik.js\";\nexport { twentyDefinition } from \"./twenty.js\";\nexport { umamiDefinition } from \"./umami.js\";\nexport { uptimeKumaDefinition } from \"./uptime-kuma.js\";\nexport { usesendDefinition } from \"./usesend.js\";\nexport { valkeyDefinition } from \"./valkey.js\";\nexport { vaultDefinition } from \"./vault.js\";\nexport { vaultwardenDefinition } from \"./vaultwarden.js\";\nexport { vectorLogDefinition } from \"./vector-log.js\";\nexport { vikunjaDefinition } from \"./vikunja.js\";\nexport { watchtowerDefinition } from \"./watchtower.js\";\nexport { weaviateDefinition } from \"./weaviate.js\";\nexport { whisperDefinition } from \"./whisper.js\";\nexport { wireguardDefinition } from \"./wireguard.js\";\nexport { woodpeckerCiDefinition } from \"./woodpecker-ci.js\";\nexport { xyopsDefinition } from \"./xyops.js\";\nexport { zulipDefinition } from \"./zulip.js\";\n\n// ── SaaS Boilerplates ──────────────────────────────────────────────────────\nexport { openSaasDefinition } from \"./open-saas.js\";\nexport { apptensionSaasDefinition } from \"./apptension-saas.js\";\nexport { boxyhqSaasDefinition } from \"./boxyhq-saas.js\";\nexport { ixartzSaasDefinition } from \"./ixartz-saas.js\";\nexport { cmsaasStarterDefinition } from \"./cmsaas-starter.js\";\n\nimport type { ServiceDefinition } from \"../../types.js\";\nimport { adguardHomeDefinition } from \"./adguard-home.js\";\nimport { airbyteDefinition } from \"./airbyte.js\";\nimport { airflowDefinition } from \"./airflow.js\";\nimport { anythingLlmDefinition } from \"./anything-llm.js\";\nimport { appflowyDefinition } from \"./appflowy.js\";\nimport { appwriteDefinition } from \"./appwrite.js\";\nimport { audiobookshelfDefinition } from \"./audiobookshelf.js\";\nimport { autheliaDefinition } from \"./authelia.js\";\nimport { authentikDefinition } from \"./authentik.js\";\nimport { axolotlDefinition } from \"./axolotl.js\";\nimport { baserowDefinition } from \"./baserow.js\";\nimport { beszelDefinition } from \"./beszel.js\";\nimport { browserlessDefinition } from \"./browserless.js\";\nimport { caddyDefinition } from \"./caddy.js\";\nimport { calComDefinition } from \"./cal-com.js\";\nimport { calibreWebDefinition } from \"./calibre-web.js\";\nimport { chatwootDefinition } from \"./chatwoot.js\";\nimport { chatwootWorkerDefinition } from \"./chatwoot-worker.js\";\nimport { chromadbDefinition } from \"./chromadb.js\";\nimport { claudeCodeDefinition } from \"./claude-code.js\";\nimport { clickhouseDefinition } from \"./clickhouse.js\";\nimport { cloudflaredDefinition } from \"./cloudflared.js\";\nimport { cockroachdbDefinition } from \"./cockroachdb.js\";\nimport { codeServerDefinition } from \"./code-server.js\";\nimport { coderDefinition } from \"./coder.js\";\nimport { codexDefinition } from \"./codex.js\";\nimport { comfyuiDefinition } from \"./comfyui.js\";\nimport { convexDefinition } from \"./convex.js\";\nimport { convexDashboardDefinition } from \"./convex-dashboard.js\";\nimport { coolifyDefinition } from \"./coolify.js\";\nimport { crowdsecDefinition } from \"./crowdsec.js\";\nimport { dagsterDefinition } from \"./dagster.js\";\nimport { desktopEnvironmentDefinition } from \"./desktop-environment.js\";\nimport { difyDefinition } from \"./dify.js\";\nimport { directusDefinition } from \"./directus.js\";\nimport { docsgptDefinition } from \"./docsgpt.js\";\nimport { dokployDefinition } from \"./dokploy.js\";\nimport { dozzleDefinition } from \"./dozzle.js\";\nimport { dragonflyDefinition } from \"./dragonfly.js\";\nimport { droneCiDefinition } from \"./drone-ci.js\";\nimport { duplicatiDefinition } from \"./duplicati.js\";\nimport { elementWebDefinition } from \"./element-web.js\";\nimport { excalidrawDefinition } from \"./excalidraw.js\";\nimport { ffmpegDefinition } from \"./ffmpeg.js\";\nimport { firecrawlDefinition } from \"./firecrawl.js\";\nimport { firecrawlPlaywrightDefinition } from \"./firecrawl-playwright.js\";\nimport { flagsmithDefinition } from \"./flagsmith.js\";\nimport { flowiseDefinition } from \"./flowise.js\";\nimport { focalboardDefinition } from \"./focalboard.js\";\nimport { fonosterDefinition } from \"./fonoster.js\";\nimport { forgejoDefinition } from \"./forgejo.js\";\nimport { formbricksDefinition } from \"./formbricks.js\";\nimport { geminiCliDefinition } from \"./gemini-cli.js\";\nimport { ghostDefinition } from \"./ghost.js\";\nimport { giteaDefinition } from \"./gitea.js\";\nimport { gotifyDefinition } from \"./gotify.js\";\nimport { grafanaDefinition } from \"./grafana.js\";\nimport { graylogDefinition } from \"./graylog.js\";\nimport { headscaleDefinition } from \"./headscale.js\";\nimport { hedgedocDefinition } from \"./hedgedoc.js\";\nimport { hexstrikeDefinition } from \"./hexstrike.js\";\nimport { heyformDefinition } from \"./heyform.js\";\nimport { homeassistantDefinition } from \"./homeassistant.js\";\nimport { hoppscotchDefinition } from \"./hoppscotch.js\";\nimport { immichDefinition } from \"./immich.js\";\nimport { infisicalDefinition } from \"./infisical.js\";\nimport { influxdbDefinition } from \"./influxdb.js\";\nimport { invokeAiDefinition } from \"./invoke-ai.js\";\nimport { jaegerDefinition } from \"./jaeger.js\";\nimport { janDefinition } from \"./jan.js\";\nimport { jellyfinDefinition } from \"./jellyfin.js\";\nimport { jenkinsDefinition } from \"./jenkins.js\";\nimport { jitsiMeetDefinition } from \"./jitsi-meet.js\";\nimport { keycloakDefinition } from \"./keycloak.js\";\nimport { kimiDefinition } from \"./kimi.js\";\nimport { kongDefinition } from \"./kong.js\";\nimport { lagoDefinition } from \"./lago.js\";\nimport { langflowDefinition } from \"./langflow.js\";\nimport { langfuseDefinition } from \"./langfuse.js\";\nimport { lasuiteMeetAgentsDefinition } from \"./lasuite-meet-agents.js\";\nimport { lasuiteMeetBackendDefinition } from \"./lasuite-meet-backend.js\";\nimport { lasuiteMeetFrontendDefinition } from \"./lasuite-meet-frontend.js\";\nimport { librechatDefinition } from \"./librechat.js\";\nimport { lightpandaDefinition } from \"./lightpanda.js\";\nimport { listmonkDefinition } from \"./listmonk.js\";\nimport { litellmDefinition } from \"./litellm.js\";\nimport { livekitDefinition } from \"./livekit.js\";\nimport { localAiDefinition } from \"./local-ai.js\";\nimport { lokiDefinition } from \"./loki.js\";\nimport { mariadbDefinition } from \"./mariadb.js\";\nimport { matomoDefinition } from \"./matomo.js\";\nimport { matrixSynapseDefinition } from \"./matrix-synapse.js\";\nimport { mattermostDefinition } from \"./mattermost.js\";\nimport { mauticDefinition } from \"./mautic.js\";\nimport { medusaDefinition } from \"./medusa.js\";\nimport { meilisearchDefinition } from \"./meilisearch.js\";\nimport { metabaseDefinition } from \"./metabase.js\";\nimport { milvusDefinition } from \"./milvus.js\";\nimport { minioDefinition } from \"./minio.js\";\nimport { missionControlDefinition } from \"./mission-control.js\";\nimport { mixpostDefinition } from \"./mixpost.js\";\nimport { mosquittoDefinition } from \"./mosquitto.js\";\nimport { motionCanvasDefinition } from \"./motion-canvas.js\";\nimport { mysqlDefinition } from \"./mysql.js\";\nimport { n8nDefinition } from \"./n8n.js\";\nimport { navidromeDefinition } from \"./navidrome.js\";\nimport { neo4jDefinition } from \"./neo4j.js\";\nimport { nextcloudDefinition } from \"./nextcloud.js\";\nimport { nginxProxyManagerDefinition } from \"./nginx-proxy-manager.js\";\nimport { nocodbDefinition } from \"./nocodb.js\";\nimport { nodeRedDefinition } from \"./node-red.js\";\nimport { ntfyDefinition } from \"./ntfy.js\";\nimport { ollamaDefinition } from \"./ollama.js\";\nimport { openWebuiDefinition } from \"./open-webui.js\";\nimport { opencodeDefinition } from \"./opencode.js\";\nimport { openhandsDefinition } from \"./openhands.js\";\nimport { openpanelDefinition } from \"./openpanel.js\";\nimport { opensearchDefinition } from \"./opensearch.js\";\nimport { outlineDefinition } from \"./outline.js\";\nimport { paperlessNgxDefinition } from \"./paperless-ngx.js\";\nimport { pentagiDefinition } from \"./pentagi.js\";\nimport { pentestagentDefinition } from \"./pentestagent.js\";\nimport { photoprismDefinition } from \"./photoprism.js\";\nimport { piholeDefinition } from \"./pihole.js\";\nimport { piperTtsDefinition } from \"./piper-tts.js\";\nimport { planeDefinition } from \"./plane.js\";\nimport { plausibleDefinition } from \"./plausible.js\";\nimport { playwrightServerDefinition } from \"./playwright-server.js\";\nimport { pocketIdDefinition } from \"./pocket-id.js\";\nimport { pocketbaseDefinition } from \"./pocketbase.js\";\nimport { portainerDefinition } from \"./portainer.js\";\nimport { postgresqlDefinition } from \"./postgresql.js\";\nimport { posthogDefinition } from \"./posthog.js\";\nimport { postizDefinition } from \"./postiz.js\";\nimport { prometheusDefinition } from \"./prometheus.js\";\nimport { qdrantDefinition } from \"./qdrant.js\";\nimport { rabbitmqDefinition } from \"./rabbitmq.js\";\nimport { ragflowDefinition } from \"./ragflow.js\";\nimport { redisDefinition } from \"./redis.js\";\nimport { remotionDefinition } from \"./remotion.js\";\nimport { resticDefinition } from \"./restic.js\";\nimport { revoltDefinition } from \"./revolt.js\";\nimport { rocketchatDefinition } from \"./rocketchat.js\";\nimport { saleorDefinition } from \"./saleor.js\";\nimport { scraplingDefinition } from \"./scrapling.js\";\nimport { searxngDefinition } from \"./searxng.js\";\nimport { sentryDefinition } from \"./sentry.js\";\nimport { signozDefinition } from \"./signoz.js\";\nimport { solidityGuardDefinition } from \"./solidityguard.js\";\nimport { sonarqubeDefinition } from \"./sonarqube.js\";\nimport { stableDiffusionDefinition } from \"./stable-diffusion.js\";\nimport { steelBrowserDefinition } from \"./steel-browser.js\";\nimport { stirlingPdfDefinition } from \"./stirling-pdf.js\";\nimport { strapiDefinition } from \"./strapi.js\";\nimport { streamGatewayDefinition } from \"./stream-gateway.js\";\nimport { supabaseDefinition } from \"./supabase.js\";\nimport { supersetDefinition } from \"./superset.js\";\nimport { surrealdbDefinition } from \"./surrealdb.js\";\nimport { tabbyMlDefinition } from \"./tabby-ml.js\";\nimport { tailscaleDefinition } from \"./tailscale.js\";\nimport { tempoDefinition } from \"./tempo.js\";\nimport { temporalDefinition } from \"./temporal.js\";\nimport { textGenWebuiDefinition } from \"./text-gen-webui.js\";\nimport { timescaledbDefinition } from \"./timescaledb.js\";\nimport { traefikDefinition } from \"./traefik.js\";\nimport { twentyDefinition } from \"./twenty.js\";\nimport { umamiDefinition } from \"./umami.js\";\nimport { uptimeKumaDefinition } from \"./uptime-kuma.js\";\nimport { usesendDefinition } from \"./usesend.js\";\nimport { valkeyDefinition } from \"./valkey.js\";\nimport { vaultDefinition } from \"./vault.js\";\nimport { vaultwardenDefinition } from \"./vaultwarden.js\";\nimport { vectorLogDefinition } from \"./vector-log.js\";\nimport { vikunjaDefinition } from \"./vikunja.js\";\nimport { watchtowerDefinition } from \"./watchtower.js\";\nimport { weaviateDefinition } from \"./weaviate.js\";\nimport { whisperDefinition } from \"./whisper.js\";\nimport { wireguardDefinition } from \"./wireguard.js\";\nimport { woodpeckerCiDefinition } from \"./woodpecker-ci.js\";\nimport { xyopsDefinition } from \"./xyops.js\";\nimport { zulipDefinition } from \"./zulip.js\";\n\n// ── SaaS Boilerplates ──────────────────────────────────────────────────────\nimport { openSaasDefinition } from \"./open-saas.js\";\nimport { apptensionSaasDefinition } from \"./apptension-saas.js\";\nimport { boxyhqSaasDefinition } from \"./boxyhq-saas.js\";\nimport { ixartzSaasDefinition } from \"./ixartz-saas.js\";\nimport { cmsaasStarterDefinition } from \"./cmsaas-starter.js\";\n\nexport const allServiceDefinitions: ServiceDefinition[] = [\n\tredisDefinition,\n\tqdrantDefinition,\n\tn8nDefinition,\n\tffmpegDefinition,\n\tminioDefinition,\n\tpostgresqlDefinition,\n\tcaddyDefinition,\n\ttraefikDefinition,\n\tuptimeKumaDefinition,\n\tgrafanaDefinition,\n\tprometheusDefinition,\n\tbrowserlessDefinition,\n\tfirecrawlDefinition,\n\tfirecrawlPlaywrightDefinition,\n\tsearxngDefinition,\n\tmeilisearchDefinition,\n\topensearchDefinition,\n\tollamaDefinition,\n\twhisperDefinition,\n\tchromadbDefinition,\n\tweaviateDefinition,\n\tvalkeyDefinition,\n\tgotifyDefinition,\n\tntfyDefinition,\n\trabbitmqDefinition,\n\tremotionDefinition,\n\tmotionCanvasDefinition,\n\ttemporalDefinition,\n\toutlineDefinition,\n\tdocsgptDefinition,\n\tpaperlessNgxDefinition,\n\tnocodbDefinition,\n\tappflowyDefinition,\n\tdirectusDefinition,\n\tstirlingPdfDefinition,\n\tstrapiDefinition,\n\tmatrixSynapseDefinition,\n\trocketchatDefinition,\n\tmattermostDefinition,\n\tchatwootDefinition,\n\tchatwootWorkerDefinition,\n\tstableDiffusionDefinition,\n\tcomfyuiDefinition,\n\tplaywrightServerDefinition,\n\topenWebuiDefinition,\n\tlangflowDefinition,\n\tragflowDefinition,\n\thomeassistantDefinition,\n\tnextcloudDefinition,\n\timmichDefinition,\n\tjellyfinDefinition,\n\tvaultwardenDefinition,\n\tmilvusDefinition,\n\tjenkinsDefinition,\n\tappwriteDefinition,\n\tauthentikDefinition,\n\tautheliaDefinition,\n\tcrowdsecDefinition,\n\tghostDefinition,\n\tlokiDefinition,\n\tsignozDefinition,\n\tsupabaseDefinition,\n\tpocketbaseDefinition,\n\tpocketIdDefinition,\n\tlibrechatDefinition,\n\tanythingLlmDefinition,\n\tdifyDefinition,\n\tflowiseDefinition,\n\tlitellmDefinition,\n\tflagsmithDefinition,\n\tgiteaDefinition,\n\tcodeServerDefinition,\n\tportainerDefinition,\n\twatchtowerDefinition,\n\tdozzleDefinition,\n\tbeszelDefinition,\n\tconvexDefinition,\n\tconvexDashboardDefinition,\n\tclaudeCodeDefinition,\n\topencodeDefinition,\n\tcodexDefinition,\n\tgeminiCliDefinition,\n\tkimiDefinition,\n\tpostizDefinition,\n\tmixpostDefinition,\n\tmatomoDefinition,\n\tumamiDefinition,\n\tusesendDefinition,\n\tlistmonkDefinition,\n\tmissionControlDefinition,\n\topenpanelDefinition,\n\tlightpandaDefinition,\n\tsteelBrowserDefinition,\n\tcoolifyDefinition,\n\tdokployDefinition,\n\ttailscaleDefinition,\n\tlivekitDefinition,\n\tinfisicalDefinition,\n\tkeycloakDefinition,\n\tlasuiteMeetBackendDefinition,\n\tlasuiteMeetFrontendDefinition,\n\tlasuiteMeetAgentsDefinition,\n\tdesktopEnvironmentDefinition,\n\tstreamGatewayDefinition,\n\tneo4jDefinition,\n\tcalComDefinition,\n\txyopsDefinition,\n\tscraplingDefinition,\n\thexstrikeDefinition,\n\tsolidityGuardDefinition,\n\tpentagiDefinition,\n\tpentestagentDefinition,\n\theadscaleDefinition,\n\tmysqlDefinition,\n\tmariadbDefinition,\n\t// ── New Services ──────────────────────────────────────────────────────────\n\tlangfuseDefinition,\n\topenhandsDefinition,\n\tairflowDefinition,\n\tairbyteDefinition,\n\tdagsterDefinition,\n\tlagoDefinition,\n\ttwentyDefinition,\n\tmauticDefinition,\n\tformbricksDefinition,\n\theyformDefinition,\n\tkongDefinition,\n\thoppscotchDefinition,\n\tvaultDefinition,\n\tresticDefinition,\n\tduplicatiDefinition,\n\tfonosterDefinition,\n\tmedusaDefinition,\n\tsaleorDefinition,\n\taxolotlDefinition,\n\thedgedocDefinition,\n\texcalidrawDefinition,\n\tjitsiMeetDefinition,\n\tzulipDefinition,\n\telementWebDefinition,\n\trevoltDefinition,\n\tdragonflyDefinition,\n\tsurrealdbDefinition,\n\tinfluxdbDefinition,\n\ttimescaledbDefinition,\n\tcockroachdbDefinition,\n\tsentryDefinition,\n\tjaegerDefinition,\n\ttempoDefinition,\n\tgraylogDefinition,\n\tvectorLogDefinition,\n\t// ── Batch 2: New Service Definitions ──────────────────────────────────\n\tadguardHomeDefinition,\n\taudiobookshelfDefinition,\n\tbaserowDefinition,\n\tcalibreWebDefinition,\n\tclickhouseDefinition,\n\tcloudflaredDefinition,\n\tcoderDefinition,\n\tdroneCiDefinition,\n\tfocalboardDefinition,\n\tforgejoDefinition,\n\tinvokeAiDefinition,\n\tjanDefinition,\n\tlocalAiDefinition,\n\tmetabaseDefinition,\n\tmosquittoDefinition,\n\tnavidromeDefinition,\n\tnginxProxyManagerDefinition,\n\tnodeRedDefinition,\n\tphotoprismDefinition,\n\tpiholeDefinition,\n\tpiperTtsDefinition,\n\tplaneDefinition,\n\tplausibleDefinition,\n\tposthogDefinition,\n\tsonarqubeDefinition,\n\tsupersetDefinition,\n\ttabbyMlDefinition,\n\ttextGenWebuiDefinition,\n\tvikunjaDefinition,\n\twireguardDefinition,\n\twoodpeckerCiDefinition,\n\t// ── SaaS Boilerplates ────────────────────────────────────────────────────\n\topenSaasDefinition,\n\tapptensionSaasDefinition,\n\tboxyhqSaasDefinition,\n\tixartzSaasDefinition,\n\tcmsaasStarterDefinition,\n];\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2XA,MAAa,wBAA6C;CACzD;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CAEA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CAEA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CAEA;CACA;CACA;CACA;CACA;CACA"}
|
|
1
|
+
{"version":3,"file":"index.mjs","names":[],"sources":["../../../src/services/definitions/index.ts"],"sourcesContent":["export { adguardHomeDefinition } from \"./adguard-home.js\";\nexport { airbyteDefinition } from \"./airbyte.js\";\nexport { airflowDefinition } from \"./airflow.js\";\nexport { anythingLlmDefinition } from \"./anything-llm.js\";\nexport { appflowyDefinition } from \"./appflowy.js\";\nexport { appwriteDefinition } from \"./appwrite.js\";\nexport { audiobookshelfDefinition } from \"./audiobookshelf.js\";\nexport { autheliaDefinition } from \"./authelia.js\";\nexport { authentikDefinition } from \"./authentik.js\";\nexport { axolotlDefinition } from \"./axolotl.js\";\nexport { baserowDefinition } from \"./baserow.js\";\nexport { beszelDefinition } from \"./beszel.js\";\nexport { browserlessDefinition } from \"./browserless.js\";\nexport { burnlinkDefinition } from \"./burnlink.js\";\nexport { caddyDefinition } from \"./caddy.js\";\nexport { calComDefinition } from \"./cal-com.js\";\nexport { calibreWebDefinition } from \"./calibre-web.js\";\nexport { chatwootDefinition } from \"./chatwoot.js\";\nexport { chatwootWorkerDefinition } from \"./chatwoot-worker.js\";\nexport { chromadbDefinition } from \"./chromadb.js\";\nexport { claudeCodeDefinition } from \"./claude-code.js\";\nexport { clickhouseDefinition } from \"./clickhouse.js\";\nexport { cloudflaredDefinition } from \"./cloudflared.js\";\nexport { cockroachdbDefinition } from \"./cockroachdb.js\";\nexport { codeServerDefinition } from \"./code-server.js\";\nexport { coderDefinition } from \"./coder.js\";\nexport { codexDefinition } from \"./codex.js\";\nexport { comfyuiDefinition } from \"./comfyui.js\";\nexport { convexDefinition } from \"./convex.js\";\nexport { convexDashboardDefinition } from \"./convex-dashboard.js\";\nexport { coolifyDefinition } from \"./coolify.js\";\nexport { crowdsecDefinition } from \"./crowdsec.js\";\nexport { dagsterDefinition } from \"./dagster.js\";\nexport { desktopEnvironmentDefinition } from \"./desktop-environment.js\";\nexport { difyDefinition } from \"./dify.js\";\nexport { directusDefinition } from \"./directus.js\";\nexport { docsgptDefinition } from \"./docsgpt.js\";\nexport { dokployDefinition } from \"./dokploy.js\";\nexport { dozzleDefinition } from \"./dozzle.js\";\nexport { dragonflyDefinition } from \"./dragonfly.js\";\nexport { droneCiDefinition } from \"./drone-ci.js\";\nexport { duplicatiDefinition } from \"./duplicati.js\";\nexport { elementWebDefinition } from \"./element-web.js\";\nexport { excalidrawDefinition } from \"./excalidraw.js\";\nexport { ffmpegDefinition } from \"./ffmpeg.js\";\nexport { firecrawlDefinition } from \"./firecrawl.js\";\nexport { firecrawlPlaywrightDefinition } from \"./firecrawl-playwright.js\";\nexport { flagsmithDefinition } from \"./flagsmith.js\";\nexport { flowiseDefinition } from \"./flowise.js\";\nexport { focalboardDefinition } from \"./focalboard.js\";\nexport { fonosterDefinition } from \"./fonoster.js\";\nexport { forgejoDefinition } from \"./forgejo.js\";\nexport { formbricksDefinition } from \"./formbricks.js\";\nexport { geminiCliDefinition } from \"./gemini-cli.js\";\nexport { ghostDefinition } from \"./ghost.js\";\nexport { giteaDefinition } from \"./gitea.js\";\nexport { gotifyDefinition } from \"./gotify.js\";\nexport { grafanaDefinition } from \"./grafana.js\";\nexport { graylogDefinition } from \"./graylog.js\";\nexport { headscaleDefinition } from \"./headscale.js\";\nexport { hedgedocDefinition } from \"./hedgedoc.js\";\nexport { hindsightDefinition } from \"./hindsight.js\";\nexport { hexstrikeDefinition } from \"./hexstrike.js\";\nexport { heyformDefinition } from \"./heyform.js\";\nexport { homeassistantDefinition } from \"./homeassistant.js\";\nexport { hoppscotchDefinition } from \"./hoppscotch.js\";\nexport { immichDefinition } from \"./immich.js\";\nexport { infisicalDefinition } from \"./infisical.js\";\nexport { influxdbDefinition } from \"./influxdb.js\";\nexport { invokeAiDefinition } from \"./invoke-ai.js\";\nexport { jaegerDefinition } from \"./jaeger.js\";\nexport { janDefinition } from \"./jan.js\";\nexport { jellyfinDefinition } from \"./jellyfin.js\";\nexport { jenkinsDefinition } from \"./jenkins.js\";\nexport { jitsiMeetDefinition } from \"./jitsi-meet.js\";\nexport { keycloakDefinition } from \"./keycloak.js\";\nexport { kimiDefinition } from \"./kimi.js\";\nexport { kongDefinition } from \"./kong.js\";\nexport { lagoDefinition } from \"./lago.js\";\nexport { langflowDefinition } from \"./langflow.js\";\nexport { langfuseDefinition } from \"./langfuse.js\";\nexport { lasuiteMeetAgentsDefinition } from \"./lasuite-meet-agents.js\";\nexport { lasuiteMeetBackendDefinition } from \"./lasuite-meet-backend.js\";\nexport { lasuiteMeetFrontendDefinition } from \"./lasuite-meet-frontend.js\";\nexport { librechatDefinition } from \"./librechat.js\";\nexport { lightpandaDefinition } from \"./lightpanda.js\";\nexport { listmonkDefinition } from \"./listmonk.js\";\nexport { litellmDefinition } from \"./litellm.js\";\nexport { livekitDefinition } from \"./livekit.js\";\nexport { localAiDefinition } from \"./local-ai.js\";\nexport { lokiDefinition } from \"./loki.js\";\nexport { mariadbDefinition } from \"./mariadb.js\";\nexport { matomoDefinition } from \"./matomo.js\";\nexport { matrixSynapseDefinition } from \"./matrix-synapse.js\";\nexport { mattermostDefinition } from \"./mattermost.js\";\nexport { mauticDefinition } from \"./mautic.js\";\nexport { medusaDefinition } from \"./medusa.js\";\nexport { meilisearchDefinition } from \"./meilisearch.js\";\nexport { metabaseDefinition } from \"./metabase.js\";\nexport { milvusDefinition } from \"./milvus.js\";\nexport { minioDefinition } from \"./minio.js\";\nexport { missionControlDefinition } from \"./mission-control.js\";\nexport { mixpostDefinition } from \"./mixpost.js\";\nexport { mosquittoDefinition } from \"./mosquitto.js\";\nexport { motionCanvasDefinition } from \"./motion-canvas.js\";\nexport { mysqlDefinition } from \"./mysql.js\";\nexport { n8nDefinition } from \"./n8n.js\";\nexport { navidromeDefinition } from \"./navidrome.js\";\nexport { neo4jDefinition } from \"./neo4j.js\";\nexport { nextcloudDefinition } from \"./nextcloud.js\";\nexport { nginxProxyManagerDefinition } from \"./nginx-proxy-manager.js\";\nexport { nocodbDefinition } from \"./nocodb.js\";\nexport { nodeRedDefinition } from \"./node-red.js\";\nexport { ntfyDefinition } from \"./ntfy.js\";\nexport { ollamaDefinition } from \"./ollama.js\";\nexport { openWebuiDefinition } from \"./open-webui.js\";\nexport { opencodeDefinition } from \"./opencode.js\";\nexport { openhandsDefinition } from \"./openhands.js\";\nexport { openpanelDefinition } from \"./openpanel.js\";\nexport { opensandboxDefinition } from \"./opensandbox.js\";\nexport { opensearchDefinition } from \"./opensearch.js\";\nexport { outlineDefinition } from \"./outline.js\";\nexport { paperlessNgxDefinition } from \"./paperless-ngx.js\";\nexport { pentagiDefinition } from \"./pentagi.js\";\nexport { pentestagentDefinition } from \"./pentestagent.js\";\nexport { photoprismDefinition } from \"./photoprism.js\";\nexport { piholeDefinition } from \"./pihole.js\";\nexport { piperTtsDefinition } from \"./piper-tts.js\";\nexport { planeDefinition } from \"./plane.js\";\nexport { plausibleDefinition } from \"./plausible.js\";\nexport { playwrightServerDefinition } from \"./playwright-server.js\";\nexport { pocketIdDefinition } from \"./pocket-id.js\";\nexport { pocketbaseDefinition } from \"./pocketbase.js\";\nexport { portainerDefinition } from \"./portainer.js\";\nexport { postgresqlDefinition } from \"./postgresql.js\";\nexport { posthogDefinition } from \"./posthog.js\";\nexport { postizDefinition } from \"./postiz.js\";\nexport { prometheusDefinition } from \"./prometheus.js\";\nexport { qdrantDefinition } from \"./qdrant.js\";\nexport { rabbitmqDefinition } from \"./rabbitmq.js\";\nexport { ragflowDefinition } from \"./ragflow.js\";\nexport { redisDefinition } from \"./redis.js\";\nexport { remotionDefinition } from \"./remotion.js\";\nexport { resticDefinition } from \"./restic.js\";\nexport { revoltDefinition } from \"./revolt.js\";\nexport { rocketchatDefinition } from \"./rocketchat.js\";\nexport { saleorDefinition } from \"./saleor.js\";\nexport { scraplingDefinition } from \"./scrapling.js\";\nexport { searxngDefinition } from \"./searxng.js\";\nexport { sentryDefinition } from \"./sentry.js\";\nexport { signozDefinition } from \"./signoz.js\";\nexport { solidityGuardDefinition } from \"./solidityguard.js\";\nexport { sonarqubeDefinition } from \"./sonarqube.js\";\nexport { stableDiffusionDefinition } from \"./stable-diffusion.js\";\nexport { steelBrowserDefinition } from \"./steel-browser.js\";\nexport { stirlingPdfDefinition } from \"./stirling-pdf.js\";\nexport { strapiDefinition } from \"./strapi.js\";\nexport { streamGatewayDefinition } from \"./stream-gateway.js\";\nexport { supabaseDefinition } from \"./supabase.js\";\nexport { supersetDefinition } from \"./superset.js\";\nexport { surrealdbDefinition } from \"./surrealdb.js\";\nexport { tabbyMlDefinition } from \"./tabby-ml.js\";\nexport { tailscaleDefinition } from \"./tailscale.js\";\nexport { tempoDefinition } from \"./tempo.js\";\nexport { temporalDefinition } from \"./temporal.js\";\nexport { textGenWebuiDefinition } from \"./text-gen-webui.js\";\nexport { timescaledbDefinition } from \"./timescaledb.js\";\nexport { traefikDefinition } from \"./traefik.js\";\nexport { twentyDefinition } from \"./twenty.js\";\nexport { umamiDefinition } from \"./umami.js\";\nexport { uptimeKumaDefinition } from \"./uptime-kuma.js\";\nexport { usesendDefinition } from \"./usesend.js\";\nexport { valkeyDefinition } from \"./valkey.js\";\nexport { vaultDefinition } from \"./vault.js\";\nexport { vaultwardenDefinition } from \"./vaultwarden.js\";\nexport { vectorLogDefinition } from \"./vector-log.js\";\nexport { vikunjaDefinition } from \"./vikunja.js\";\nexport { watchtowerDefinition } from \"./watchtower.js\";\nexport { weaviateDefinition } from \"./weaviate.js\";\nexport { whisperDefinition } from \"./whisper.js\";\nexport { wireguardDefinition } from \"./wireguard.js\";\nexport { woodpeckerCiDefinition } from \"./woodpecker-ci.js\";\nexport { xyopsDefinition } from \"./xyops.js\";\nexport { zulipDefinition } from \"./zulip.js\";\n\n// ── SaaS Boilerplates ──────────────────────────────────────────────────────\nexport { openSaasDefinition } from \"./open-saas.js\";\nexport { apptensionSaasDefinition } from \"./apptension-saas.js\";\nexport { boxyhqSaasDefinition } from \"./boxyhq-saas.js\";\nexport { ixartzSaasDefinition } from \"./ixartz-saas.js\";\nexport { cmsaasStarterDefinition } from \"./cmsaas-starter.js\";\n\nimport type { ServiceDefinition } from \"../../types.js\";\nimport { adguardHomeDefinition } from \"./adguard-home.js\";\nimport { airbyteDefinition } from \"./airbyte.js\";\nimport { airflowDefinition } from \"./airflow.js\";\nimport { anythingLlmDefinition } from \"./anything-llm.js\";\nimport { appflowyDefinition } from \"./appflowy.js\";\nimport { appwriteDefinition } from \"./appwrite.js\";\nimport { audiobookshelfDefinition } from \"./audiobookshelf.js\";\nimport { autheliaDefinition } from \"./authelia.js\";\nimport { authentikDefinition } from \"./authentik.js\";\nimport { axolotlDefinition } from \"./axolotl.js\";\nimport { baserowDefinition } from \"./baserow.js\";\nimport { beszelDefinition } from \"./beszel.js\";\nimport { browserlessDefinition } from \"./browserless.js\";\nimport { burnlinkDefinition } from \"./burnlink.js\";\nimport { caddyDefinition } from \"./caddy.js\";\nimport { calComDefinition } from \"./cal-com.js\";\nimport { calibreWebDefinition } from \"./calibre-web.js\";\nimport { chatwootDefinition } from \"./chatwoot.js\";\nimport { chatwootWorkerDefinition } from \"./chatwoot-worker.js\";\nimport { chromadbDefinition } from \"./chromadb.js\";\nimport { claudeCodeDefinition } from \"./claude-code.js\";\nimport { clickhouseDefinition } from \"./clickhouse.js\";\nimport { cloudflaredDefinition } from \"./cloudflared.js\";\nimport { cockroachdbDefinition } from \"./cockroachdb.js\";\nimport { codeServerDefinition } from \"./code-server.js\";\nimport { coderDefinition } from \"./coder.js\";\nimport { codexDefinition } from \"./codex.js\";\nimport { comfyuiDefinition } from \"./comfyui.js\";\nimport { convexDefinition } from \"./convex.js\";\nimport { convexDashboardDefinition } from \"./convex-dashboard.js\";\nimport { coolifyDefinition } from \"./coolify.js\";\nimport { crowdsecDefinition } from \"./crowdsec.js\";\nimport { dagsterDefinition } from \"./dagster.js\";\nimport { desktopEnvironmentDefinition } from \"./desktop-environment.js\";\nimport { difyDefinition } from \"./dify.js\";\nimport { directusDefinition } from \"./directus.js\";\nimport { docsgptDefinition } from \"./docsgpt.js\";\nimport { dokployDefinition } from \"./dokploy.js\";\nimport { dozzleDefinition } from \"./dozzle.js\";\nimport { dragonflyDefinition } from \"./dragonfly.js\";\nimport { droneCiDefinition } from \"./drone-ci.js\";\nimport { duplicatiDefinition } from \"./duplicati.js\";\nimport { elementWebDefinition } from \"./element-web.js\";\nimport { excalidrawDefinition } from \"./excalidraw.js\";\nimport { ffmpegDefinition } from \"./ffmpeg.js\";\nimport { firecrawlDefinition } from \"./firecrawl.js\";\nimport { firecrawlPlaywrightDefinition } from \"./firecrawl-playwright.js\";\nimport { flagsmithDefinition } from \"./flagsmith.js\";\nimport { flowiseDefinition } from \"./flowise.js\";\nimport { focalboardDefinition } from \"./focalboard.js\";\nimport { fonosterDefinition } from \"./fonoster.js\";\nimport { forgejoDefinition } from \"./forgejo.js\";\nimport { formbricksDefinition } from \"./formbricks.js\";\nimport { geminiCliDefinition } from \"./gemini-cli.js\";\nimport { ghostDefinition } from \"./ghost.js\";\nimport { giteaDefinition } from \"./gitea.js\";\nimport { gotifyDefinition } from \"./gotify.js\";\nimport { grafanaDefinition } from \"./grafana.js\";\nimport { graylogDefinition } from \"./graylog.js\";\nimport { headscaleDefinition } from \"./headscale.js\";\nimport { hedgedocDefinition } from \"./hedgedoc.js\";\nimport { hindsightDefinition } from \"./hindsight.js\";\nimport { hexstrikeDefinition } from \"./hexstrike.js\";\nimport { heyformDefinition } from \"./heyform.js\";\nimport { homeassistantDefinition } from \"./homeassistant.js\";\nimport { hoppscotchDefinition } from \"./hoppscotch.js\";\nimport { immichDefinition } from \"./immich.js\";\nimport { infisicalDefinition } from \"./infisical.js\";\nimport { influxdbDefinition } from \"./influxdb.js\";\nimport { invokeAiDefinition } from \"./invoke-ai.js\";\nimport { jaegerDefinition } from \"./jaeger.js\";\nimport { janDefinition } from \"./jan.js\";\nimport { jellyfinDefinition } from \"./jellyfin.js\";\nimport { jenkinsDefinition } from \"./jenkins.js\";\nimport { jitsiMeetDefinition } from \"./jitsi-meet.js\";\nimport { keycloakDefinition } from \"./keycloak.js\";\nimport { kimiDefinition } from \"./kimi.js\";\nimport { kongDefinition } from \"./kong.js\";\nimport { lagoDefinition } from \"./lago.js\";\nimport { langflowDefinition } from \"./langflow.js\";\nimport { langfuseDefinition } from \"./langfuse.js\";\nimport { lasuiteMeetAgentsDefinition } from \"./lasuite-meet-agents.js\";\nimport { lasuiteMeetBackendDefinition } from \"./lasuite-meet-backend.js\";\nimport { lasuiteMeetFrontendDefinition } from \"./lasuite-meet-frontend.js\";\nimport { librechatDefinition } from \"./librechat.js\";\nimport { lightpandaDefinition } from \"./lightpanda.js\";\nimport { listmonkDefinition } from \"./listmonk.js\";\nimport { litellmDefinition } from \"./litellm.js\";\nimport { livekitDefinition } from \"./livekit.js\";\nimport { localAiDefinition } from \"./local-ai.js\";\nimport { lokiDefinition } from \"./loki.js\";\nimport { mariadbDefinition } from \"./mariadb.js\";\nimport { matomoDefinition } from \"./matomo.js\";\nimport { matrixSynapseDefinition } from \"./matrix-synapse.js\";\nimport { mattermostDefinition } from \"./mattermost.js\";\nimport { mauticDefinition } from \"./mautic.js\";\nimport { medusaDefinition } from \"./medusa.js\";\nimport { meilisearchDefinition } from \"./meilisearch.js\";\nimport { metabaseDefinition } from \"./metabase.js\";\nimport { milvusDefinition } from \"./milvus.js\";\nimport { minioDefinition } from \"./minio.js\";\nimport { missionControlDefinition } from \"./mission-control.js\";\nimport { mixpostDefinition } from \"./mixpost.js\";\nimport { mosquittoDefinition } from \"./mosquitto.js\";\nimport { motionCanvasDefinition } from \"./motion-canvas.js\";\nimport { mysqlDefinition } from \"./mysql.js\";\nimport { n8nDefinition } from \"./n8n.js\";\nimport { navidromeDefinition } from \"./navidrome.js\";\nimport { neo4jDefinition } from \"./neo4j.js\";\nimport { nextcloudDefinition } from \"./nextcloud.js\";\nimport { nginxProxyManagerDefinition } from \"./nginx-proxy-manager.js\";\nimport { nocodbDefinition } from \"./nocodb.js\";\nimport { nodeRedDefinition } from \"./node-red.js\";\nimport { ntfyDefinition } from \"./ntfy.js\";\nimport { ollamaDefinition } from \"./ollama.js\";\nimport { openWebuiDefinition } from \"./open-webui.js\";\nimport { opencodeDefinition } from \"./opencode.js\";\nimport { openhandsDefinition } from \"./openhands.js\";\nimport { openpanelDefinition } from \"./openpanel.js\";\nimport { opensandboxDefinition } from \"./opensandbox.js\";\nimport { opensearchDefinition } from \"./opensearch.js\";\nimport { outlineDefinition } from \"./outline.js\";\nimport { paperlessNgxDefinition } from \"./paperless-ngx.js\";\nimport { pentagiDefinition } from \"./pentagi.js\";\nimport { pentestagentDefinition } from \"./pentestagent.js\";\nimport { photoprismDefinition } from \"./photoprism.js\";\nimport { piholeDefinition } from \"./pihole.js\";\nimport { piperTtsDefinition } from \"./piper-tts.js\";\nimport { planeDefinition } from \"./plane.js\";\nimport { plausibleDefinition } from \"./plausible.js\";\nimport { playwrightServerDefinition } from \"./playwright-server.js\";\nimport { pocketIdDefinition } from \"./pocket-id.js\";\nimport { pocketbaseDefinition } from \"./pocketbase.js\";\nimport { portainerDefinition } from \"./portainer.js\";\nimport { postgresqlDefinition } from \"./postgresql.js\";\nimport { posthogDefinition } from \"./posthog.js\";\nimport { postizDefinition } from \"./postiz.js\";\nimport { prometheusDefinition } from \"./prometheus.js\";\nimport { qdrantDefinition } from \"./qdrant.js\";\nimport { rabbitmqDefinition } from \"./rabbitmq.js\";\nimport { ragflowDefinition } from \"./ragflow.js\";\nimport { redisDefinition } from \"./redis.js\";\nimport { remotionDefinition } from \"./remotion.js\";\nimport { resticDefinition } from \"./restic.js\";\nimport { revoltDefinition } from \"./revolt.js\";\nimport { rocketchatDefinition } from \"./rocketchat.js\";\nimport { saleorDefinition } from \"./saleor.js\";\nimport { scraplingDefinition } from \"./scrapling.js\";\nimport { searxngDefinition } from \"./searxng.js\";\nimport { sentryDefinition } from \"./sentry.js\";\nimport { signozDefinition } from \"./signoz.js\";\nimport { solidityGuardDefinition } from \"./solidityguard.js\";\nimport { sonarqubeDefinition } from \"./sonarqube.js\";\nimport { stableDiffusionDefinition } from \"./stable-diffusion.js\";\nimport { steelBrowserDefinition } from \"./steel-browser.js\";\nimport { stirlingPdfDefinition } from \"./stirling-pdf.js\";\nimport { strapiDefinition } from \"./strapi.js\";\nimport { streamGatewayDefinition } from \"./stream-gateway.js\";\nimport { supabaseDefinition } from \"./supabase.js\";\nimport { supersetDefinition } from \"./superset.js\";\nimport { surrealdbDefinition } from \"./surrealdb.js\";\nimport { tabbyMlDefinition } from \"./tabby-ml.js\";\nimport { tailscaleDefinition } from \"./tailscale.js\";\nimport { tempoDefinition } from \"./tempo.js\";\nimport { temporalDefinition } from \"./temporal.js\";\nimport { textGenWebuiDefinition } from \"./text-gen-webui.js\";\nimport { timescaledbDefinition } from \"./timescaledb.js\";\nimport { traefikDefinition } from \"./traefik.js\";\nimport { twentyDefinition } from \"./twenty.js\";\nimport { umamiDefinition } from \"./umami.js\";\nimport { uptimeKumaDefinition } from \"./uptime-kuma.js\";\nimport { usesendDefinition } from \"./usesend.js\";\nimport { valkeyDefinition } from \"./valkey.js\";\nimport { vaultDefinition } from \"./vault.js\";\nimport { vaultwardenDefinition } from \"./vaultwarden.js\";\nimport { vectorLogDefinition } from \"./vector-log.js\";\nimport { vikunjaDefinition } from \"./vikunja.js\";\nimport { watchtowerDefinition } from \"./watchtower.js\";\nimport { weaviateDefinition } from \"./weaviate.js\";\nimport { whisperDefinition } from \"./whisper.js\";\nimport { wireguardDefinition } from \"./wireguard.js\";\nimport { woodpeckerCiDefinition } from \"./woodpecker-ci.js\";\nimport { xyopsDefinition } from \"./xyops.js\";\nimport { zulipDefinition } from \"./zulip.js\";\n\n// ── SaaS Boilerplates ──────────────────────────────────────────────────────\nimport { openSaasDefinition } from \"./open-saas.js\";\nimport { apptensionSaasDefinition } from \"./apptension-saas.js\";\nimport { boxyhqSaasDefinition } from \"./boxyhq-saas.js\";\nimport { ixartzSaasDefinition } from \"./ixartz-saas.js\";\nimport { cmsaasStarterDefinition } from \"./cmsaas-starter.js\";\n\nexport const allServiceDefinitions: ServiceDefinition[] = [\n\tredisDefinition,\n\tqdrantDefinition,\n\tn8nDefinition,\n\tffmpegDefinition,\n\tminioDefinition,\n\tpostgresqlDefinition,\n\tcaddyDefinition,\n\ttraefikDefinition,\n\tuptimeKumaDefinition,\n\tgrafanaDefinition,\n\tprometheusDefinition,\n\tbrowserlessDefinition,\n\tfirecrawlDefinition,\n\tfirecrawlPlaywrightDefinition,\n\tsearxngDefinition,\n\tmeilisearchDefinition,\n\topensearchDefinition,\n\tollamaDefinition,\n\twhisperDefinition,\n\tchromadbDefinition,\n\tweaviateDefinition,\n\tvalkeyDefinition,\n\tgotifyDefinition,\n\tntfyDefinition,\n\trabbitmqDefinition,\n\tremotionDefinition,\n\tmotionCanvasDefinition,\n\ttemporalDefinition,\n\toutlineDefinition,\n\tdocsgptDefinition,\n\tpaperlessNgxDefinition,\n\tnocodbDefinition,\n\tappflowyDefinition,\n\tdirectusDefinition,\n\tstirlingPdfDefinition,\n\tstrapiDefinition,\n\tmatrixSynapseDefinition,\n\trocketchatDefinition,\n\tmattermostDefinition,\n\tchatwootDefinition,\n\tchatwootWorkerDefinition,\n\tstableDiffusionDefinition,\n\tcomfyuiDefinition,\n\tplaywrightServerDefinition,\n\topenWebuiDefinition,\n\tlangflowDefinition,\n\tragflowDefinition,\n\thomeassistantDefinition,\n\tnextcloudDefinition,\n\timmichDefinition,\n\tjellyfinDefinition,\n\tvaultwardenDefinition,\n\tmilvusDefinition,\n\tjenkinsDefinition,\n\tappwriteDefinition,\n\tauthentikDefinition,\n\tautheliaDefinition,\n\tcrowdsecDefinition,\n\tghostDefinition,\n\tlokiDefinition,\n\tsignozDefinition,\n\tsupabaseDefinition,\n\tpocketbaseDefinition,\n\tpocketIdDefinition,\n\tlibrechatDefinition,\n\tanythingLlmDefinition,\n\tdifyDefinition,\n\tflowiseDefinition,\n\tlitellmDefinition,\n\tflagsmithDefinition,\n\tgiteaDefinition,\n\tcodeServerDefinition,\n\tportainerDefinition,\n\twatchtowerDefinition,\n\tdozzleDefinition,\n\tbeszelDefinition,\n\tconvexDefinition,\n\tconvexDashboardDefinition,\n\tclaudeCodeDefinition,\n\topencodeDefinition,\n\tcodexDefinition,\n\tgeminiCliDefinition,\n\tkimiDefinition,\n\tpostizDefinition,\n\tmixpostDefinition,\n\tmatomoDefinition,\n\tumamiDefinition,\n\tusesendDefinition,\n\tlistmonkDefinition,\n\tmissionControlDefinition,\n\topenpanelDefinition,\n\tlightpandaDefinition,\n\tsteelBrowserDefinition,\n\tcoolifyDefinition,\n\tdokployDefinition,\n\ttailscaleDefinition,\n\tlivekitDefinition,\n\tinfisicalDefinition,\n\tkeycloakDefinition,\n\tlasuiteMeetBackendDefinition,\n\tlasuiteMeetFrontendDefinition,\n\tlasuiteMeetAgentsDefinition,\n\tdesktopEnvironmentDefinition,\n\tstreamGatewayDefinition,\n\tneo4jDefinition,\n\tcalComDefinition,\n\txyopsDefinition,\n\tscraplingDefinition,\n\thexstrikeDefinition,\n\tsolidityGuardDefinition,\n\tpentagiDefinition,\n\tpentestagentDefinition,\n\theadscaleDefinition,\n\tmysqlDefinition,\n\tmariadbDefinition,\n\t// ── New Services ──────────────────────────────────────────────────────────\n\tlangfuseDefinition,\n\topenhandsDefinition,\n\tairflowDefinition,\n\tairbyteDefinition,\n\tdagsterDefinition,\n\tlagoDefinition,\n\ttwentyDefinition,\n\tmauticDefinition,\n\tformbricksDefinition,\n\theyformDefinition,\n\tkongDefinition,\n\thoppscotchDefinition,\n\tvaultDefinition,\n\tresticDefinition,\n\tduplicatiDefinition,\n\tfonosterDefinition,\n\tmedusaDefinition,\n\tsaleorDefinition,\n\taxolotlDefinition,\n\thedgedocDefinition,\n\texcalidrawDefinition,\n\tjitsiMeetDefinition,\n\tzulipDefinition,\n\telementWebDefinition,\n\trevoltDefinition,\n\tdragonflyDefinition,\n\tsurrealdbDefinition,\n\tinfluxdbDefinition,\n\ttimescaledbDefinition,\n\tcockroachdbDefinition,\n\tsentryDefinition,\n\tjaegerDefinition,\n\ttempoDefinition,\n\tgraylogDefinition,\n\tvectorLogDefinition,\n\t// ── Batch 2: New Service Definitions ──────────────────────────────────\n\tadguardHomeDefinition,\n\taudiobookshelfDefinition,\n\tbaserowDefinition,\n\tcalibreWebDefinition,\n\tclickhouseDefinition,\n\tcloudflaredDefinition,\n\tcoderDefinition,\n\tdroneCiDefinition,\n\tfocalboardDefinition,\n\tforgejoDefinition,\n\tinvokeAiDefinition,\n\tjanDefinition,\n\tlocalAiDefinition,\n\tmetabaseDefinition,\n\tmosquittoDefinition,\n\tnavidromeDefinition,\n\tnginxProxyManagerDefinition,\n\tnodeRedDefinition,\n\tphotoprismDefinition,\n\tpiholeDefinition,\n\tpiperTtsDefinition,\n\tplaneDefinition,\n\tplausibleDefinition,\n\tposthogDefinition,\n\tsonarqubeDefinition,\n\tsupersetDefinition,\n\ttabbyMlDefinition,\n\ttextGenWebuiDefinition,\n\tvikunjaDefinition,\n\twireguardDefinition,\n\twoodpeckerCiDefinition,\n\t// ── New Integrations ────────────────────────────────────────────────────\n\thindsightDefinition,\n\tburnlinkDefinition,\n\topensandboxDefinition,\n\t// ── SaaS Boilerplates ────────────────────────────────────────────────────\n\topenSaasDefinition,\n\tapptensionSaasDefinition,\n\tboxyhqSaasDefinition,\n\tixartzSaasDefinition,\n\tcmsaasStarterDefinition,\n];\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiYA,MAAa,wBAA6C;CACzD;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CAEA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CAEA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CAEA;CACA;CACA;CAEA;CACA;CACA;CACA;CACA;CACA"}
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
//#region src/services/definitions/opensandbox.ts
|
|
3
|
+
const opensandboxDefinition = {
|
|
4
|
+
id: "opensandbox",
|
|
5
|
+
name: "OpenSandbox",
|
|
6
|
+
description: "Secure containerized code execution for AI agents. Multi-language sandboxes (Python, JS/TS, Java, Go, Bash) with file operations, resource limits, and network isolation.",
|
|
7
|
+
category: "dev-tools",
|
|
8
|
+
icon: "📦",
|
|
9
|
+
image: "opensandbox/server",
|
|
10
|
+
imageTag: "v1.0.6",
|
|
11
|
+
ports: [{
|
|
12
|
+
host: 8080,
|
|
13
|
+
container: 8080,
|
|
14
|
+
description: "OpenSandbox Lifecycle API (FastAPI)",
|
|
15
|
+
exposed: true
|
|
16
|
+
}],
|
|
17
|
+
volumes: [{
|
|
18
|
+
name: "/var/run/docker.sock",
|
|
19
|
+
containerPath: "/var/run/docker.sock",
|
|
20
|
+
description: "Docker socket (required for managing sandbox containers)"
|
|
21
|
+
}, {
|
|
22
|
+
name: "./sandbox.toml",
|
|
23
|
+
containerPath: "/root/.sandbox.toml:ro",
|
|
24
|
+
description: "OpenSandbox configuration file (read-only bind mount)"
|
|
25
|
+
}],
|
|
26
|
+
environment: [
|
|
27
|
+
{
|
|
28
|
+
key: "OPEN_SANDBOX_API_KEY",
|
|
29
|
+
defaultValue: "",
|
|
30
|
+
secret: true,
|
|
31
|
+
description: "API key for OpenSandbox lifecycle API authentication (min 32 chars)",
|
|
32
|
+
required: true
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
key: "OPENSANDBOX_LOG_LEVEL",
|
|
36
|
+
defaultValue: "INFO",
|
|
37
|
+
secret: false,
|
|
38
|
+
description: "Log verbosity (DEBUG, INFO, WARNING, ERROR)",
|
|
39
|
+
required: false
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
key: "OPENSANDBOX_RUNTIME_TYPE",
|
|
43
|
+
defaultValue: "docker",
|
|
44
|
+
secret: false,
|
|
45
|
+
description: "Runtime backend (always docker for VPS deployments)",
|
|
46
|
+
required: false
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
key: "OPENSANDBOX_EXECD_IMAGE",
|
|
50
|
+
defaultValue: "opensandbox/execd:v1.0.6",
|
|
51
|
+
secret: false,
|
|
52
|
+
description: "Execution daemon image injected into sandbox containers",
|
|
53
|
+
required: false
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
key: "OPENSANDBOX_NETWORK_MODE",
|
|
57
|
+
defaultValue: "bridge",
|
|
58
|
+
secret: false,
|
|
59
|
+
description: "Container networking mode (always bridge for isolation)",
|
|
60
|
+
required: false
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
key: "OPENSANDBOX_PIDS_LIMIT",
|
|
64
|
+
defaultValue: "512",
|
|
65
|
+
secret: false,
|
|
66
|
+
description: "Max PIDs per sandbox (fork bomb protection)",
|
|
67
|
+
required: false
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
key: "OPENSANDBOX_NO_NEW_PRIVILEGES",
|
|
71
|
+
defaultValue: "true",
|
|
72
|
+
secret: false,
|
|
73
|
+
description: "Security: prevent privilege escalation in sandboxes",
|
|
74
|
+
required: false
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
key: "OPENSANDBOX_SECURE_RUNTIME",
|
|
78
|
+
defaultValue: "gvisor",
|
|
79
|
+
secret: false,
|
|
80
|
+
description: "Secure container runtime (gVisor for sandbox isolation)",
|
|
81
|
+
required: false
|
|
82
|
+
}
|
|
83
|
+
],
|
|
84
|
+
healthcheck: {
|
|
85
|
+
test: "curl --fail http://localhost:8080/health || exit 1",
|
|
86
|
+
interval: "30s",
|
|
87
|
+
timeout: "10s",
|
|
88
|
+
retries: 3,
|
|
89
|
+
startPeriod: "15s"
|
|
90
|
+
},
|
|
91
|
+
dependsOn: [],
|
|
92
|
+
restartPolicy: "unless-stopped",
|
|
93
|
+
networks: ["openclaw-network"],
|
|
94
|
+
skills: [{
|
|
95
|
+
skillId: "code-sandbox",
|
|
96
|
+
autoInstall: true
|
|
97
|
+
}],
|
|
98
|
+
openclawEnvVars: [
|
|
99
|
+
{
|
|
100
|
+
key: "OPENSANDBOX_HOST",
|
|
101
|
+
defaultValue: "opensandbox",
|
|
102
|
+
secret: false,
|
|
103
|
+
description: "OpenSandbox hostname for OpenClaw",
|
|
104
|
+
required: true
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
key: "OPENSANDBOX_PORT",
|
|
108
|
+
defaultValue: "8080",
|
|
109
|
+
secret: false,
|
|
110
|
+
description: "OpenSandbox port for OpenClaw",
|
|
111
|
+
required: true
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
key: "OPENSANDBOX_API_KEY",
|
|
115
|
+
defaultValue: "${OPEN_SANDBOX_API_KEY}",
|
|
116
|
+
secret: true,
|
|
117
|
+
description: "OpenSandbox API key for OpenClaw",
|
|
118
|
+
required: true
|
|
119
|
+
}
|
|
120
|
+
],
|
|
121
|
+
docsUrl: "https://github.com/anthropics/OpenSandbox",
|
|
122
|
+
tags: [
|
|
123
|
+
"sandbox",
|
|
124
|
+
"code-execution",
|
|
125
|
+
"security",
|
|
126
|
+
"ai-agent",
|
|
127
|
+
"isolation"
|
|
128
|
+
],
|
|
129
|
+
maturity: "stable",
|
|
130
|
+
requires: [],
|
|
131
|
+
recommends: [],
|
|
132
|
+
conflictsWith: [],
|
|
133
|
+
minMemoryMB: 768,
|
|
134
|
+
gpuRequired: false,
|
|
135
|
+
capDropCompatible: true,
|
|
136
|
+
proxyPath: "/sandbox",
|
|
137
|
+
envQuirks: [{
|
|
138
|
+
key: "OPEN_SANDBOX_API_KEY",
|
|
139
|
+
issue: "min_length",
|
|
140
|
+
fix: {
|
|
141
|
+
type: "generate_base64url",
|
|
142
|
+
minBytes: 32
|
|
143
|
+
}
|
|
144
|
+
}]
|
|
145
|
+
};
|
|
146
|
+
//#endregion
|
|
147
|
+
exports.opensandboxDefinition = opensandboxDefinition;
|
|
148
|
+
|
|
149
|
+
//# sourceMappingURL=opensandbox.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"opensandbox.cjs","names":[],"sources":["../../../src/services/definitions/opensandbox.ts"],"sourcesContent":["import type { ServiceDefinition } from \"../../types.js\";\n\nexport const opensandboxDefinition: ServiceDefinition = {\n\tid: \"opensandbox\",\n\tname: \"OpenSandbox\",\n\tdescription:\n\t\t\"Secure containerized code execution for AI agents. Multi-language sandboxes (Python, JS/TS, Java, Go, Bash) with file operations, resource limits, and network isolation.\",\n\tcategory: \"dev-tools\",\n\ticon: \"📦\",\n\n\timage: \"opensandbox/server\",\n\timageTag: \"v1.0.6\",\n\tports: [\n\t\t{\n\t\t\thost: 8080,\n\t\t\tcontainer: 8080,\n\t\t\tdescription: \"OpenSandbox Lifecycle API (FastAPI)\",\n\t\t\texposed: true,\n\t\t},\n\t],\n\tvolumes: [\n\t\t{\n\t\t\tname: \"/var/run/docker.sock\",\n\t\t\tcontainerPath: \"/var/run/docker.sock\",\n\t\t\tdescription:\n\t\t\t\t\"Docker socket (required for managing sandbox containers)\",\n\t\t},\n\t\t{\n\t\t\tname: \"./sandbox.toml\",\n\t\t\tcontainerPath: \"/root/.sandbox.toml:ro\",\n\t\t\tdescription: \"OpenSandbox configuration file (read-only bind mount)\",\n\t\t},\n\t],\n\tenvironment: [\n\t\t{\n\t\t\tkey: \"OPEN_SANDBOX_API_KEY\",\n\t\t\tdefaultValue: \"\",\n\t\t\tsecret: true,\n\t\t\tdescription:\n\t\t\t\t\"API key for OpenSandbox lifecycle API authentication (min 32 chars)\",\n\t\t\trequired: true,\n\t\t},\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_LOG_LEVEL\",\n\t\t\tdefaultValue: \"INFO\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"Log verbosity (DEBUG, INFO, WARNING, ERROR)\",\n\t\t\trequired: false,\n\t\t},\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_RUNTIME_TYPE\",\n\t\t\tdefaultValue: \"docker\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"Runtime backend (always docker for VPS deployments)\",\n\t\t\trequired: false,\n\t\t},\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_EXECD_IMAGE\",\n\t\t\tdefaultValue: \"opensandbox/execd:v1.0.6\",\n\t\t\tsecret: false,\n\t\t\tdescription:\n\t\t\t\t\"Execution daemon image injected into sandbox containers\",\n\t\t\trequired: false,\n\t\t},\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_NETWORK_MODE\",\n\t\t\tdefaultValue: \"bridge\",\n\t\t\tsecret: false,\n\t\t\tdescription:\n\t\t\t\t\"Container networking mode (always bridge for isolation)\",\n\t\t\trequired: false,\n\t\t},\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_PIDS_LIMIT\",\n\t\t\tdefaultValue: \"512\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"Max PIDs per sandbox (fork bomb protection)\",\n\t\t\trequired: false,\n\t\t},\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_NO_NEW_PRIVILEGES\",\n\t\t\tdefaultValue: \"true\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"Security: prevent privilege escalation in sandboxes\",\n\t\t\trequired: false,\n\t\t},\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_SECURE_RUNTIME\",\n\t\t\tdefaultValue: \"gvisor\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"Secure container runtime (gVisor for sandbox isolation)\",\n\t\t\trequired: false,\n\t\t},\n\t],\n\thealthcheck: {\n\t\ttest: \"curl --fail http://localhost:8080/health || exit 1\",\n\t\tinterval: \"30s\",\n\t\ttimeout: \"10s\",\n\t\tretries: 3,\n\t\tstartPeriod: \"15s\",\n\t},\n\tdependsOn: [],\n\trestartPolicy: \"unless-stopped\",\n\tnetworks: [\"openclaw-network\"],\n\n\tskills: [{ skillId: \"code-sandbox\", autoInstall: true }],\n\topenclawEnvVars: [\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_HOST\",\n\t\t\tdefaultValue: \"opensandbox\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"OpenSandbox hostname for OpenClaw\",\n\t\t\trequired: true,\n\t\t},\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_PORT\",\n\t\t\tdefaultValue: \"8080\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"OpenSandbox port for OpenClaw\",\n\t\t\trequired: true,\n\t\t},\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_API_KEY\",\n\t\t\tdefaultValue: \"${OPEN_SANDBOX_API_KEY}\",\n\t\t\tsecret: true,\n\t\t\tdescription: \"OpenSandbox API key for OpenClaw\",\n\t\t\trequired: true,\n\t\t},\n\t],\n\n\tdocsUrl: \"https://github.com/anthropics/OpenSandbox\",\n\ttags: [\n\t\t\"sandbox\",\n\t\t\"code-execution\",\n\t\t\"security\",\n\t\t\"ai-agent\",\n\t\t\"isolation\",\n\t],\n\tmaturity: \"stable\",\n\n\trequires: [],\n\trecommends: [],\n\tconflictsWith: [],\n\n\tminMemoryMB: 768,\n\tgpuRequired: false,\n\tcapDropCompatible: true,\n\tproxyPath: \"/sandbox\",\n\tenvQuirks: [\n\t\t{\n\t\t\tkey: \"OPEN_SANDBOX_API_KEY\",\n\t\t\tissue: \"min_length\",\n\t\t\tfix: { type: \"generate_base64url\", minBytes: 32 },\n\t\t},\n\t],\n};\n"],"mappings":";;AAEA,MAAa,wBAA2C;CACvD,IAAI;CACJ,MAAM;CACN,aACC;CACD,UAAU;CACV,MAAM;CAEN,OAAO;CACP,UAAU;CACV,OAAO,CACN;EACC,MAAM;EACN,WAAW;EACX,aAAa;EACb,SAAS;EACT,CACD;CACD,SAAS,CACR;EACC,MAAM;EACN,eAAe;EACf,aACC;EACD,EACD;EACC,MAAM;EACN,eAAe;EACf,aAAa;EACb,CACD;CACD,aAAa;EACZ;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aACC;GACD,UAAU;GACV;EACD;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aAAa;GACb,UAAU;GACV;EACD;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aAAa;GACb,UAAU;GACV;EACD;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aACC;GACD,UAAU;GACV;EACD;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aACC;GACD,UAAU;GACV;EACD;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aAAa;GACb,UAAU;GACV;EACD;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aAAa;GACb,UAAU;GACV;EACD;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aAAa;GACb,UAAU;GACV;EACD;CACD,aAAa;EACZ,MAAM;EACN,UAAU;EACV,SAAS;EACT,SAAS;EACT,aAAa;EACb;CACD,WAAW,EAAE;CACb,eAAe;CACf,UAAU,CAAC,mBAAmB;CAE9B,QAAQ,CAAC;EAAE,SAAS;EAAgB,aAAa;EAAM,CAAC;CACxD,iBAAiB;EAChB;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aAAa;GACb,UAAU;GACV;EACD;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aAAa;GACb,UAAU;GACV;EACD;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aAAa;GACb,UAAU;GACV;EACD;CAED,SAAS;CACT,MAAM;EACL;EACA;EACA;EACA;EACA;EACA;CACD,UAAU;CAEV,UAAU,EAAE;CACZ,YAAY,EAAE;CACd,eAAe,EAAE;CAEjB,aAAa;CACb,aAAa;CACb,mBAAmB;CACnB,WAAW;CACX,WAAW,CACV;EACC,KAAK;EACL,OAAO;EACP,KAAK;GAAE,MAAM;GAAsB,UAAU;GAAI;EACjD,CACD;CACD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"opensandbox.d.cts","names":[],"sources":["../../../src/services/definitions/opensandbox.ts"],"mappings":";;;cAEa,qBAAA,EAAuB,iBAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"opensandbox.d.mts","names":[],"sources":["../../../src/services/definitions/opensandbox.ts"],"mappings":";;;cAEa,qBAAA,EAAuB,iBAAA"}
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
//#region src/services/definitions/opensandbox.ts
|
|
2
|
+
const opensandboxDefinition = {
|
|
3
|
+
id: "opensandbox",
|
|
4
|
+
name: "OpenSandbox",
|
|
5
|
+
description: "Secure containerized code execution for AI agents. Multi-language sandboxes (Python, JS/TS, Java, Go, Bash) with file operations, resource limits, and network isolation.",
|
|
6
|
+
category: "dev-tools",
|
|
7
|
+
icon: "📦",
|
|
8
|
+
image: "opensandbox/server",
|
|
9
|
+
imageTag: "v1.0.6",
|
|
10
|
+
ports: [{
|
|
11
|
+
host: 8080,
|
|
12
|
+
container: 8080,
|
|
13
|
+
description: "OpenSandbox Lifecycle API (FastAPI)",
|
|
14
|
+
exposed: true
|
|
15
|
+
}],
|
|
16
|
+
volumes: [{
|
|
17
|
+
name: "/var/run/docker.sock",
|
|
18
|
+
containerPath: "/var/run/docker.sock",
|
|
19
|
+
description: "Docker socket (required for managing sandbox containers)"
|
|
20
|
+
}, {
|
|
21
|
+
name: "./sandbox.toml",
|
|
22
|
+
containerPath: "/root/.sandbox.toml:ro",
|
|
23
|
+
description: "OpenSandbox configuration file (read-only bind mount)"
|
|
24
|
+
}],
|
|
25
|
+
environment: [
|
|
26
|
+
{
|
|
27
|
+
key: "OPEN_SANDBOX_API_KEY",
|
|
28
|
+
defaultValue: "",
|
|
29
|
+
secret: true,
|
|
30
|
+
description: "API key for OpenSandbox lifecycle API authentication (min 32 chars)",
|
|
31
|
+
required: true
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
key: "OPENSANDBOX_LOG_LEVEL",
|
|
35
|
+
defaultValue: "INFO",
|
|
36
|
+
secret: false,
|
|
37
|
+
description: "Log verbosity (DEBUG, INFO, WARNING, ERROR)",
|
|
38
|
+
required: false
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
key: "OPENSANDBOX_RUNTIME_TYPE",
|
|
42
|
+
defaultValue: "docker",
|
|
43
|
+
secret: false,
|
|
44
|
+
description: "Runtime backend (always docker for VPS deployments)",
|
|
45
|
+
required: false
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
key: "OPENSANDBOX_EXECD_IMAGE",
|
|
49
|
+
defaultValue: "opensandbox/execd:v1.0.6",
|
|
50
|
+
secret: false,
|
|
51
|
+
description: "Execution daemon image injected into sandbox containers",
|
|
52
|
+
required: false
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
key: "OPENSANDBOX_NETWORK_MODE",
|
|
56
|
+
defaultValue: "bridge",
|
|
57
|
+
secret: false,
|
|
58
|
+
description: "Container networking mode (always bridge for isolation)",
|
|
59
|
+
required: false
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
key: "OPENSANDBOX_PIDS_LIMIT",
|
|
63
|
+
defaultValue: "512",
|
|
64
|
+
secret: false,
|
|
65
|
+
description: "Max PIDs per sandbox (fork bomb protection)",
|
|
66
|
+
required: false
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
key: "OPENSANDBOX_NO_NEW_PRIVILEGES",
|
|
70
|
+
defaultValue: "true",
|
|
71
|
+
secret: false,
|
|
72
|
+
description: "Security: prevent privilege escalation in sandboxes",
|
|
73
|
+
required: false
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
key: "OPENSANDBOX_SECURE_RUNTIME",
|
|
77
|
+
defaultValue: "gvisor",
|
|
78
|
+
secret: false,
|
|
79
|
+
description: "Secure container runtime (gVisor for sandbox isolation)",
|
|
80
|
+
required: false
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
healthcheck: {
|
|
84
|
+
test: "curl --fail http://localhost:8080/health || exit 1",
|
|
85
|
+
interval: "30s",
|
|
86
|
+
timeout: "10s",
|
|
87
|
+
retries: 3,
|
|
88
|
+
startPeriod: "15s"
|
|
89
|
+
},
|
|
90
|
+
dependsOn: [],
|
|
91
|
+
restartPolicy: "unless-stopped",
|
|
92
|
+
networks: ["openclaw-network"],
|
|
93
|
+
skills: [{
|
|
94
|
+
skillId: "code-sandbox",
|
|
95
|
+
autoInstall: true
|
|
96
|
+
}],
|
|
97
|
+
openclawEnvVars: [
|
|
98
|
+
{
|
|
99
|
+
key: "OPENSANDBOX_HOST",
|
|
100
|
+
defaultValue: "opensandbox",
|
|
101
|
+
secret: false,
|
|
102
|
+
description: "OpenSandbox hostname for OpenClaw",
|
|
103
|
+
required: true
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
key: "OPENSANDBOX_PORT",
|
|
107
|
+
defaultValue: "8080",
|
|
108
|
+
secret: false,
|
|
109
|
+
description: "OpenSandbox port for OpenClaw",
|
|
110
|
+
required: true
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
key: "OPENSANDBOX_API_KEY",
|
|
114
|
+
defaultValue: "${OPEN_SANDBOX_API_KEY}",
|
|
115
|
+
secret: true,
|
|
116
|
+
description: "OpenSandbox API key for OpenClaw",
|
|
117
|
+
required: true
|
|
118
|
+
}
|
|
119
|
+
],
|
|
120
|
+
docsUrl: "https://github.com/anthropics/OpenSandbox",
|
|
121
|
+
tags: [
|
|
122
|
+
"sandbox",
|
|
123
|
+
"code-execution",
|
|
124
|
+
"security",
|
|
125
|
+
"ai-agent",
|
|
126
|
+
"isolation"
|
|
127
|
+
],
|
|
128
|
+
maturity: "stable",
|
|
129
|
+
requires: [],
|
|
130
|
+
recommends: [],
|
|
131
|
+
conflictsWith: [],
|
|
132
|
+
minMemoryMB: 768,
|
|
133
|
+
gpuRequired: false,
|
|
134
|
+
capDropCompatible: true,
|
|
135
|
+
proxyPath: "/sandbox",
|
|
136
|
+
envQuirks: [{
|
|
137
|
+
key: "OPEN_SANDBOX_API_KEY",
|
|
138
|
+
issue: "min_length",
|
|
139
|
+
fix: {
|
|
140
|
+
type: "generate_base64url",
|
|
141
|
+
minBytes: 32
|
|
142
|
+
}
|
|
143
|
+
}]
|
|
144
|
+
};
|
|
145
|
+
//#endregion
|
|
146
|
+
export { opensandboxDefinition };
|
|
147
|
+
|
|
148
|
+
//# sourceMappingURL=opensandbox.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"opensandbox.mjs","names":[],"sources":["../../../src/services/definitions/opensandbox.ts"],"sourcesContent":["import type { ServiceDefinition } from \"../../types.js\";\n\nexport const opensandboxDefinition: ServiceDefinition = {\n\tid: \"opensandbox\",\n\tname: \"OpenSandbox\",\n\tdescription:\n\t\t\"Secure containerized code execution for AI agents. Multi-language sandboxes (Python, JS/TS, Java, Go, Bash) with file operations, resource limits, and network isolation.\",\n\tcategory: \"dev-tools\",\n\ticon: \"📦\",\n\n\timage: \"opensandbox/server\",\n\timageTag: \"v1.0.6\",\n\tports: [\n\t\t{\n\t\t\thost: 8080,\n\t\t\tcontainer: 8080,\n\t\t\tdescription: \"OpenSandbox Lifecycle API (FastAPI)\",\n\t\t\texposed: true,\n\t\t},\n\t],\n\tvolumes: [\n\t\t{\n\t\t\tname: \"/var/run/docker.sock\",\n\t\t\tcontainerPath: \"/var/run/docker.sock\",\n\t\t\tdescription:\n\t\t\t\t\"Docker socket (required for managing sandbox containers)\",\n\t\t},\n\t\t{\n\t\t\tname: \"./sandbox.toml\",\n\t\t\tcontainerPath: \"/root/.sandbox.toml:ro\",\n\t\t\tdescription: \"OpenSandbox configuration file (read-only bind mount)\",\n\t\t},\n\t],\n\tenvironment: [\n\t\t{\n\t\t\tkey: \"OPEN_SANDBOX_API_KEY\",\n\t\t\tdefaultValue: \"\",\n\t\t\tsecret: true,\n\t\t\tdescription:\n\t\t\t\t\"API key for OpenSandbox lifecycle API authentication (min 32 chars)\",\n\t\t\trequired: true,\n\t\t},\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_LOG_LEVEL\",\n\t\t\tdefaultValue: \"INFO\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"Log verbosity (DEBUG, INFO, WARNING, ERROR)\",\n\t\t\trequired: false,\n\t\t},\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_RUNTIME_TYPE\",\n\t\t\tdefaultValue: \"docker\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"Runtime backend (always docker for VPS deployments)\",\n\t\t\trequired: false,\n\t\t},\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_EXECD_IMAGE\",\n\t\t\tdefaultValue: \"opensandbox/execd:v1.0.6\",\n\t\t\tsecret: false,\n\t\t\tdescription:\n\t\t\t\t\"Execution daemon image injected into sandbox containers\",\n\t\t\trequired: false,\n\t\t},\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_NETWORK_MODE\",\n\t\t\tdefaultValue: \"bridge\",\n\t\t\tsecret: false,\n\t\t\tdescription:\n\t\t\t\t\"Container networking mode (always bridge for isolation)\",\n\t\t\trequired: false,\n\t\t},\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_PIDS_LIMIT\",\n\t\t\tdefaultValue: \"512\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"Max PIDs per sandbox (fork bomb protection)\",\n\t\t\trequired: false,\n\t\t},\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_NO_NEW_PRIVILEGES\",\n\t\t\tdefaultValue: \"true\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"Security: prevent privilege escalation in sandboxes\",\n\t\t\trequired: false,\n\t\t},\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_SECURE_RUNTIME\",\n\t\t\tdefaultValue: \"gvisor\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"Secure container runtime (gVisor for sandbox isolation)\",\n\t\t\trequired: false,\n\t\t},\n\t],\n\thealthcheck: {\n\t\ttest: \"curl --fail http://localhost:8080/health || exit 1\",\n\t\tinterval: \"30s\",\n\t\ttimeout: \"10s\",\n\t\tretries: 3,\n\t\tstartPeriod: \"15s\",\n\t},\n\tdependsOn: [],\n\trestartPolicy: \"unless-stopped\",\n\tnetworks: [\"openclaw-network\"],\n\n\tskills: [{ skillId: \"code-sandbox\", autoInstall: true }],\n\topenclawEnvVars: [\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_HOST\",\n\t\t\tdefaultValue: \"opensandbox\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"OpenSandbox hostname for OpenClaw\",\n\t\t\trequired: true,\n\t\t},\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_PORT\",\n\t\t\tdefaultValue: \"8080\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"OpenSandbox port for OpenClaw\",\n\t\t\trequired: true,\n\t\t},\n\t\t{\n\t\t\tkey: \"OPENSANDBOX_API_KEY\",\n\t\t\tdefaultValue: \"${OPEN_SANDBOX_API_KEY}\",\n\t\t\tsecret: true,\n\t\t\tdescription: \"OpenSandbox API key for OpenClaw\",\n\t\t\trequired: true,\n\t\t},\n\t],\n\n\tdocsUrl: \"https://github.com/anthropics/OpenSandbox\",\n\ttags: [\n\t\t\"sandbox\",\n\t\t\"code-execution\",\n\t\t\"security\",\n\t\t\"ai-agent\",\n\t\t\"isolation\",\n\t],\n\tmaturity: \"stable\",\n\n\trequires: [],\n\trecommends: [],\n\tconflictsWith: [],\n\n\tminMemoryMB: 768,\n\tgpuRequired: false,\n\tcapDropCompatible: true,\n\tproxyPath: \"/sandbox\",\n\tenvQuirks: [\n\t\t{\n\t\t\tkey: \"OPEN_SANDBOX_API_KEY\",\n\t\t\tissue: \"min_length\",\n\t\t\tfix: { type: \"generate_base64url\", minBytes: 32 },\n\t\t},\n\t],\n};\n"],"mappings":";AAEA,MAAa,wBAA2C;CACvD,IAAI;CACJ,MAAM;CACN,aACC;CACD,UAAU;CACV,MAAM;CAEN,OAAO;CACP,UAAU;CACV,OAAO,CACN;EACC,MAAM;EACN,WAAW;EACX,aAAa;EACb,SAAS;EACT,CACD;CACD,SAAS,CACR;EACC,MAAM;EACN,eAAe;EACf,aACC;EACD,EACD;EACC,MAAM;EACN,eAAe;EACf,aAAa;EACb,CACD;CACD,aAAa;EACZ;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aACC;GACD,UAAU;GACV;EACD;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aAAa;GACb,UAAU;GACV;EACD;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aAAa;GACb,UAAU;GACV;EACD;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aACC;GACD,UAAU;GACV;EACD;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aACC;GACD,UAAU;GACV;EACD;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aAAa;GACb,UAAU;GACV;EACD;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aAAa;GACb,UAAU;GACV;EACD;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aAAa;GACb,UAAU;GACV;EACD;CACD,aAAa;EACZ,MAAM;EACN,UAAU;EACV,SAAS;EACT,SAAS;EACT,aAAa;EACb;CACD,WAAW,EAAE;CACb,eAAe;CACf,UAAU,CAAC,mBAAmB;CAE9B,QAAQ,CAAC;EAAE,SAAS;EAAgB,aAAa;EAAM,CAAC;CACxD,iBAAiB;EAChB;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aAAa;GACb,UAAU;GACV;EACD;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aAAa;GACb,UAAU;GACV;EACD;GACC,KAAK;GACL,cAAc;GACd,QAAQ;GACR,aAAa;GACb,UAAU;GACV;EACD;CAED,SAAS;CACT,MAAM;EACL;EACA;EACA;EACA;EACA;EACA;CACD,UAAU;CAEV,UAAU,EAAE;CACZ,YAAY,EAAE;CACd,eAAe,EAAE;CAEjB,aAAa;CACb,aAAa;CACb,mBAAmB;CACnB,WAAW;CACX,WAAW,CACV;EACC,KAAK;EACL,OAAO;EACP,KAAK;GAAE,MAAM;GAAsB,UAAU;GAAI;EACjD,CACD;CACD"}
|