@alfe.ai/openclaw-identity 0.1.17 → 0.1.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.
- package/dist/plugin2.cjs +1 -0
- package/dist/plugin2.js +2 -1
- package/package.json +2 -2
package/dist/plugin2.cjs
CHANGED
|
@@ -287,6 +287,7 @@ const plugin = {
|
|
|
287
287
|
description: "Identity resolution and access gating for inbound messages",
|
|
288
288
|
version: pkg.version,
|
|
289
289
|
activate(api) {
|
|
290
|
+
(0, _alfe_ai_agent_api_client.installToolErrorCapture)(api, { plugin: "openclaw-identity" });
|
|
290
291
|
const log = api.logger;
|
|
291
292
|
const client = new Proxy({}, { get(_t, prop) {
|
|
292
293
|
const c = getClient();
|
package/dist/plugin2.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { createRequire } from "node:module";
|
|
2
2
|
import { resolveConfig } from "@alfe.ai/config";
|
|
3
|
-
import { AgentApiClient } from "@alfe.ai/agent-api-client";
|
|
3
|
+
import { AgentApiClient, installToolErrorCapture } from "@alfe.ai/agent-api-client";
|
|
4
4
|
import { Type } from "@sinclair/typebox";
|
|
5
5
|
import { createAbility } from "@auriclabs/roles";
|
|
6
6
|
//#region src/agent-exec-gate.ts
|
|
@@ -287,6 +287,7 @@ const plugin = {
|
|
|
287
287
|
description: "Identity resolution and access gating for inbound messages",
|
|
288
288
|
version: pkg.version,
|
|
289
289
|
activate(api) {
|
|
290
|
+
installToolErrorCapture(api, { plugin: "openclaw-identity" });
|
|
290
291
|
const log = api.logger;
|
|
291
292
|
const client = new Proxy({}, { get(_t, prop) {
|
|
292
293
|
const c = getClient();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfe.ai/openclaw-identity",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.19",
|
|
4
4
|
"description": "OpenClaw identity plugin — identity resolution, access gating, permission enforcement",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/plugin.js",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@auriclabs/roles": "0.1.1",
|
|
31
31
|
"@sinclair/typebox": "^0.34.48",
|
|
32
|
-
"@alfe.ai/agent-api-client": "0.
|
|
32
|
+
"@alfe.ai/agent-api-client": "0.8.0",
|
|
33
33
|
"@alfe.ai/config": "0.3.0"
|
|
34
34
|
},
|
|
35
35
|
"license": "UNLICENSED",
|