@rigour-labs/mcp 2.22.0 → 3.0.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/README.md CHANGED
@@ -14,7 +14,9 @@ Rigour is a local-first Model Context Protocol (MCP) server that forces AI agent
14
14
  Rigour moves code quality enforcement from the "Post-Commit" phase to the "In-Progress" phase. By running as an MCP server inside your editor, it provides the AI with a deterministic PASS/FAIL loop, preventing "Vibe Coding" and broken builds.
15
15
 
16
16
  ### Key Features:
17
- - **Quality Gates**: Deterministic checks for file size, complexity, and hygiene.
17
+ - **Quality Gates**: Deterministic checks for file size, complexity, hygiene, and AI-native drift detection.
18
+ - **Multi-Language**: Gates support TypeScript, JavaScript, Python, Go, Ruby, and C#/.NET.
19
+ - **Two-Score System**: Separate AI Health Score and Structural Score with provenance tracking.
18
20
  - **Context Memory**: Persistent memory that tracks project rules and patterns across sessions.
19
21
  - **Pattern Reinvention Blocking**: Warns or blocks the AI when it tries to rewrite existing utilities.
20
22
  - **Security Audits**: Real-time CVE detection for dependencies the AI is suggesting.
@@ -30,10 +32,18 @@ Rigour moves code quality enforcement from the "Post-Commit" phase to the "In-Pr
30
32
  |:---|:---|
31
33
  | `rigour_check` | Runs all configured quality gates on the current workspace. |
32
34
  | `rigour_explain` | Explains why a specific gate failed and provides actionable fix instructions. |
35
+ | `rigour_status` | Quick PASS/FAIL check with JSON-friendly output for polling. |
36
+ | `rigour_get_fix_packet` | Retrieves prioritized Fix Packet (v2) with severity and provenance. |
37
+ | `rigour_list_gates` | Lists all configured quality gates and their thresholds. |
38
+ | `rigour_get_config` | Returns the current rigour.yml configuration. |
33
39
  | `rigour_check_pattern` | Checks if a proposed code pattern already exists in the codebase. |
34
40
  | `rigour_remember` | Stores project-specific context or rules in Rigour's persistent memory. |
35
41
  | `rigour_recall` | Retrieves stored context to guide AI generation. |
42
+ | `rigour_forget` | Removes a stored memory by key. |
36
43
  | `rigour_security_audit` | Runs a live CVE check on project dependencies. |
44
+ | `rigour_run` | Executes a command under Rigour supervision with human arbitration. |
45
+ | `rigour_run_supervised` | Full supervisor mode — iterative command + gate check loop. |
46
+ | `rigour_review` | High-fidelity code review on a PR diff against all quality gates. |
37
47
 
38
48
  ### Frontier Model Tools (v2.14+)
39
49