@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.
Files changed (89) hide show
  1. package/dist/addon-stack.cjs +55 -3
  2. package/dist/addon-stack.cjs.map +1 -1
  3. package/dist/addon-stack.d.cts.map +1 -1
  4. package/dist/addon-stack.d.mts.map +1 -1
  5. package/dist/addon-stack.mjs +54 -2
  6. package/dist/addon-stack.mjs.map +1 -1
  7. package/dist/addon-stack.test.cjs +113 -1
  8. package/dist/addon-stack.test.cjs.map +1 -1
  9. package/dist/addon-stack.test.mjs +112 -0
  10. package/dist/addon-stack.test.mjs.map +1 -1
  11. package/dist/compose-validation.test.cjs +1 -1
  12. package/dist/composer.cjs +1 -1
  13. package/dist/composer.test.cjs +1 -1
  14. package/dist/deployers/strip-host-ports.cjs +1 -1
  15. package/dist/generate.cjs +1 -1
  16. package/dist/generate.test.cjs +1 -1
  17. package/dist/generators/env.cjs +1 -1
  18. package/dist/generators/postgres-init.cjs +5 -0
  19. package/dist/generators/postgres-init.cjs.map +1 -1
  20. package/dist/generators/postgres-init.d.cts.map +1 -1
  21. package/dist/generators/postgres-init.d.mts.map +1 -1
  22. package/dist/generators/postgres-init.mjs +5 -0
  23. package/dist/generators/postgres-init.mjs.map +1 -1
  24. package/dist/generators/skills.cjs +1 -1
  25. package/dist/generators/skills.d.cts.map +1 -1
  26. package/dist/generators/skills.d.mts.map +1 -1
  27. package/dist/generators/skills.mjs +141 -0
  28. package/dist/generators/skills.mjs.map +1 -1
  29. package/dist/index.cjs +1 -1
  30. package/dist/index.d.cts +1 -1
  31. package/dist/index.d.mts +1 -1
  32. package/dist/presets/presets.test.cjs +1 -1
  33. package/dist/{schema-CKBRu-Rt.d.cts → schema-BQnZrcw8.d.cts} +6 -1
  34. package/dist/{schema-CKBRu-Rt.d.cts.map → schema-BQnZrcw8.d.cts.map} +1 -1
  35. package/dist/{schema-Dn-_Jpb6.d.mts → schema-SBpL0bdI.d.mts} +6 -1
  36. package/dist/{schema-Dn-_Jpb6.d.mts.map → schema-SBpL0bdI.d.mts.map} +1 -1
  37. package/dist/schema.cjs +11 -2
  38. package/dist/schema.cjs.map +1 -1
  39. package/dist/schema.d.cts +1 -1
  40. package/dist/schema.d.mts +1 -1
  41. package/dist/schema.mjs +10 -1
  42. package/dist/schema.mjs.map +1 -1
  43. package/dist/services/definitions/burnlink.cjs +142 -0
  44. package/dist/services/definitions/burnlink.cjs.map +1 -0
  45. package/dist/services/definitions/burnlink.d.cts +7 -0
  46. package/dist/services/definitions/burnlink.d.cts.map +1 -0
  47. package/dist/services/definitions/burnlink.d.mts +7 -0
  48. package/dist/services/definitions/burnlink.d.mts.map +1 -0
  49. package/dist/services/definitions/burnlink.mjs +141 -0
  50. package/dist/services/definitions/burnlink.mjs.map +1 -0
  51. package/dist/services/definitions/hindsight.cjs +130 -0
  52. package/dist/services/definitions/hindsight.cjs.map +1 -0
  53. package/dist/services/definitions/hindsight.d.cts +7 -0
  54. package/dist/services/definitions/hindsight.d.cts.map +1 -0
  55. package/dist/services/definitions/hindsight.d.mts +7 -0
  56. package/dist/services/definitions/hindsight.d.mts.map +1 -0
  57. package/dist/services/definitions/hindsight.mjs +129 -0
  58. package/dist/services/definitions/hindsight.mjs.map +1 -0
  59. package/dist/services/definitions/index.cjs +9 -0
  60. package/dist/services/definitions/index.cjs.map +1 -1
  61. package/dist/services/definitions/index.d.cts +4 -1
  62. package/dist/services/definitions/index.d.cts.map +1 -1
  63. package/dist/services/definitions/index.d.mts +4 -1
  64. package/dist/services/definitions/index.d.mts.map +1 -1
  65. package/dist/services/definitions/index.mjs +7 -1
  66. package/dist/services/definitions/index.mjs.map +1 -1
  67. package/dist/services/definitions/opensandbox.cjs +149 -0
  68. package/dist/services/definitions/opensandbox.cjs.map +1 -0
  69. package/dist/services/definitions/opensandbox.d.cts +7 -0
  70. package/dist/services/definitions/opensandbox.d.cts.map +1 -0
  71. package/dist/services/definitions/opensandbox.d.mts +7 -0
  72. package/dist/services/definitions/opensandbox.d.mts.map +1 -0
  73. package/dist/services/definitions/opensandbox.mjs +148 -0
  74. package/dist/services/definitions/opensandbox.mjs.map +1 -0
  75. package/dist/{skills-BlzpHmpH.cjs → skills-BSF7iNa4.cjs} +142 -1
  76. package/dist/{skills-BlzpHmpH.cjs.map → skills-BSF7iNa4.cjs.map} +1 -1
  77. package/dist/types.d.cts +1 -1
  78. package/dist/types.d.mts +1 -1
  79. package/dist/validator.cjs +1 -1
  80. package/package.json +1 -1
  81. package/src/addon-stack.test.ts +158 -0
  82. package/src/addon-stack.ts +48 -0
  83. package/src/generators/postgres-init.ts +2 -0
  84. package/src/generators/skills.ts +142 -0
  85. package/src/schema.ts +7 -0
  86. package/src/services/definitions/burnlink.ts +142 -0
  87. package/src/services/definitions/hindsight.ts +131 -0
  88. package/src/services/definitions/index.ts +10 -0
  89. package/src/services/definitions/opensandbox.ts +156 -0
