fastgrc-openclaw 1.0.3 → 1.0.4
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.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -108,7 +108,7 @@ function FastGRCPlugin(options) {
|
|
|
108
108
|
} = options;
|
|
109
109
|
if (!apiKey) {
|
|
110
110
|
console.warn(
|
|
111
|
-
'[fastgrc] FastGRCPlugin: apiKey is not set \u2014 all tool calls will proceed unchecked.\
|
|
111
|
+
'[fastgrc] FastGRCPlugin: apiKey is not set \u2014 all tool calls will proceed unchecked.\n\n Get a free API key at: https://app.fastgrc.ai/connect\n\n Then set it in openclaw.config.ts:\n FastGRCPlugin({ apiKey: "fgrc_k1_your_key_here" })\n\n To rotate your key: replace the value in openclaw.config.ts and restart OpenClaw.\n Manage keys at: https://app.fastgrc.ai/dashboard/settings'
|
|
112
112
|
);
|
|
113
113
|
}
|
|
114
114
|
const dashboardUrl = `${baseUrl.replace(/\/$/, "")}/dashboard/agent-policies`;
|
package/dist/index.mjs
CHANGED
|
@@ -81,7 +81,7 @@ function FastGRCPlugin(options) {
|
|
|
81
81
|
} = options;
|
|
82
82
|
if (!apiKey) {
|
|
83
83
|
console.warn(
|
|
84
|
-
'[fastgrc] FastGRCPlugin: apiKey is not set \u2014 all tool calls will proceed unchecked.\
|
|
84
|
+
'[fastgrc] FastGRCPlugin: apiKey is not set \u2014 all tool calls will proceed unchecked.\n\n Get a free API key at: https://app.fastgrc.ai/connect\n\n Then set it in openclaw.config.ts:\n FastGRCPlugin({ apiKey: "fgrc_k1_your_key_here" })\n\n To rotate your key: replace the value in openclaw.config.ts and restart OpenClaw.\n Manage keys at: https://app.fastgrc.ai/dashboard/settings'
|
|
85
85
|
);
|
|
86
86
|
}
|
|
87
87
|
const dashboardUrl = `${baseUrl.replace(/\/$/, "")}/dashboard/agent-policies`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fastgrc-openclaw",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
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",
|