@alfe.ai/integrations 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +52 -8
- package/dist/index.js +97 -26
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -264,7 +264,15 @@ interface RuntimeApplier {
|
|
|
264
264
|
* for the eventual `getCredentials(provider)` generalisation.
|
|
265
265
|
*/
|
|
266
266
|
interface CredentialsResolver {
|
|
267
|
-
|
|
267
|
+
/**
|
|
268
|
+
* Resolve credentials for env interpolation. `opts.connectionId`
|
|
269
|
+
* scopes resolution to a specific connection (Custom Connections),
|
|
270
|
+
* returning a flat field map; without it, resolution is
|
|
271
|
+
* provider-scoped (the agent's primary connection for the provider).
|
|
272
|
+
*/
|
|
273
|
+
getCredentials: (provider: string, opts?: {
|
|
274
|
+
connectionId?: string;
|
|
275
|
+
}) => Promise<Record<string, unknown> | undefined>;
|
|
268
276
|
}
|
|
269
277
|
/**
|
|
270
278
|
* Daemon-level platform context exposed to `{{alfe.<key>}}` env
|
|
@@ -298,7 +306,9 @@ declare class McpApplier {
|
|
|
298
306
|
* the daemon-hosted bundler will pick the change up via the store
|
|
299
307
|
* watcher and reconcile its children.
|
|
300
308
|
*/
|
|
301
|
-
applyForIntegration(integrationId: string, servers: McpServerDeclaration[], mergedConfig: Record<string, unknown
|
|
309
|
+
applyForIntegration(integrationId: string, servers: McpServerDeclaration[], mergedConfig: Record<string, unknown>, opts?: {
|
|
310
|
+
connectionId?: string;
|
|
311
|
+
}): Promise<string[]>;
|
|
302
312
|
/**
|
|
303
313
|
* Drop every entry owned by this integration. Store writes are
|
|
304
314
|
* durable before `removeServersByOwner` resolves; the daemon's
|
|
@@ -314,10 +324,37 @@ declare class McpApplier {
|
|
|
314
324
|
*
|
|
315
325
|
* These define the payloads for integration lifecycle operations.
|
|
316
326
|
*/
|
|
327
|
+
/**
|
|
328
|
+
* Embedded git pointer for a Custom Connection-driven install. When
|
|
329
|
+
* present on an install, the manager clones `manifestRepo` at
|
|
330
|
+
* `manifestCommit` and installs from the directory containing
|
|
331
|
+
* `manifestPath`, bypassing the central registry resolver (Custom
|
|
332
|
+
* Connection manifests are per-tenant and never registry-published).
|
|
333
|
+
* Defined structurally so the gateway's `DesiredCustomSource` is
|
|
334
|
+
* assignable without a cross-package import.
|
|
335
|
+
*/
|
|
336
|
+
interface CustomInstallSource {
|
|
337
|
+
/** Backing custom Connection — used to scope credential resolution. */
|
|
338
|
+
connectionId: string;
|
|
339
|
+
/** `https://github.com/{owner}/{repo}` clone URL. */
|
|
340
|
+
manifestRepo: string;
|
|
341
|
+
/** Path to the manifest inside the repo (its directory is the install root). */
|
|
342
|
+
manifestPath: string;
|
|
343
|
+
/** Symbolic ref the operator pinned (display/provenance only). */
|
|
344
|
+
manifestRef: string;
|
|
345
|
+
/** Blob SHA of the manifest file content (not checkout-able). */
|
|
346
|
+
manifestSha: string;
|
|
347
|
+
/** Checkout-able commit SHA to clone. */
|
|
348
|
+
manifestCommit: string;
|
|
349
|
+
/** Already-parsed-and-validated manifest blob (optional convenience). */
|
|
350
|
+
manifest?: unknown;
|
|
351
|
+
}
|
|
317
352
|
interface IntegrationInstallParams {
|
|
318
353
|
name: string;
|
|
319
354
|
version?: string;
|
|
320
355
|
config?: Record<string, unknown>;
|
|
356
|
+
/** Set for Custom Connection-driven installs (clone-from-git). */
|
|
357
|
+
customSource?: CustomInstallSource;
|
|
321
358
|
}
|
|
322
359
|
interface IntegrationRemoveParams {
|
|
323
360
|
name: string;
|
|
@@ -670,7 +707,7 @@ declare class OpenClawApplier implements RuntimeApplier {
|
|
|
670
707
|
private skillsDir;
|
|
671
708
|
private trackingPath;
|
|
672
709
|
constructor(options: OpenClawApplierOptions);
|
|
673
|
-
applyPlugin(
|
|
710
|
+
applyPlugin(spec: string, _installPath?: string, opts?: {
|
|
674
711
|
force?: boolean;
|
|
675
712
|
}): Promise<void>;
|
|
676
713
|
/**
|
|
@@ -697,7 +734,7 @@ declare class OpenClawApplier implements RuntimeApplier {
|
|
|
697
734
|
* write through the npm path with a proper tracking record.
|
|
698
735
|
*/
|
|
699
736
|
private cleanupUntrackedExtensionInstall;
|
|
700
|
-
removePlugin(
|
|
737
|
+
removePlugin(spec: string): Promise<void>;
|
|
701
738
|
applySkill(name: string, srcPath: string): Promise<void>;
|
|
702
739
|
applyClawHubSkill(slug: string): Promise<void>;
|
|
703
740
|
removeClawHubSkill(slug: string): Promise<void>;
|
|
@@ -723,6 +760,13 @@ declare class OpenClawApplier implements RuntimeApplier {
|
|
|
723
760
|
//#endregion
|
|
724
761
|
//#region src/lock.d.ts
|
|
725
762
|
interface RuntimePluginEntry {
|
|
763
|
+
/**
|
|
764
|
+
* The full npm install spec from the manifest (e.g. `@scope/name@1.2.3`).
|
|
765
|
+
* Consumers that key off the installed plugin's identity (file-system
|
|
766
|
+
* lookups, openclaw allowlist, cross-integration claim matching) must
|
|
767
|
+
* pass this through `stripPluginVersion` from `./plugin-spec.js` first.
|
|
768
|
+
* Only `openclaw plugins install` should receive the unstripped spec.
|
|
769
|
+
*/
|
|
726
770
|
package: string;
|
|
727
771
|
sourceIntegration: string;
|
|
728
772
|
integrationVersion: string;
|
|
@@ -785,7 +829,7 @@ interface IIntegrationManager {
|
|
|
785
829
|
installedAt?: string;
|
|
786
830
|
}[]>;
|
|
787
831
|
/** Install an integration at a specific version with config */
|
|
788
|
-
install(integrationId: string, version: string, config: unknown): Promise<void>;
|
|
832
|
+
install(integrationId: string, version: string, config: unknown, customSource?: CustomInstallSource): Promise<void>;
|
|
789
833
|
/** Activate an installed integration */
|
|
790
834
|
activate(integrationId: string): Promise<{
|
|
791
835
|
configApplied: boolean;
|
|
@@ -795,7 +839,7 @@ interface IIntegrationManager {
|
|
|
795
839
|
/** Uninstall an integration */
|
|
796
840
|
uninstall(integrationId: string): Promise<void>;
|
|
797
841
|
/** Reinstall an integration — full teardown then fresh install + activate */
|
|
798
|
-
reinstall(integrationId: string, version: string, config: unknown): Promise<{
|
|
842
|
+
reinstall(integrationId: string, version: string, config: unknown, customSource?: CustomInstallSource): Promise<{
|
|
799
843
|
configApplied: boolean;
|
|
800
844
|
}>;
|
|
801
845
|
/** Check if an integration's install directory and manifest are intact on disk */
|
|
@@ -816,13 +860,13 @@ declare class IntegrationManagerAdapter implements IIntegrationManager {
|
|
|
816
860
|
status: string;
|
|
817
861
|
installedAt?: string;
|
|
818
862
|
}[]>;
|
|
819
|
-
install(integrationId: string, version: string, config: unknown): Promise<void>;
|
|
863
|
+
install(integrationId: string, version: string, config: unknown, customSource?: CustomInstallSource): Promise<void>;
|
|
820
864
|
activate(integrationId: string): Promise<{
|
|
821
865
|
configApplied: boolean;
|
|
822
866
|
}>;
|
|
823
867
|
deactivate(integrationId: string): Promise<void>;
|
|
824
868
|
uninstall(integrationId: string): Promise<void>;
|
|
825
|
-
reinstall(integrationId: string, version: string, config: unknown): Promise<{
|
|
869
|
+
reinstall(integrationId: string, version: string, config: unknown, customSource?: CustomInstallSource): Promise<{
|
|
826
870
|
configApplied: boolean;
|
|
827
871
|
}>;
|
|
828
872
|
isInstallIntact(integrationId: string): Promise<boolean>;
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { execFile, spawn } from "node:child_process";
|
|
2
2
|
import { promisify } from "node:util";
|
|
3
|
-
import { dirname, join } from "node:path";
|
|
3
|
+
import { basename, dirname, join } from "node:path";
|
|
4
4
|
import { homedir, platform, tmpdir } from "node:os";
|
|
5
|
-
import { closeSync, cpSync, existsSync, mkdirSync, mkdtempSync, openSync, readFileSync, readSync, readdirSync, rmSync, writeFileSync } from "node:fs";
|
|
5
|
+
import { closeSync, copyFileSync, cpSync, existsSync, mkdirSync, mkdtempSync, openSync, readFileSync, readSync, readdirSync, rmSync, writeFileSync } from "node:fs";
|
|
6
6
|
import { buildConfigValidationSchema, parseManifestFile } from "@alfe.ai/integration-manifest";
|
|
7
7
|
import { createLogger } from "@auriclabs/logger";
|
|
8
8
|
//#region src/registry.ts
|
|
@@ -796,6 +796,26 @@ async function runHookWithContext(integrationPath, hookScript, options) {
|
|
|
796
796
|
return runHook(integrationPath, hookScript, buildHookEnv(options));
|
|
797
797
|
}
|
|
798
798
|
//#endregion
|
|
799
|
+
//#region src/plugin-spec.ts
|
|
800
|
+
/**
|
|
801
|
+
* Plugin spec parsing.
|
|
802
|
+
*
|
|
803
|
+
* Manifests express plugin installs as `package: "@scope/name@version"` strings
|
|
804
|
+
* (npm specifier form). The npm install command accepts the full spec, but file-
|
|
805
|
+
* system checks, plugin-allowlist entries, and cross-integration claim matching
|
|
806
|
+
* need the bare package name (npm stores `node_modules/<name>`, not
|
|
807
|
+
* `node_modules/<name>@<ver>`).
|
|
808
|
+
*
|
|
809
|
+
* `stripPluginVersion` returns the bare package name from any spec, handling
|
|
810
|
+
* scoped (`@scope/name@1.2.3`) and unscoped (`name@1.2.3`) forms. Specs without
|
|
811
|
+
* a version are returned unchanged.
|
|
812
|
+
*/
|
|
813
|
+
function stripPluginVersion(spec) {
|
|
814
|
+
const at = spec.lastIndexOf("@");
|
|
815
|
+
if (at <= 0) return spec;
|
|
816
|
+
return spec.slice(0, at);
|
|
817
|
+
}
|
|
818
|
+
//#endregion
|
|
799
819
|
//#region src/integration-manager.ts
|
|
800
820
|
/**
|
|
801
821
|
* Integration Manager — full lifecycle management for Alfe integrations.
|
|
@@ -848,6 +868,37 @@ function resolveInstallsForRuntime(manifest, runtime) {
|
|
|
848
868
|
config: runtimeSpecific?.config
|
|
849
869
|
};
|
|
850
870
|
}
|
|
871
|
+
/**
|
|
872
|
+
* Build a clone target for a Custom Connection-driven install,
|
|
873
|
+
* bypassing the central registry resolver. The manifest's directory
|
|
874
|
+
* inside the repo becomes the install root (subdir extraction); the
|
|
875
|
+
* checkout-able `manifestCommit` pins the clone.
|
|
876
|
+
*/
|
|
877
|
+
function buildCustomResolved(id, cs) {
|
|
878
|
+
if (id.includes("/") || id.includes("\\") || id.includes("..")) throw new Error(`Refusing custom integration id with path separators: ${id}`);
|
|
879
|
+
const dir = dirname(cs.manifestPath);
|
|
880
|
+
const subdir = dir === "." || dir === "" ? void 0 : dir;
|
|
881
|
+
const manifestVersion = cs.manifest?.version;
|
|
882
|
+
return {
|
|
883
|
+
id,
|
|
884
|
+
repository: cs.manifestRepo,
|
|
885
|
+
version: manifestVersion ?? "unknown",
|
|
886
|
+
commit: cs.manifestCommit,
|
|
887
|
+
subdir,
|
|
888
|
+
description: ""
|
|
889
|
+
};
|
|
890
|
+
}
|
|
891
|
+
/**
|
|
892
|
+
* The lifecycle assumes the manifest is named `alfe-integration.yaml`.
|
|
893
|
+
* Custom Connections may point at a differently-named file, so after
|
|
894
|
+
* cloning we alias the actual file to the canonical name if needed.
|
|
895
|
+
*/
|
|
896
|
+
function ensureCanonicalManifestName(installPath, manifestPath) {
|
|
897
|
+
const canonical = join(installPath, "alfe-integration.yaml");
|
|
898
|
+
if (existsSync(canonical)) return;
|
|
899
|
+
const actual = join(installPath, basename(manifestPath));
|
|
900
|
+
if (existsSync(actual)) copyFileSync(actual, canonical);
|
|
901
|
+
}
|
|
851
902
|
var IntegrationManager = class {
|
|
852
903
|
log = createLogger("IntegrationManager");
|
|
853
904
|
state;
|
|
@@ -883,7 +934,7 @@ var IntegrationManager = class {
|
|
|
883
934
|
* They are applied during activate() via runtime appliers.
|
|
884
935
|
*/
|
|
885
936
|
async install(params) {
|
|
886
|
-
const { name, version, config } = params;
|
|
937
|
+
const { name, version, config, customSource } = params;
|
|
887
938
|
if (!name) return this.err("INVALID_PARAMS", "Integration name is required");
|
|
888
939
|
const existing = this.state.get(name);
|
|
889
940
|
if (existing) {
|
|
@@ -906,13 +957,21 @@ var IntegrationManager = class {
|
|
|
906
957
|
status: "installing",
|
|
907
958
|
version: version ?? "unknown",
|
|
908
959
|
installedAt: (/* @__PURE__ */ new Date()).toISOString(),
|
|
909
|
-
config: {}
|
|
960
|
+
config: {},
|
|
961
|
+
customConnectionId: customSource?.connectionId
|
|
910
962
|
});
|
|
911
963
|
try {
|
|
912
|
-
|
|
913
|
-
|
|
964
|
+
let resolved;
|
|
965
|
+
if (customSource) {
|
|
966
|
+
resolved = buildCustomResolved(name, customSource);
|
|
967
|
+
this.log.info(`Custom Connection install: ${name} from ${resolved.repository}@${resolved.commit}`);
|
|
968
|
+
} else {
|
|
969
|
+
resolved = await this.resolver.resolve(name, version);
|
|
970
|
+
this.log.info(`Resolved ${name}@${resolved.version} from ${resolved.repository}`);
|
|
971
|
+
}
|
|
914
972
|
const installPath = await this.installer.install(resolved);
|
|
915
973
|
this.log.info(`Cloned to ${installPath}`);
|
|
974
|
+
if (customSource) ensureCanonicalManifestName(installPath, customSource.manifestPath);
|
|
916
975
|
const manifestPath = join(installPath, "alfe-integration.yaml");
|
|
917
976
|
if (!existsSync(manifestPath)) throw new Error(`No alfe-integration.yaml found in ${installPath}`);
|
|
918
977
|
const manifest = parseManifestFile(manifestPath);
|
|
@@ -939,7 +998,8 @@ var IntegrationManager = class {
|
|
|
939
998
|
status: "installed",
|
|
940
999
|
version: manifest.version,
|
|
941
1000
|
installedAt: (/* @__PURE__ */ new Date()).toISOString(),
|
|
942
|
-
config: config ?? {}
|
|
1001
|
+
config: config ?? {},
|
|
1002
|
+
customConnectionId: customSource?.connectionId
|
|
943
1003
|
});
|
|
944
1004
|
this.log.info(`Integration "${name}" installed successfully`);
|
|
945
1005
|
return {
|
|
@@ -1097,7 +1157,7 @@ var IntegrationManager = class {
|
|
|
1097
1157
|
...secretEntries ? Object.fromEntries(secretEntries) : {}
|
|
1098
1158
|
};
|
|
1099
1159
|
this.log.info(`Applying ${String(mcpServers.length)} MCP server(s) for ${integrationId} via bundler manager`);
|
|
1100
|
-
await this.mcpApplier.applyForIntegration(integrationId, mcpServers, mergedConfig);
|
|
1160
|
+
await this.mcpApplier.applyForIntegration(integrationId, mcpServers, mergedConfig, { connectionId: entry.customConnectionId });
|
|
1101
1161
|
}
|
|
1102
1162
|
this.state.setStatus(integrationId, "active");
|
|
1103
1163
|
if (manifest.hooks.post_activate) {
|
|
@@ -1166,7 +1226,7 @@ var IntegrationManager = class {
|
|
|
1166
1226
|
const claimedPluginsByRuntime = /* @__PURE__ */ new Map();
|
|
1167
1227
|
const claimedSkillsByRuntime = /* @__PURE__ */ new Map();
|
|
1168
1228
|
for (const [rtName, state] of Object.entries(remaining.runtimes)) {
|
|
1169
|
-
claimedPluginsByRuntime.set(rtName, new Set(state.plugins.map((p) => p.package)));
|
|
1229
|
+
claimedPluginsByRuntime.set(rtName, new Set(state.plugins.map((p) => stripPluginVersion(p.package))));
|
|
1170
1230
|
claimedSkillsByRuntime.set(rtName, new Set(state.skills.map((s) => s.name)));
|
|
1171
1231
|
}
|
|
1172
1232
|
for (const [runtimeName, entries] of Object.entries(removed)) {
|
|
@@ -1182,7 +1242,7 @@ var IntegrationManager = class {
|
|
|
1182
1242
|
const keepPlugins = claimedPluginsByRuntime.get(runtimeName) ?? /* @__PURE__ */ new Set();
|
|
1183
1243
|
const keepSkills = claimedSkillsByRuntime.get(runtimeName) ?? /* @__PURE__ */ new Set();
|
|
1184
1244
|
for (const plugin of entries.plugins) {
|
|
1185
|
-
if (keepPlugins.has(plugin.package)) {
|
|
1245
|
+
if (keepPlugins.has(stripPluginVersion(plugin.package))) {
|
|
1186
1246
|
this.log.info(`Keeping plugin ${plugin.package} on ${runtimeName} — still claimed by another active integration`);
|
|
1187
1247
|
continue;
|
|
1188
1248
|
}
|
|
@@ -1592,16 +1652,21 @@ var OpenClawApplier = class {
|
|
|
1592
1652
|
this.skillsDir = options.skillsDir ?? DEFAULT_SKILLS_DIR;
|
|
1593
1653
|
this.trackingPath = options.configPath ?? join(this.home, "config.json");
|
|
1594
1654
|
}
|
|
1595
|
-
async applyPlugin(
|
|
1655
|
+
async applyPlugin(spec, _installPath, opts) {
|
|
1656
|
+
const pkg = stripPluginVersion(spec);
|
|
1596
1657
|
await this.ensurePluginsAllow(pkg);
|
|
1597
1658
|
this.cleanupUntrackedExtensionInstall(pkg);
|
|
1598
1659
|
if (opts?.force && this.isPluginInstalled(pkg)) {
|
|
1599
|
-
log$1.info({
|
|
1660
|
+
log$1.info({
|
|
1661
|
+
pkg,
|
|
1662
|
+
spec
|
|
1663
|
+
}, "Force mode — uninstalling plugin before reinstall");
|
|
1600
1664
|
try {
|
|
1601
1665
|
await this.removePlugin(pkg);
|
|
1602
1666
|
} catch (err) {
|
|
1603
1667
|
log$1.warn({
|
|
1604
1668
|
pkg,
|
|
1669
|
+
spec,
|
|
1605
1670
|
err: err instanceof Error ? err.message : String(err)
|
|
1606
1671
|
}, "Failed to uninstall plugin during force reinstall — proceeding");
|
|
1607
1672
|
}
|
|
@@ -1610,7 +1675,7 @@ var OpenClawApplier = class {
|
|
|
1610
1675
|
const baseArgs = [
|
|
1611
1676
|
"plugins",
|
|
1612
1677
|
"install",
|
|
1613
|
-
|
|
1678
|
+
spec,
|
|
1614
1679
|
"--force"
|
|
1615
1680
|
];
|
|
1616
1681
|
const useUnsafeFlag = pkg.startsWith("@alfe.ai/");
|
|
@@ -1632,6 +1697,7 @@ var OpenClawApplier = class {
|
|
|
1632
1697
|
if (!this.isPluginInstalled(pkg)) throw err;
|
|
1633
1698
|
log$1.warn({
|
|
1634
1699
|
pkg,
|
|
1700
|
+
spec,
|
|
1635
1701
|
err: err instanceof Error ? err.message : String(err)
|
|
1636
1702
|
}, "openclaw plugins install exited with warnings but plugin is installed");
|
|
1637
1703
|
}
|
|
@@ -1731,12 +1797,12 @@ var OpenClawApplier = class {
|
|
|
1731
1797
|
}
|
|
1732
1798
|
}
|
|
1733
1799
|
}
|
|
1734
|
-
async removePlugin(
|
|
1800
|
+
async removePlugin(spec) {
|
|
1735
1801
|
await execFileAsync("openclaw", [
|
|
1736
1802
|
"plugins",
|
|
1737
1803
|
"uninstall",
|
|
1738
1804
|
"--force",
|
|
1739
|
-
|
|
1805
|
+
stripPluginVersion(spec)
|
|
1740
1806
|
], { timeout: 3e4 });
|
|
1741
1807
|
}
|
|
1742
1808
|
applySkill(name, srcPath) {
|
|
@@ -1923,12 +1989,12 @@ var McpApplier = class {
|
|
|
1923
1989
|
* the daemon-hosted bundler will pick the change up via the store
|
|
1924
1990
|
* watcher and reconcile its children.
|
|
1925
1991
|
*/
|
|
1926
|
-
async applyForIntegration(integrationId, servers, mergedConfig) {
|
|
1992
|
+
async applyForIntegration(integrationId, servers, mergedConfig, opts) {
|
|
1927
1993
|
const owner = `integration:${integrationId}`;
|
|
1928
1994
|
const applied = [];
|
|
1929
1995
|
for (const server of servers) {
|
|
1930
1996
|
const id = `${integrationId}-${server.id}`;
|
|
1931
|
-
const envResolved = await this.resolveEnv(server, mergedConfig);
|
|
1997
|
+
const envResolved = await this.resolveEnv(server, mergedConfig, opts?.connectionId);
|
|
1932
1998
|
if (envResolved == null) {
|
|
1933
1999
|
log.info({
|
|
1934
2000
|
integrationId,
|
|
@@ -1954,17 +2020,19 @@ var McpApplier = class {
|
|
|
1954
2020
|
const owner = `integration:${integrationId}`;
|
|
1955
2021
|
return this.manager.removeServersByOwner(owner);
|
|
1956
2022
|
}
|
|
1957
|
-
async resolveEnv(server, mergedConfig) {
|
|
2023
|
+
async resolveEnv(server, mergedConfig, connectionId) {
|
|
1958
2024
|
if (!server.env || Object.keys(server.env).length === 0) return {};
|
|
1959
|
-
const
|
|
2025
|
+
const provider = server.requires_credentials;
|
|
2026
|
+
const needsCredentials = Boolean(provider) || Boolean(connectionId);
|
|
1960
2027
|
let credentialsCache;
|
|
1961
2028
|
if (needsCredentials) {
|
|
1962
2029
|
try {
|
|
1963
|
-
credentialsCache = await this.credentials.getCredentials(
|
|
2030
|
+
credentialsCache = await this.credentials.getCredentials(provider ?? "custom", connectionId ? { connectionId } : void 0);
|
|
1964
2031
|
} catch (err) {
|
|
1965
2032
|
log.warn({
|
|
1966
2033
|
err: errMsg(err),
|
|
1967
|
-
provider
|
|
2034
|
+
provider,
|
|
2035
|
+
connectionId
|
|
1968
2036
|
}, "Credentials fetch threw — skipping MCP registration");
|
|
1969
2037
|
return null;
|
|
1970
2038
|
}
|
|
@@ -1975,7 +2043,8 @@ var McpApplier = class {
|
|
|
1975
2043
|
const interpolated = interpolateString(value, mergedConfig, credentialsCache, this.platform);
|
|
1976
2044
|
if (needsCredentials && hasCredentialsPlaceholder(interpolated)) {
|
|
1977
2045
|
log.warn({
|
|
1978
|
-
provider
|
|
2046
|
+
provider,
|
|
2047
|
+
connectionId,
|
|
1979
2048
|
key
|
|
1980
2049
|
}, "Credentials interpolation left a placeholder — skipping MCP registration");
|
|
1981
2050
|
return null;
|
|
@@ -2028,11 +2097,12 @@ var IntegrationManagerAdapter = class {
|
|
|
2028
2097
|
installedAt: i.installedAt
|
|
2029
2098
|
})));
|
|
2030
2099
|
}
|
|
2031
|
-
async install(integrationId, version, config) {
|
|
2100
|
+
async install(integrationId, version, config, customSource) {
|
|
2032
2101
|
const result = await this.manager.install({
|
|
2033
2102
|
name: integrationId,
|
|
2034
2103
|
version,
|
|
2035
|
-
config
|
|
2104
|
+
config,
|
|
2105
|
+
customSource
|
|
2036
2106
|
});
|
|
2037
2107
|
if (!result.ok) throw new Error(result.error?.message ?? `Failed to install ${integrationId}`);
|
|
2038
2108
|
}
|
|
@@ -2049,11 +2119,12 @@ var IntegrationManagerAdapter = class {
|
|
|
2049
2119
|
const result = await this.manager.uninstall({ name: integrationId });
|
|
2050
2120
|
if (!result.ok) throw new Error(result.error?.message ?? `Failed to uninstall ${integrationId}`);
|
|
2051
2121
|
}
|
|
2052
|
-
async reinstall(integrationId, version, config) {
|
|
2122
|
+
async reinstall(integrationId, version, config, customSource) {
|
|
2053
2123
|
const result = await this.manager.reinstall({
|
|
2054
2124
|
name: integrationId,
|
|
2055
2125
|
version,
|
|
2056
|
-
config
|
|
2126
|
+
config,
|
|
2127
|
+
customSource
|
|
2057
2128
|
});
|
|
2058
2129
|
if (!result.ok) throw new Error(result.error?.message ?? `Failed to reinstall ${integrationId}`);
|
|
2059
2130
|
return { configApplied: result.payload?.configApplied ?? false };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfe.ai/integrations",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Integration lifecycle management for Alfe — registry, resolution, installation, and state",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@auriclabs/logger": "^0.1.1",
|
|
16
|
-
"@alfe.ai/integration-manifest": "^0.2.
|
|
16
|
+
"@alfe.ai/integration-manifest": "^0.2.1",
|
|
17
17
|
"@alfe.ai/mcp-bundler": "^0.2.0"
|
|
18
18
|
},
|
|
19
19
|
"files": [
|