@@ -0,0 +1,130 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ //#region src/services/definitions/hindsight.ts
3
+ const hindsightDefinition = {
4
+ id: "hindsight",
5
+ name: "Hindsight",
6
+ description: "Open-source agent memory system with Retain/Recall/Reflect operations, multi-strategy retrieval (semantic, keyword, graph, temporal), and MCP server support.",
7
+ category: "ai",
8
+ icon: "🧠",
9
+ image: "ghcr.io/vectorize-io/hindsight",
10
+ imageTag: "latest",
11
+ ports: [{
12
+ host: 8889,
13
+ container: 8888,
14
+ description: "Hindsight API and MCP endpoint",
15
+ exposed: true
16
+ }, {
17
+ host: 9998,
18
+ container: 9999,
19
+ description: "Hindsight admin web UI",
20
+ exposed: true
21
+ }],
22
+ volumes: [{
23
+ name: "hindsight-data",
24
+ containerPath: "/home/hindsight/.pg0",
25
+ description: "Embedded PostgreSQL data (used when no external DB configured)"
26
+ }],
27
+ environment: [
28
+ {
29
+ key: "HINDSIGHT_API_LLM_PROVIDER",
30
+ defaultValue: "openai",
31
+ secret: false,
32
+ description: "LLM provider (openai, anthropic, gemini, groq, ollama, lmstudio)",
33
+ required: true
34
+ },
35
+ {
36
+ key: "HINDSIGHT_API_LLM_API_KEY",
37
+ defaultValue: "",
38
+ secret: true,
39
+ description: "API key for the configured LLM provider",
40
+ required: true
41
+ },
42
+ {
43
+ key: "HINDSIGHT_API_LLM_MODEL",
44
+ defaultValue: "o3-mini",
45
+ secret: false,
46
+ description: "LLM model to use for memory operations (e.g., o3-mini, claude-sonnet-4-20250514)",
47
+ required: true
48
+ },
49
+ {
50
+ key: "HINDSIGHT_API_DATABASE_URL",
51
+ defaultValue: "postgresql://hindsight:${HINDSIGHT_DB_PASSWORD}@postgresql:5432/hindsight",
52
+ secret: false,
53
+ description: "PostgreSQL connection string (leave empty to use embedded pg0 for dev)",
54
+ required: false
55
+ },
56
+ {
57
+ key: "HINDSIGHT_API_MCP_ENABLED",
58
+ defaultValue: "true",
59
+ secret: false,
60
+ description: "Enable MCP server for agent tool integration",
61
+ required: false
62
+ },
63
+ {
64
+ key: "HINDSIGHT_API_SKIP_LLM_VERIFICATION",
65
+ defaultValue: "false",
66
+ secret: false,
67
+ description: "Skip LLM connection verification on startup",
68
+ required: false
69
+ }
70
+ ],
71
+ healthcheck: {
72
+ test: "wget -q --spider http://localhost:8888/metrics || exit 1",
73
+ interval: "30s",
74
+ timeout: "10s",
75
+ retries: 5,
76
+ startPeriod: "30s"
77
+ },
78
+ dependsOn: [],
79
+ restartPolicy: "unless-stopped",
80
+ networks: ["openclaw-network"],
81
+ skills: [],
82
+ openclawEnvVars: [{
83
+ key: "HINDSIGHT_HOST",
84
+ defaultValue: "hindsight",
85
+ secret: false,
86
+ description: "Hindsight hostname for agent memory operations",
87
+ required: false
88
+ }, {
89
+ key: "HINDSIGHT_API_PORT",
90
+ defaultValue: "8888",
91
+ secret: false,
92
+ description: "Hindsight API port",
93
+ required: false
94
+ }],
95
+ docsUrl: "https://hindsight.vectorize.io/",
96
+ tags: [
97
+ "agent-memory",
98
+ "mcp",
99
+ "recall",
100
+ "knowledge-graph",
101
+ "semantic-search"
102
+ ],
103
+ maturity: "beta",
104
+ requires: ["postgresql"],
105
+ recommends: ["ollama"],
106
+ conflictsWith: [],
107
+ minMemoryMB: 512,
108
+ gpuRequired: false,
109
+ capDropCompatible: true,
110
+ proxyPath: "/hindsight",
111
+ envQuirks: [{
112
+ key: "HINDSIGHT_API_LLM_API_KEY",
113
+ issue: "min_length",
114
+ fix: {
115
+ type: "generate_base64url",
116
+ minBytes: 16
117
+ }
118
+ }, {
119
+ key: "HINDSIGHT_API_DATABASE_URL",
120
+ issue: "must_sync",
121
+ fix: {
122
+ type: "sync_with",
123
+ syncKey: "HINDSIGHT_DB_PASSWORD"
124
+ }
125
+ }]
126
+ };
127
+ //#endregion
128
+ exports.hindsightDefinition = hindsightDefinition;
129
+
130
+ //# sourceMappingURL=hindsight.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hindsight.cjs","names":[],"sources":["../../../src/services/definitions/hindsight.ts"],"sourcesContent":["import type { ServiceDefinition } from \"../../types.js\";\n\nexport const hindsightDefinition: ServiceDefinition = {\n\tid: \"hindsight\",\n\tname: \"Hindsight\",\n\tdescription:\n\t\t\"Open-source agent memory system with Retain/Recall/Reflect operations, multi-strategy retrieval (semantic, keyword, graph, temporal), and MCP server support.\",\n\tcategory: \"ai\",\n\ticon: \"🧠\",\n\n\timage: \"ghcr.io/vectorize-io/hindsight\",\n\timageTag: \"latest\",\n\tports: [\n\t\t{\n\t\t\thost: 8889,\n\t\t\tcontainer: 8888,\n\t\t\tdescription: \"Hindsight API and MCP endpoint\",\n\t\t\texposed: true,\n\t\t},\n\t\t{\n\t\t\thost: 9998,\n\t\t\tcontainer: 9999,\n\t\t\tdescription: \"Hindsight admin web UI\",\n\t\t\texposed: true,\n\t\t},\n\t],\n\tvolumes: [\n\t\t{\n\t\t\tname: \"hindsight-data\",\n\t\t\tcontainerPath: \"/home/hindsight/.pg0\",\n\t\t\tdescription: \"Embedded PostgreSQL data (used when no external DB configured)\",\n\t\t},\n\t],\n\tenvironment: [\n\t\t{\n\t\t\tkey: \"HINDSIGHT_API_LLM_PROVIDER\",\n\t\t\tdefaultValue: \"openai\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"LLM provider (openai, anthropic, gemini, groq, ollama, lmstudio)\",\n\t\t\trequired: true,\n\t\t},\n\t\t{\n\t\t\tkey: \"HINDSIGHT_API_LLM_API_KEY\",\n\t\t\tdefaultValue: \"\",\n\t\t\tsecret: true,\n\t\t\tdescription: \"API key for the configured LLM provider\",\n\t\t\trequired: true,\n\t\t},\n\t\t{\n\t\t\tkey: \"HINDSIGHT_API_LLM_MODEL\",\n\t\t\tdefaultValue: \"o3-mini\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"LLM model to use for memory operations (e.g., o3-mini, claude-sonnet-4-20250514)\",\n\t\t\trequired: true,\n\t\t},\n\t\t{\n\t\t\tkey: \"HINDSIGHT_API_DATABASE_URL\",\n\t\t\tdefaultValue: \"postgresql://hindsight:${HINDSIGHT_DB_PASSWORD}@postgresql:5432/hindsight\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"PostgreSQL connection string (leave empty to use embedded pg0 for dev)\",\n\t\t\trequired: false,\n\t\t},\n\t\t{\n\t\t\tkey: \"HINDSIGHT_API_MCP_ENABLED\",\n\t\t\tdefaultValue: \"true\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"Enable MCP server for agent tool integration\",\n\t\t\trequired: false,\n\t\t},\n\t\t{\n\t\t\tkey: \"HINDSIGHT_API_SKIP_LLM_VERIFICATION\",\n\t\t\tdefaultValue: \"false\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"Skip LLM connection verification on startup\",\n\t\t\trequired: false,\n\t\t},\n\t],\n\thealthcheck: {\n\t\ttest: \"wget -q --spider http://localhost:8888/metrics || exit 1\",\n\t\tinterval: \"30s\",\n\t\ttimeout: \"10s\",\n\t\tretries: 5,\n\t\tstartPeriod: \"30s\",\n\t},\n\tdependsOn: [],\n\trestartPolicy: \"unless-stopped\",\n\tnetworks: [\"openclaw-network\"],\n\n\tskills: [],\n\topenclawEnvVars: [\n\t\t{\n\t\t\tkey: \"HINDSIGHT_HOST\",\n\t\t\tdefaultValue: \"hindsight\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"Hindsight hostname for agent memory operations\",\n\t\t\trequired: false,\n\t\t},\n\t\t{\n\t\t\tkey: \"HINDSIGHT_API_PORT\",\n\t\t\tdefaultValue: \"8888\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"Hindsight API port\",\n\t\t\trequired: false,\n\t\t},\n\t],\n\n\tdocsUrl: \"https://hindsight.vectorize.io/\",\n\ttags: [\"agent-memory\", \"mcp\", \"recall\", \"knowledge-graph\", \"semantic-search\"],\n\tmaturity: \"beta\",\n\n\trequires: [\"postgresql\"],\n\trecommends: [\"ollama\"],\n\tconflictsWith: [],\n\n\tminMemoryMB: 512,\n\tgpuRequired: false,\n\tcapDropCompatible: true,\n\tproxyPath: \"/hindsight\",\n\tenvQuirks: [\n\t\t{\n\t\t\tkey: \"HINDSIGHT_API_LLM_API_KEY\",\n\t\t\tissue: \"min_length\" as const,\n\t\t\tfix: { type: \"generate_base64url\" as const, minBytes: 16 },\n\t\t},\n\t\t{\n\t\t\tkey: \"HINDSIGHT_API_DATABASE_URL\",\n\t\t\tissue: \"must_sync\" as const,\n\t\t\tfix: { type: \"sync_with\" as const, syncKey: \"HINDSIGHT_DB_PASSWORD\" },\n\t\t},\n\t],\n};\n"],"mappings":";;AAEA,MAAa,sBAAyC;CACrD,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,EACD;EACC,MAAM;EACN,WAAW;EACX,aAAa;EACb,SAAS;EACT,CACD;CACD,SAAS,CACR;EACC,MAAM;EACN,eAAe;EACf,aAAa;EACb,CACD;CACD,aAAa;EACZ;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;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,EAAE;CACV,iBAAiB,CAChB;EACC,KAAK;EACL,cAAc;EACd,QAAQ;EACR,aAAa;EACb,UAAU;EACV,EACD;EACC,KAAK;EACL,cAAc;EACd,QAAQ;EACR,aAAa;EACb,UAAU;EACV,CACD;CAED,SAAS;CACT,MAAM;EAAC;EAAgB;EAAO;EAAU;EAAmB;EAAkB;CAC7E,UAAU;CAEV,UAAU,CAAC,aAAa;CACxB,YAAY,CAAC,SAAS;CACtB,eAAe,EAAE;CAEjB,aAAa;CACb,aAAa;CACb,mBAAmB;CACnB,WAAW;CACX,WAAW,CACV;EACC,KAAK;EACL,OAAO;EACP,KAAK;GAAE,MAAM;GAA+B,UAAU;GAAI;EAC1D,EACD;EACC,KAAK;EACL,OAAO;EACP,KAAK;GAAE,MAAM;GAAsB,SAAS;GAAyB;EACrE,CACD;CACD"}
@@ -0,0 +1,7 @@
1
+ import { ServiceDefinition } from "../../types.cjs";
2
+
3
+ //#region src/services/definitions/hindsight.d.ts
4
+ declare const hindsightDefinition: ServiceDefinition;
5
+ //#endregion
6
+ export { hindsightDefinition };
7
+ //# sourceMappingURL=hindsight.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hindsight.d.cts","names":[],"sources":["../../../src/services/definitions/hindsight.ts"],"mappings":";;;cAEa,mBAAA,EAAqB,iBAAA"}
@@ -0,0 +1,7 @@
1
+ import { ServiceDefinition } from "../../types.mjs";
2
+
3
+ //#region src/services/definitions/hindsight.d.ts
4
+ declare const hindsightDefinition: ServiceDefinition;
5
+ //#endregion
6
+ export { hindsightDefinition };
7
+ //# sourceMappingURL=hindsight.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hindsight.d.mts","names":[],"sources":["../../../src/services/definitions/hindsight.ts"],"mappings":";;;cAEa,mBAAA,EAAqB,iBAAA"}
@@ -0,0 +1,129 @@
1
+ //#region src/services/definitions/hindsight.ts
2
+ const hindsightDefinition = {
3
+ id: "hindsight",
4
+ name: "Hindsight",
5
+ description: "Open-source agent memory system with Retain/Recall/Reflect operations, multi-strategy retrieval (semantic, keyword, graph, temporal), and MCP server support.",
6
+ category: "ai",
7
+ icon: "🧠",
8
+ image: "ghcr.io/vectorize-io/hindsight",
9
+ imageTag: "latest",
10
+ ports: [{
11
+ host: 8889,
12
+ container: 8888,
13
+ description: "Hindsight API and MCP endpoint",
14
+ exposed: true
15
+ }, {
16
+ host: 9998,
17
+ container: 9999,
18
+ description: "Hindsight admin web UI",
19
+ exposed: true
20
+ }],
21
+ volumes: [{
22
+ name: "hindsight-data",
23
+ containerPath: "/home/hindsight/.pg0",
24
+ description: "Embedded PostgreSQL data (used when no external DB configured)"
25
+ }],
26
+ environment: [
27
+ {
28
+ key: "HINDSIGHT_API_LLM_PROVIDER",
29
+ defaultValue: "openai",
30
+ secret: false,
31
+ description: "LLM provider (openai, anthropic, gemini, groq, ollama, lmstudio)",
32
+ required: true
33
+ },
34
+ {
35
+ key: "HINDSIGHT_API_LLM_API_KEY",
36
+ defaultValue: "",
37
+ secret: true,
38
+ description: "API key for the configured LLM provider",
39
+ required: true
40
+ },
41
+ {
42
+ key: "HINDSIGHT_API_LLM_MODEL",
43
+ defaultValue: "o3-mini",
44
+ secret: false,
45
+ description: "LLM model to use for memory operations (e.g., o3-mini, claude-sonnet-4-20250514)",
46
+ required: true
47
+ },
48
+ {
49
+ key: "HINDSIGHT_API_DATABASE_URL",
50
+ defaultValue: "postgresql://hindsight:${HINDSIGHT_DB_PASSWORD}@postgresql:5432/hindsight",
51
+ secret: false,
52
+ description: "PostgreSQL connection string (leave empty to use embedded pg0 for dev)",
53
+ required: false
54
+ },
55
+ {
56
+ key: "HINDSIGHT_API_MCP_ENABLED",
57
+ defaultValue: "true",
58
+ secret: false,
59
+ description: "Enable MCP server for agent tool integration",
60
+ required: false
61
+ },
62
+ {
63
+ key: "HINDSIGHT_API_SKIP_LLM_VERIFICATION",
64
+ defaultValue: "false",
65
+ secret: false,
66
+ description: "Skip LLM connection verification on startup",
67
+ required: false
68
+ }
69
+ ],
70
+ healthcheck: {
71
+ test: "wget -q --spider http://localhost:8888/metrics || exit 1",
72
+ interval: "30s",
73
+ timeout: "10s",
74
+ retries: 5,
75
+ startPeriod: "30s"
76
+ },
77
+ dependsOn: [],
78
+ restartPolicy: "unless-stopped",
79
+ networks: ["openclaw-network"],
80
+ skills: [],
81
+ openclawEnvVars: [{
82
+ key: "HINDSIGHT_HOST",
83
+ defaultValue: "hindsight",
84
+ secret: false,
85
+ description: "Hindsight hostname for agent memory operations",
86
+ required: false
87
+ }, {
88
+ key: "HINDSIGHT_API_PORT",
89
+ defaultValue: "8888",
90
+ secret: false,
91
+ description: "Hindsight API port",
92
+ required: false
93
+ }],
94
+ docsUrl: "https://hindsight.vectorize.io/",
95
+ tags: [
96
+ "agent-memory",
97
+ "mcp",
98
+ "recall",
99
+ "knowledge-graph",
100
+ "semantic-search"
101
+ ],
102
+ maturity: "beta",
103
+ requires: ["postgresql"],
104
+ recommends: ["ollama"],
105
+ conflictsWith: [],
106
+ minMemoryMB: 512,
107
+ gpuRequired: false,
108
+ capDropCompatible: true,
109
+ proxyPath: "/hindsight",
110
+ envQuirks: [{
111
+ key: "HINDSIGHT_API_LLM_API_KEY",
112
+ issue: "min_length",
113
+ fix: {
114
+ type: "generate_base64url",
115
+ minBytes: 16
116
+ }
117
+ }, {
118
+ key: "HINDSIGHT_API_DATABASE_URL",
119
+ issue: "must_sync",
120
+ fix: {
121
+ type: "sync_with",
122
+ syncKey: "HINDSIGHT_DB_PASSWORD"
123
+ }
124
+ }]
125
+ };
126
+ //#endregion
127
+ export { hindsightDefinition };
128
+
129
+ //# sourceMappingURL=hindsight.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hindsight.mjs","names":[],"sources":["../../../src/services/definitions/hindsight.ts"],"sourcesContent":["import type { ServiceDefinition } from \"../../types.js\";\n\nexport const hindsightDefinition: ServiceDefinition = {\n\tid: \"hindsight\",\n\tname: \"Hindsight\",\n\tdescription:\n\t\t\"Open-source agent memory system with Retain/Recall/Reflect operations, multi-strategy retrieval (semantic, keyword, graph, temporal), and MCP server support.\",\n\tcategory: \"ai\",\n\ticon: \"🧠\",\n\n\timage: \"ghcr.io/vectorize-io/hindsight\",\n\timageTag: \"latest\",\n\tports: [\n\t\t{\n\t\t\thost: 8889,\n\t\t\tcontainer: 8888,\n\t\t\tdescription: \"Hindsight API and MCP endpoint\",\n\t\t\texposed: true,\n\t\t},\n\t\t{\n\t\t\thost: 9998,\n\t\t\tcontainer: 9999,\n\t\t\tdescription: \"Hindsight admin web UI\",\n\t\t\texposed: true,\n\t\t},\n\t],\n\tvolumes: [\n\t\t{\n\t\t\tname: \"hindsight-data\",\n\t\t\tcontainerPath: \"/home/hindsight/.pg0\",\n\t\t\tdescription: \"Embedded PostgreSQL data (used when no external DB configured)\",\n\t\t},\n\t],\n\tenvironment: [\n\t\t{\n\t\t\tkey: \"HINDSIGHT_API_LLM_PROVIDER\",\n\t\t\tdefaultValue: \"openai\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"LLM provider (openai, anthropic, gemini, groq, ollama, lmstudio)\",\n\t\t\trequired: true,\n\t\t},\n\t\t{\n\t\t\tkey: \"HINDSIGHT_API_LLM_API_KEY\",\n\t\t\tdefaultValue: \"\",\n\t\t\tsecret: true,\n\t\t\tdescription: \"API key for the configured LLM provider\",\n\t\t\trequired: true,\n\t\t},\n\t\t{\n\t\t\tkey: \"HINDSIGHT_API_LLM_MODEL\",\n\t\t\tdefaultValue: \"o3-mini\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"LLM model to use for memory operations (e.g., o3-mini, claude-sonnet-4-20250514)\",\n\t\t\trequired: true,\n\t\t},\n\t\t{\n\t\t\tkey: \"HINDSIGHT_API_DATABASE_URL\",\n\t\t\tdefaultValue: \"postgresql://hindsight:${HINDSIGHT_DB_PASSWORD}@postgresql:5432/hindsight\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"PostgreSQL connection string (leave empty to use embedded pg0 for dev)\",\n\t\t\trequired: false,\n\t\t},\n\t\t{\n\t\t\tkey: \"HINDSIGHT_API_MCP_ENABLED\",\n\t\t\tdefaultValue: \"true\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"Enable MCP server for agent tool integration\",\n\t\t\trequired: false,\n\t\t},\n\t\t{\n\t\t\tkey: \"HINDSIGHT_API_SKIP_LLM_VERIFICATION\",\n\t\t\tdefaultValue: \"false\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"Skip LLM connection verification on startup\",\n\t\t\trequired: false,\n\t\t},\n\t],\n\thealthcheck: {\n\t\ttest: \"wget -q --spider http://localhost:8888/metrics || exit 1\",\n\t\tinterval: \"30s\",\n\t\ttimeout: \"10s\",\n\t\tretries: 5,\n\t\tstartPeriod: \"30s\",\n\t},\n\tdependsOn: [],\n\trestartPolicy: \"unless-stopped\",\n\tnetworks: [\"openclaw-network\"],\n\n\tskills: [],\n\topenclawEnvVars: [\n\t\t{\n\t\t\tkey: \"HINDSIGHT_HOST\",\n\t\t\tdefaultValue: \"hindsight\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"Hindsight hostname for agent memory operations\",\n\t\t\trequired: false,\n\t\t},\n\t\t{\n\t\t\tkey: \"HINDSIGHT_API_PORT\",\n\t\t\tdefaultValue: \"8888\",\n\t\t\tsecret: false,\n\t\t\tdescription: \"Hindsight API port\",\n\t\t\trequired: false,\n\t\t},\n\t],\n\n\tdocsUrl: \"https://hindsight.vectorize.io/\",\n\ttags: [\"agent-memory\", \"mcp\", \"recall\", \"knowledge-graph\", \"semantic-search\"],\n\tmaturity: \"beta\",\n\n\trequires: [\"postgresql\"],\n\trecommends: [\"ollama\"],\n\tconflictsWith: [],\n\n\tminMemoryMB: 512,\n\tgpuRequired: false,\n\tcapDropCompatible: true,\n\tproxyPath: \"/hindsight\",\n\tenvQuirks: [\n\t\t{\n\t\t\tkey: \"HINDSIGHT_API_LLM_API_KEY\",\n\t\t\tissue: \"min_length\" as const,\n\t\t\tfix: { type: \"generate_base64url\" as const, minBytes: 16 },\n\t\t},\n\t\t{\n\t\t\tkey: \"HINDSIGHT_API_DATABASE_URL\",\n\t\t\tissue: \"must_sync\" as const,\n\t\t\tfix: { type: \"sync_with\" as const, syncKey: \"HINDSIGHT_DB_PASSWORD\" },\n\t\t},\n\t],\n};\n"],"mappings":";AAEA,MAAa,sBAAyC;CACrD,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,EACD;EACC,MAAM;EACN,WAAW;EACX,aAAa;EACb,SAAS;EACT,CACD;CACD,SAAS,CACR;EACC,MAAM;EACN,eAAe;EACf,aAAa;EACb,CACD;CACD,aAAa;EACZ;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;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,EAAE;CACV,iBAAiB,CAChB;EACC,KAAK;EACL,cAAc;EACd,QAAQ;EACR,aAAa;EACb,UAAU;EACV,EACD;EACC,KAAK;EACL,cAAc;EACd,QAAQ;EACR,aAAa;EACb,UAAU;EACV,CACD;CAED,SAAS;CACT,MAAM;EAAC;EAAgB;EAAO;EAAU;EAAmB;EAAkB;CAC7E,UAAU;CAEV,UAAU,CAAC,aAAa;CACxB,YAAY,CAAC,SAAS;CACtB,eAAe,EAAE;CAEjB,aAAa;CACb,aAAa;CACb,mBAAmB;CACnB,WAAW;CACX,WAAW,CACV;EACC,KAAK;EACL,OAAO;EACP,KAAK;GAAE,MAAM;GAA+B,UAAU;GAAI;EAC1D,EACD;EACC,KAAK;EACL,OAAO;EACP,KAAK;GAAE,MAAM;GAAsB,SAAS;GAAyB;EACrE,CACD;CACD"}
@@ -12,6 +12,7 @@ const require_services_definitions_axolotl = require("./axolotl.cjs");
12
12
  const require_services_definitions_baserow = require("./baserow.cjs");
