@rigour-labs/cli 5.1.0 → 5.1.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 +1 -1
- package/dist/commands/setup.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -105,7 +105,7 @@ rigour hooks check --files src/a.ts # manual fast check
|
|
|
105
105
|
Five-signal extraction → LLM interpretation → deterministic verification pipeline.
|
|
106
106
|
|
|
107
107
|
```bash
|
|
108
|
-
rigour check --deep # Local sidecar (
|
|
108
|
+
rigour check --deep # Local sidecar (Qwen2.5-Coder-0.5B, any CPU)
|
|
109
109
|
rigour check --deep --pro # Full model (Qwen2.5-Coder-1.5B)
|
|
110
110
|
rigour check --deep --provider claude -k sk-ant-xxx # Cloud BYOK
|
|
111
111
|
```
|
package/dist/commands/setup.js
CHANGED
|
@@ -48,7 +48,7 @@ export async function setupCommand() {
|
|
|
48
48
|
if (hasDeep)
|
|
49
49
|
console.log(chalk.green(' ✔ Local model: deep (Qwen2.5-Coder-1.5B, 900MB)'));
|
|
50
50
|
if (hasLite)
|
|
51
|
-
console.log(chalk.green(' ✔ Local model: lite (
|
|
51
|
+
console.log(chalk.green(' ✔ Local model: lite (Qwen2.5-Coder-0.5B, 500MB)'));
|
|
52
52
|
if (!hasDeep && !hasLite) {
|
|
53
53
|
console.log(chalk.yellow(' ○ No local models cached'));
|
|
54
54
|
console.log(chalk.dim(` Models dir: ${getModelsDir()}`));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rigour-labs/cli",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.1",
|
|
4
4
|
"description": "CLI quality gates for AI-generated code. Forces AI agents (Claude, Cursor, Copilot) to meet strict engineering standards with PASS/FAIL enforcement.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://rigour.run",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"inquirer": "9.2.16",
|
|
45
45
|
"ora": "^8.0.1",
|
|
46
46
|
"yaml": "^2.8.2",
|
|
47
|
-
"@rigour-labs/core": "5.1.
|
|
47
|
+
"@rigour-labs/core": "5.1.1"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@types/fs-extra": "^11.0.4",
|