@rigour-labs/mcp 2.18.1 → 2.18.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.
@@ -0,0 +1,51 @@
1
+ # Rigour Governance Skills
2
+
3
+ Rigour provides meta-cognitive governance tools to ensure AI agents stay aligned with engineering standards, project context, and brand identity during long-running coworking tasks.
4
+
5
+ ## Skills
6
+
7
+ ### `rigour_checkpoint`
8
+ Record a quality checkpoint during long-running agent execution. Use periodically (every 15-30 min) to enable drift detection and quality monitoring. Essential for coworking mode.
9
+
10
+ **Parameters:**
11
+ - `cwd` (string, required): Absolute path to the project root.
12
+ - `progressPct` (number, required): Estimated progress percentage (0-100).
13
+ - `summary` (string, required): Brief description of work done since last checkpoint.
14
+ - `qualityScore` (number, required): Self-assessed quality score (0-100).
15
+ - `filesChanged` (array of strings): List of files modified since last checkpoint.
16
+
17
+ ---
18
+
19
+ ### `rigour_agent_register`
20
+ Register an agent in a multi-agent session. Use this at the START of agent execution to claim task scope and enable cross-agent conflict detection.
21
+
22
+ **Parameters:**
23
+ - `cwd` (string, required): Absolute path to the project root.
24
+ - `agentId` (string, required): Unique identifier for this agent (e.g., 'marketing-pro', 'sales-bot').
25
+ - `taskScope` (array of strings, required): Glob patterns defining the files/directories this agent will work on.
26
+
27
+ ---
28
+
29
+ ### `rigour_check`
30
+ Run all configured quality gates (Lint, Test, AST, etc.) on the project. Call this before completing a task to verify overall quality.
31
+
32
+ **Parameters:**
33
+ - `cwd` (string, required): Absolute path to the project root.
34
+
35
+ ---
36
+
37
+ ### `rigour_get_fix_packet`
38
+ If gates fail, call this to retrieve a prioritized 'Fix Packet' containing detailed instructions on how to resolve the violations.
39
+
40
+ **Parameters:**
41
+ - `cwd` (string, required): Absolute path to the project root.
42
+
43
+ ---
44
+
45
+ ### `rigour_remember`
46
+ Persist critical instructions or project-specific conventions that should be remembered across sessions.
47
+
48
+ **Parameters:**
49
+ - `cwd` (string, required): Absolute path to the project root.
50
+ - `key` (string, required): Unique key for the memory.
51
+ - `value` (string, required): The instruction or context to remember.
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "Rigour Quality Governance",
3
+ "version": "2.14.0",
4
+ "description": "Meta-cognitive governance for AI agents. Monitor drift, manage agent teams, and enforce quality gates during long-running coworking tasks.",
5
+ "author": "Rigour Labs",
6
+ "capabilities": {
7
+ "mcp": {
8
+ "enabled": true
9
+ }
10
+ },
11
+ "entrypoint": "../dist/index.js",
12
+ "icon": "🛡️",
13
+ "categories": [
14
+ "Productivity",
15
+ "Developer Tools"
16
+ ]
17
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rigour-labs/mcp",
3
- "version": "2.18.1",
3
+ "version": "2.18.2",
4
4
  "type": "module",
5
5
  "mcpName": "io.github.rigour-labs/rigour",
6
6
  "description": "Quality gates for AI-generated code. Forces AI agents to meet strict engineering standards with PASS/FAIL enforcement.",
@@ -20,7 +20,7 @@
20
20
  "execa": "^8.0.1",
21
21
  "fs-extra": "^11.2.0",
22
22
  "yaml": "^2.8.2",
23
- "@rigour-labs/core": "2.18.1"
23
+ "@rigour-labs/core": "2.18.2"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/node": "^25.0.3",