13
13
  const require_services_definitions_beszel = require("./beszel.cjs");
14
14
  const require_services_definitions_browserless = require("./browserless.cjs");
15
+ const require_services_definitions_burnlink = require("./burnlink.cjs");
15
16
  const require_services_definitions_caddy = require("./caddy.cjs");
16
17
  const require_services_definitions_cal_com = require("./cal-com.cjs");
17
18
  const require_services_definitions_calibre_web = require("./calibre-web.cjs");
@@ -59,6 +60,7 @@ const require_services_definitions_grafana = require("./grafana.cjs");
59
60
  const require_services_definitions_graylog = require("./graylog.cjs");
60
61
  const require_services_definitions_headscale = require("./headscale.cjs");
61
62
  const require_services_definitions_hedgedoc = require("./hedgedoc.cjs");
63
+ const require_services_definitions_hindsight = require("./hindsight.cjs");
62
64
  const require_services_definitions_hexstrike = require("./hexstrike.cjs");
63
65
  const require_services_definitions_heyform = require("./heyform.cjs");
64
66
  const require_services_definitions_homeassistant = require("./homeassistant.cjs");
@@ -116,6 +118,7 @@ const require_services_definitions_open_webui = require("./open-webui.cjs");
116
118
  const require_services_definitions_opencode = require("./opencode.cjs");
