fastgrc-openclaw 1.0.15 → 1.0.16
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/plugin.d.mts +2 -2
- package/dist/plugin.d.ts +2 -2
- package/dist/plugin.js +4 -1
- package/dist/plugin.mjs +4 -1
- package/package.json +1 -1
package/dist/plugin.d.mts
CHANGED
package/dist/plugin.d.ts
CHANGED
package/dist/plugin.js
CHANGED
|
@@ -99,9 +99,10 @@ args: ${JSON.stringify(args)}`;
|
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
// src/plugin.ts
|
|
102
|
+
process.stderr.write("[fastgrc] plugin.js module loaded\n");
|
|
102
103
|
var DEFAULT_BASE_URL2 = "https://app.fastgrc.ai";
|
|
103
104
|
var DEFAULT_TIMEOUT_MS2 = 3e3;
|
|
104
|
-
var
|
|
105
|
+
var pluginEntry = {
|
|
105
106
|
id: "fastgrc",
|
|
106
107
|
name: "FastGRC Policy Router",
|
|
107
108
|
description: "Evaluate every tool call against your FastGRC compliance policy before it executes. Blocks violations, flags drift, builds an audit trail.",
|
|
@@ -145,3 +146,5 @@ var plugin_default = {
|
|
|
145
146
|
});
|
|
146
147
|
}
|
|
147
148
|
};
|
|
149
|
+
process.stderr.write("[fastgrc] plugin export shape: " + JSON.stringify({ type: typeof pluginEntry, registerType: typeof pluginEntry.register }) + "\n");
|
|
150
|
+
var plugin_default = pluginEntry;
|
package/dist/plugin.mjs
CHANGED
|
@@ -63,9 +63,10 @@ args: ${JSON.stringify(args)}`;
|
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
// src/plugin.ts
|
|
66
|
+
process.stderr.write("[fastgrc] plugin.js module loaded\n");
|
|
66
67
|
var DEFAULT_BASE_URL2 = "https://app.fastgrc.ai";
|
|
67
68
|
var DEFAULT_TIMEOUT_MS2 = 3e3;
|
|
68
|
-
var
|
|
69
|
+
var pluginEntry = {
|
|
69
70
|
id: "fastgrc",
|
|
70
71
|
name: "FastGRC Policy Router",
|
|
71
72
|
description: "Evaluate every tool call against your FastGRC compliance policy before it executes. Blocks violations, flags drift, builds an audit trail.",
|
|
@@ -109,6 +110,8 @@ var plugin_default = {
|
|
|
109
110
|
});
|
|
110
111
|
}
|
|
111
112
|
};
|
|
113
|
+
process.stderr.write("[fastgrc] plugin export shape: " + JSON.stringify({ type: typeof pluginEntry, registerType: typeof pluginEntry.register }) + "\n");
|
|
114
|
+
var plugin_default = pluginEntry;
|
|
112
115
|
export {
|
|
113
116
|
plugin_default as default
|
|
114
117
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fastgrc-openclaw",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.16",
|
|
4
4
|
"description": "FastGRC agent compliance plugin for OpenClaw — evaluates every tool call against your policy before it executes",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|