@rigour-labs/mcp 4.3.0 → 4.3.1
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/utils/config.d.ts +12 -0
- package/package.json +2 -2
package/dist/utils/config.d.ts
CHANGED
|
@@ -195,6 +195,18 @@ export declare function loadConfig(cwd: string): Promise<{
|
|
|
195
195
|
custom_patterns: string[];
|
|
196
196
|
audit_log: boolean;
|
|
197
197
|
};
|
|
198
|
+
side_effect_analysis: {
|
|
199
|
+
enabled: boolean;
|
|
200
|
+
ignore_patterns: string[];
|
|
201
|
+
check_unbounded_timers: boolean;
|
|
202
|
+
check_unbounded_loops: boolean;
|
|
203
|
+
check_process_lifecycle: boolean;
|
|
204
|
+
check_recursive_depth: boolean;
|
|
205
|
+
check_resource_lifecycle: boolean;
|
|
206
|
+
check_retry_without_limit: boolean;
|
|
207
|
+
check_circular_triggers: boolean;
|
|
208
|
+
check_auto_restart: boolean;
|
|
209
|
+
};
|
|
198
210
|
};
|
|
199
211
|
hooks: {
|
|
200
212
|
enabled: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rigour-labs/mcp",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"description": "MCP server for AI code governance — OWASP LLM Top 10 (10/10), real-time hooks, 25+ security patterns, hallucinated import detection, multi-agent governance. Works with Claude, Cursor, Cline, Windsurf, Gemini. Industry presets for HIPAA, SOC2, FedRAMP.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://rigour.run",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"execa": "^8.0.1",
|
|
49
49
|
"fs-extra": "^11.2.0",
|
|
50
50
|
"yaml": "^2.8.2",
|
|
51
|
-
"@rigour-labs/core": "4.3.
|
|
51
|
+
"@rigour-labs/core": "4.3.1"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@types/node": "^25.0.3",
|