117
119
  const require_services_definitions_openhands = require("./openhands.cjs");
118
120
  const require_services_definitions_openpanel = require("./openpanel.cjs");
121
+ const require_services_definitions_opensandbox = require("./opensandbox.cjs");
119
122
  const require_services_definitions_opensearch = require("./opensearch.cjs");
120
123
  const require_services_definitions_outline = require("./outline.cjs");
121
124
  const require_services_definitions_paperless_ngx = require("./paperless-ngx.cjs");
@@ -368,6 +371,9 @@ const allServiceDefinitions = [
368
371
  require_services_definitions_vikunja.vikunjaDefinition,
369
372
  require_services_definitions_wireguard.wireguardDefinition,
370
373
  require_services_definitions_woodpecker_ci.woodpeckerCiDefinition,
374
+ require_services_definitions_hindsight.hindsightDefinition,
375
+ require_services_definitions_burnlink.burnlinkDefinition,
376
+ require_services_definitions_opensandbox.opensandboxDefinition,
371
377
  require_services_definitions_open_saas.openSaasDefinition,
372
378
  require_services_definitions_apptension_saas.apptensionSaasDefinition,
373
379
  require_services_definitions_boxyhq_saas.boxyhqSaasDefinition,
@@ -391,6 +397,7 @@ exports.baserowDefinition = require_services_definitions_baserow.baserowDefiniti
391
397
  exports.beszelDefinition = require_services_definitions_beszel.beszelDefinition;
392
398
  exports.boxyhqSaasDefinition = require_services_definitions_boxyhq_saas.boxyhqSaasDefinition;
393
399
  exports.browserlessDefinition = require_services_definitions_browserless.browserlessDefinition;
400
+ exports.burnlinkDefinition = require_services_definitions_burnlink.burnlinkDefinition;
394
401
  exports.caddyDefinition = require_services_definitions_caddy.caddyDefinition;
395
402
  exports.calComDefinition = require_services_definitions_cal_com.calComDefinition;
396
403
  exports.calibreWebDefinition = require_services_definitions_calibre_web.calibreWebDefinition;
@@ -441,6 +448,7 @@ exports.headscaleDefinition = require_services_definitions_headscale.headscaleDe
441
448
  exports.hedgedocDefinition = require_services_definitions_hedgedoc.hedgedocDefinition;
442
449
  exports.hexstrikeDefinition = require_services_definitions_hexstrike.hexstrikeDefinition;
443
450
  exports.heyformDefinition = require_services_definitions_heyform.heyformDefinition;
451
+ exports.hindsightDefinition = require_services_definitions_hindsight.hindsightDefinition;
444
452
  exports.homeassistantDefinition = require_services_definitions_homeassistant.homeassistantDefinition;
445
453
  exports.hoppscotchDefinition = require_services_definitions_hoppscotch.hoppscotchDefinition;
446
454
  exports.immichDefinition = require_services_definitions_immich.immichDefinition;
@@ -498,6 +506,7 @@ exports.openWebuiDefinition = require_services_definitions_open_webui.openWebuiD
498
506
  exports.opencodeDefinition = require_services_definitions_opencode.opencodeDefinition;
499
507
  exports.openhandsDefinition = require_services_definitions_openhands.openhandsDefinition;
500
508
  exports.openpanelDefinition = require_services_definitions_openpanel.openpanelDefinition;
509
+ exports.opensandboxDefinition = require_services_definitions_opensandbox.opensandboxDefinition;
501
510
  exports.opensearchDefinition = require_services_definitions_opensearch.opensearchDefinition;
502
511
  exports.outlineDefinition = require_services_definitions_outline.outlineDefinition;
503
512
  exports.paperlessNgxDefinition = require_services_definitions_paperless_ngx.paperlessNgxDefinition;
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","names":["redisDefinition","qdrantDefinition","n8nDefinition","ffmpegDefinition","minioDefinition","postgresqlDefinition","caddyDefinition","traefikDefinition","uptimeKumaDefinition","grafanaDefinition","prometheusDefinition","browserlessDefinition","firecrawlDefinition","firecrawlPlaywrightDefinition","searxngDefinition","meilisearchDefinition","opensearchDefinition","ollamaDefinition","whisperDefinition","chromadbDefinition","weaviateDefinition","valkeyDefinition","gotifyDefinition","ntfyDefinition","rabbitmqDefinition","remotionDefinition","motionCanvasDefinition","temporalDefinition","outlineDefinition","docsgptDefinition","paperlessNgxDefinition","nocodbDefinition","appflowyDefinition","directusDefinition","stirlingPdfDefinition","strapiDefinition","matrixSynapseDefinition","rocketchatDefinition","mattermostDefinition","chatwootDefinition","chatwootWorkerDefinition","stableDiffusionDefinition","comfyuiDefinition","playwrightServerDefinition","openWebuiDefinition","langflowDefinition","ragflowDefinition","homeassistantDefinition","nextcloudDefinition","immichDefinition","jellyfinDefinition","vaultwardenDefinition","milvusDefinition","jenkinsDefinition","appwriteDefinition","authentikDefinition","autheliaDefinition","crowdsecDefinition","ghostDefinition","lokiDefinition","signozDefinition","supabaseDefinition","pocketbaseDefinition","pocketIdDefinition","librechatDefinition","anythingLlmDefinition","difyDefinition","flowiseDefinition","litellmDefinition","flagsmithDefinition","giteaDefinition","codeServerDefinition","portainerDefinition","watchtowerDefinition","dozzleDefinition","beszelDefinition","convexDefinition","convexDashboardDefinition","claudeCodeDefinition","opencodeDefinition","codexDefinition","geminiCliDefinition","kimiDefinition","postizDefinition","mixpostDefinition","matomoDefinition","umamiDefinition","usesendDefinition","listmonkDefinition","missionControlDefinition","openpanelDefinition","lightpandaDefinition","steelBrowserDefinition","coolifyDefinition","dokployDefinition","tailscaleDefinition","livekitDefinition","infisicalDefinition","keycloakDefinition","lasuiteMeetBackendDefinition","lasuiteMeetFrontendDefinition","lasuiteMeetAgentsDefinition","desktopEnvironmentDefinition","streamGatewayDefinition","neo4jDefinition","calComDefinition","xyopsDefinition","scraplingDefinition","hexstrikeDefinition","solidityGuardDefinition","pentagiDefinition","pentestagentDefinition","headscaleDefinition","mysqlDefinition","mariadbDefinition","langfuseDefinition","openhandsDefinition","airflowDefinition","airbyteDefinition","dagsterDefinition","lagoDefinition","twentyDefinition","mauticDefinition","formbricksDefinition","heyformDefinition","kongDefinition","hoppscotchDefinition","vaultDefinition","resticDefinition","duplicatiDefinition","fonosterDefinition","medusaDefinition","saleorDefinition","axolotlDefinition","hedgedocDefinition","excalidrawDefinition","jitsiMeetDefinition","zulipDefinition","elementWebDefinition","revoltDefinition","dragonflyDefinition","surrealdbDefinition","influxdbDefinition","timescaledbDefinition","cockroachdbDefinition","sentryDefinition","jaegerDefinition","tempoDefinition","graylogDefinition","vectorLogDefinition","adguardHomeDefinition","audiobookshelfDefinition","baserowDefinition","calibreWebDefinition","clickhouseDefinition","cloudflaredDefinition","coderDefinition","droneCiDefinition","focalboardDefinition","forgejoDefinition","invokeAiDefinition","janDefinition","localAiDefinition","metabaseDefinition","mosquittoDefinition","navidromeDefinition","nginxProxyManagerDefinition","nodeRedDefinition","photoprismDefinition","piholeDefinition","piperTtsDefinition","planeDefinition","plausibleDefinition","posthogDefinition","sonarqubeDefinition","supersetDefinition","tabbyMlDefinition","textGenWebuiDefinition","vikunjaDefinition","wireguardDefinition","woodpeckerCiDefinition","openSaasDefinition","apptensionSaasDefinition","boxyhqSaasDefinition","ixartzSaasDefinition","cmsaasStarterDefinition"],"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":"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"}
1
+ {"version":3,"file":"index.cjs","names":["redisDefinition","qdrantDefinition","n8nDefinition","ffmpegDefinition","minioDefinition","postgresqlDefinition","caddyDefinition","traefikDefinition","uptimeKumaDefinition","grafanaDefinition","prometheusDefinition","browserlessDefinition","firecrawlDefinition","firecrawlPlaywrightDefinition","searxngDefinition","meilisearchDefinition","opensearchDefinition","ollamaDefinition","whisperDefinition","chromadbDefinition","weaviateDefinition","valkeyDefinition","gotifyDefinition","ntfyDefinition","rabbitmqDefinition","remotionDefinition","motionCanvasDefinition","temporalDefinition","outlineDefinition","docsgptDefinition","paperlessNgxDefinition","nocodbDefinition","appflowyDefinition","directusDefinition","stirlingPdfDefinition","strapiDefinition","matrixSynapseDefinition","rocketchatDefinition","mattermostDefinition","chatwootDefinition","chatwootWorkerDefinition","stableDiffusionDefinition","comfyuiDefinition","playwrightServerDefinition","openWebuiDefinition","langflowDefinition","ragflowDefinition","homeassistantDefinition","nextcloudDefinition","immichDefinition","jellyfinDefinition","vaultwardenDefinition","milvusDefinition","jenkinsDefinition","appwriteDefinition","authentikDefinition","autheliaDefinition","crowdsecDefinition","ghostDefinition","lokiDefinition","signozDefinition","supabaseDefinition","pocketbaseDefinition","pocketIdDefinition","librechatDefinition","anythingLlmDefinition","difyDefinition","flowiseDefinition","litellmDefinition","flagsmithDefinition","giteaDefinition","codeServerDefinition","portainerDefinition","watchtowerDefinition","dozzleDefinition","beszelDefinition","convexDefinition","convexDashboardDefinition","claudeCodeDefinition","opencodeDefinition","codexDefinition","geminiCliDefinition","kimiDefinition","postizDefinition","mixpostDefinition","matomoDefinition","umamiDefinition","usesendDefinition","listmonkDefinition","missionControlDefinition","openpanelDefinition","lightpandaDefinition","steelBrowserDefinition","coolifyDefinition","dokployDefinition","tailscaleDefinition","livekitDefinition","infisicalDefinition","keycloakDefinition","lasuiteMeetBackendDefinition","lasuiteMeetFrontendDefinition","lasuiteMeetAgentsDefinition","desktopEnvironmentDefinition","streamGatewayDefinition","neo4jDefinition","calComDefinition","xyopsDefinition","scraplingDefinition","hexstrikeDefinition","solidityGuardDefinition","pentagiDefinition","pentestagentDefinition","headscaleDefinition","mysqlDefinition","mariadbDefinition","langfuseDefinition","openhandsDefinition","airflowDefinition","airbyteDefinition","dagsterDefinition","lagoDefinition","twentyDefinition","mauticDefinition","formbricksDefinition","heyformDefinition","kongDefinition","hoppscotchDefinition","vaultDefinition","resticDefinition","duplicatiDefinition","fonosterDefinition","medusaDefinition","saleorDefinition","axolotlDefinition","hedgedocDefinition","excalidrawDefinition","jitsiMeetDefinition","zulipDefinition","elementWebDefinition","revoltDefinition","dragonflyDefinition","surrealdbDefinition","influxdbDefinition","timescaledbDefinition","cockroachdbDefinition","sentryDefinition","jaegerDefinition","tempoDefinition","graylogDefinition","vectorLogDefinition","adguardHomeDefinition","audiobookshelfDefinition","baserowDefinition","calibreWebDefinition","clickhouseDefinition","cloudflaredDefinition","coderDefinition","droneCiDefinition","focalboardDefinition","forgejoDefinition","invokeAiDefinition","janDefinition","localAiDefinition","metabaseDefinition","mosquittoDefinition","navidromeDefinition","nginxProxyManagerDefinition","nodeRedDefinition","photoprismDefinition","piholeDefinition","piperTtsDefinition","planeDefinition","plausibleDefinition","posthogDefinition","sonarqubeDefinition","supersetDefinition","tabbyMlDefinition","textGenWebuiDefinition","vikunjaDefinition","wireguardDefinition","woodpeckerCiDefinition","hindsightDefinition","burnlinkDefinition","opensandboxDefinition","openSaasDefinition","apptensionSaasDefinition","boxyhqSaasDefinition","ixartzSaasDefinition","cmsaasStarterDefinition"],"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":"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"}
@@ -14,6 +14,7 @@ import { baserowDefinition } from "./baserow.cjs";
14
14
  import { beszelDefinition } from "./beszel.cjs";
15
15
  import { boxyhqSaasDefinition } from "./boxyhq-saas.cjs";
16
16
  import { browserlessDefinition } from "./browserless.cjs";
17
+ import { burnlinkDefinition } from "./burnlink.cjs";
17
18
  import { caddyDefinition } from "./caddy.cjs";
18
19
  import { calComDefinition } from "./cal-com.cjs";
19
20
  import { calibreWebDefinition } from "./calibre-web.cjs";
@@ -64,6 +65,7 @@ import { headscaleDefinition } from "./headscale.cjs";
64
65
  import { hedgedocDefinition } from "./hedgedoc.cjs";
65
66
  import { hexstrikeDefinition } from "./hexstrike.cjs";
66
67
  import { heyformDefinition } from "./heyform.cjs";
68
+ import { hindsightDefinition } from "./hindsight.cjs";
67
69
  import { homeassistantDefinition } from "./homeassistant.cjs";
68
70
  import { hoppscotchDefinition } from "./hoppscotch.cjs";
69
71
  import { immichDefinition } from "./immich.cjs";
@@ -119,6 +121,7 @@ import { openWebuiDefinition } from "./open-webui.cjs";
119
121
  import { opencodeDefinition } from "./opencode.cjs";
120
122
  import { openhandsDefinition } from "./openhands.cjs";
121
123
  import { openpanelDefinition } from "./openpanel.cjs";
124
+ import { opensandboxDefinition } from "./opensandbox.cjs";
122
125
  import { opensearchDefinition } from "./opensearch.cjs";
123
126
  import { outlineDefinition } from "./outline.cjs";
124
127
  import { paperlessNgxDefinition } from "./paperless-ngx.cjs";
@@ -189,5 +192,5 @@ import { ixartzSaasDefinition } from "./ixartz-saas.cjs";
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.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.cts","names":[],"sources":["../../../src/services/definitions/index.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA2Xa,qBAAA,EAAuB,iBAAA"}
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../../../src/services/definitions/index.ts"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAiYa,qBAAA,EAAuB,iBAAA"}