@alfe.ai/integrations 0.0.18 → 0.0.19

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 (2) hide show
  1. package/dist/index.js +4 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1422,11 +1422,13 @@ var OpenClawApplier = class {
1422
1422
  await this.ensurePluginsAllow(pkg);
1423
1423
  if (!this.isPluginInstalled(pkg)) {
1424
1424
  try {
1425
- await execFileAsync("openclaw", [
1425
+ const args = [
1426
1426
  "plugins",
1427
1427
  "install",
1428
1428
  pkg
1429
- ], { timeout: 6e4 });
1429
+ ];
1430
+ if (pkg.startsWith("@alfe.ai/")) args.push("--dangerously-force-unsafe-install");
1431
+ await execFileAsync("openclaw", args, { timeout: 6e4 });
1430
1432
  } catch (err) {
1431
1433
  await new Promise((r) => {
1432
1434
  setTimeout(r, 500);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfe.ai/integrations",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "description": "Integration lifecycle management for Alfe — registry, resolution, installation, and state",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",