fastgrc-openclaw 1.0.1 → 1.0.2
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/bin.js +5 -1
- package/dist/bin.mjs +5 -1
- package/package.json +44 -44
package/dist/bin.js
CHANGED
|
@@ -99,7 +99,7 @@ async function main() {
|
|
|
99
99
|
if (!result) {
|
|
100
100
|
process.exit(0);
|
|
101
101
|
}
|
|
102
|
-
const { decision, reasoning, policyContext } = result;
|
|
102
|
+
const { decision, reasoning, policyContext, reasonTags } = result;
|
|
103
103
|
const matchedRule = policyContext?.matchedRule;
|
|
104
104
|
if (decision === "block") {
|
|
105
105
|
const msg = matchedRule ? `FastGRC blocked: [${matchedRule}] ${reasoning}` : `FastGRC blocked: ${reasoning}`;
|
|
@@ -115,6 +115,10 @@ Review at: ${baseUrl}/dashboard/agent-policies
|
|
|
115
115
|
);
|
|
116
116
|
process.exit(2);
|
|
117
117
|
}
|
|
118
|
+
if (Array.isArray(reasonTags) && reasonTags.includes("override_block_active")) {
|
|
119
|
+
const msg = matchedRule ? `[FastGRC] Observability mode \u2014 would have blocked: [${matchedRule}] ${reasoning}` : `[FastGRC] Observability mode \u2014 would have blocked: ${reasoning}`;
|
|
120
|
+
process.stderr.write(msg + "\n");
|
|
121
|
+
}
|
|
118
122
|
process.exit(0);
|
|
119
123
|
}
|
|
120
124
|
main().catch((err) => {
|
package/dist/bin.mjs
CHANGED
|
@@ -98,7 +98,7 @@ async function main() {
|
|
|
98
98
|
if (!result) {
|
|
99
99
|
process.exit(0);
|
|
100
100
|
}
|
|
101
|
-
const { decision, reasoning, policyContext } = result;
|
|
101
|
+
const { decision, reasoning, policyContext, reasonTags } = result;
|
|
102
102
|
const matchedRule = policyContext?.matchedRule;
|
|
103
103
|
if (decision === "block") {
|
|
104
104
|
const msg = matchedRule ? `FastGRC blocked: [${matchedRule}] ${reasoning}` : `FastGRC blocked: ${reasoning}`;
|
|
@@ -114,6 +114,10 @@ Review at: ${baseUrl}/dashboard/agent-policies
|
|
|
114
114
|
);
|
|
115
115
|
process.exit(2);
|
|
116
116
|
}
|
|
117
|
+
if (Array.isArray(reasonTags) && reasonTags.includes("override_block_active")) {
|
|
118
|
+
const msg = matchedRule ? `[FastGRC] Observability mode \u2014 would have blocked: [${matchedRule}] ${reasoning}` : `[FastGRC] Observability mode \u2014 would have blocked: ${reasoning}`;
|
|
119
|
+
process.stderr.write(msg + "\n");
|
|
120
|
+
}
|
|
117
121
|
process.exit(0);
|
|
118
122
|
}
|
|
119
123
|
main().catch((err) => {
|
package/package.json
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "fastgrc-openclaw",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "FastGRC agent compliance plugin for OpenClaw — evaluates every tool call against your policy before it executes",
|
|
5
|
-
"main": "./dist/index.js",
|
|
6
|
-
"module": "./dist/index.mjs",
|
|
7
|
-
"types": "./dist/index.d.ts",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"types": "./dist/index.d.ts",
|
|
11
|
-
"import": "./dist/index.mjs",
|
|
12
|
-
"require": "./dist/index.js"
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
"bin": {
|
|
16
|
-
"fastgrc-hook": "./dist/bin.js"
|
|
17
|
-
},
|
|
18
|
-
"files": [
|
|
19
|
-
"dist",
|
|
20
|
-
"README.md"
|
|
21
|
-
],
|
|
22
|
-
"scripts": {
|
|
23
|
-
"build": "tsup && node -e \"require('fs').chmodSync('dist/bin.js', '755')\"",
|
|
24
|
-
"dev": "tsup --watch",
|
|
25
|
-
"typecheck": "tsc --noEmit"
|
|
26
|
-
},
|
|
27
|
-
"keywords": [
|
|
28
|
-
"fastgrc",
|
|
29
|
-
"openclaw",
|
|
30
|
-
"ai-agent",
|
|
31
|
-
"compliance",
|
|
32
|
-
"policy",
|
|
33
|
-
"security"
|
|
34
|
-
],
|
|
35
|
-
"author": "FastGRC <support@fastgrc.ai>",
|
|
36
|
-
"license": "MIT",
|
|
37
|
-
"devDependencies": {
|
|
38
|
-
"tsup": "^8.0.0",
|
|
39
|
-
"typescript": "^5.0.0"
|
|
40
|
-
},
|
|
41
|
-
"engines": {
|
|
42
|
-
"node": ">=18"
|
|
43
|
-
}
|
|
44
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "fastgrc-openclaw",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "FastGRC agent compliance plugin for OpenClaw — evaluates every tool call against your policy before it executes",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"bin": {
|
|
16
|
+
"fastgrc-hook": "./dist/bin.js"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"README.md"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "tsup && node -e \"require('fs').chmodSync('dist/bin.js', '755')\"",
|
|
24
|
+
"dev": "tsup --watch",
|
|
25
|
+
"typecheck": "tsc --noEmit"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"fastgrc",
|
|
29
|
+
"openclaw",
|
|
30
|
+
"ai-agent",
|
|
31
|
+
"compliance",
|
|
32
|
+
"policy",
|
|
33
|
+
"security"
|
|
34
|
+
],
|
|
35
|
+
"author": "FastGRC <support@fastgrc.ai>",
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"tsup": "^8.0.0",
|
|
39
|
+
"typescript": "^5.0.0"
|
|
40
|
+
},
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=18"
|
|
43
|
+
}
|
|
44
|
+
}
|