@rigstate/cli 0.7.18 → 0.7.19
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/.rigstate/cache/heuristics.json +79 -0
- package/.rigstate/daemon.pid +1 -0
- package/.rigstate/daemon.state.json +8 -0
- package/.rigstate/guardian.lock +5 -0
- package/.rigstate/rules-cache.json +166 -0
- package/dist/index.cjs +106 -26
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +106 -26
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/commands/daemon.ts +16 -5
- package/src/daemon/file-watcher.ts +24 -19
- package/src/index.ts +1 -2
package/dist/index.js
CHANGED
|
@@ -1752,9 +1752,67 @@ var require_dist2 = __commonJS({
|
|
|
1752
1752
|
}
|
|
1753
1753
|
});
|
|
1754
1754
|
|
|
1755
|
+
// package.json
|
|
1756
|
+
var require_package = __commonJS({
|
|
1757
|
+
"package.json"(exports, module) {
|
|
1758
|
+
module.exports = {
|
|
1759
|
+
name: "@rigstate/cli",
|
|
1760
|
+
version: "0.7.19",
|
|
1761
|
+
description: "Rigstate CLI - Code audit, sync and supervision tool",
|
|
1762
|
+
type: "module",
|
|
1763
|
+
main: "./dist/index.js",
|
|
1764
|
+
bin: {
|
|
1765
|
+
rigstate: "dist/index.js"
|
|
1766
|
+
},
|
|
1767
|
+
scripts: {
|
|
1768
|
+
dev: "tsup --watch",
|
|
1769
|
+
build: "tsup",
|
|
1770
|
+
lint: "tsc --noEmit",
|
|
1771
|
+
start: "node dist/index.js",
|
|
1772
|
+
test: "node dist/index.js --help"
|
|
1773
|
+
},
|
|
1774
|
+
dependencies: {
|
|
1775
|
+
"@rigstate/rules-engine": "*",
|
|
1776
|
+
"@rigstate/shared": "*",
|
|
1777
|
+
uuid: "^9.0.1",
|
|
1778
|
+
"@types/diff": "^7.0.2",
|
|
1779
|
+
"@types/inquirer": "^9.0.9",
|
|
1780
|
+
axios: "^1.6.5",
|
|
1781
|
+
chalk: "^5.3.0",
|
|
1782
|
+
chokidar: "^3.6.0",
|
|
1783
|
+
commander: "^12.0.0",
|
|
1784
|
+
conf: "^12.0.0",
|
|
1785
|
+
diff: "^4.0.2",
|
|
1786
|
+
dotenv: "^16.4.1",
|
|
1787
|
+
glob: "^10.3.10",
|
|
1788
|
+
inquirer: "^9.3.8",
|
|
1789
|
+
ora: "^8.0.1"
|
|
1790
|
+
},
|
|
1791
|
+
devDependencies: {
|
|
1792
|
+
"@types/node": "^20.11.5",
|
|
1793
|
+
"@types/uuid": "^10.0.0",
|
|
1794
|
+
tsup: "^8.0.1",
|
|
1795
|
+
typescript: "^5.3.3"
|
|
1796
|
+
},
|
|
1797
|
+
engines: {
|
|
1798
|
+
node: ">=18.0.0"
|
|
1799
|
+
},
|
|
1800
|
+
keywords: [
|
|
1801
|
+
"rigstate",
|
|
1802
|
+
"cli",
|
|
1803
|
+
"audit",
|
|
1804
|
+
"security",
|
|
1805
|
+
"code-quality",
|
|
1806
|
+
"supervisor"
|
|
1807
|
+
],
|
|
1808
|
+
author: "Rigstate",
|
|
1809
|
+
license: "MIT"
|
|
1810
|
+
};
|
|
1811
|
+
}
|
|
1812
|
+
});
|
|
1813
|
+
|
|
1755
1814
|
// src/index.ts
|
|
1756
1815
|
init_esm_shims();
|
|
1757
|
-
import { createRequire } from "module";
|
|
1758
1816
|
import { Command as Command23 } from "commander";
|
|
1759
1817
|
import chalk33 from "chalk";
|
|
1760
1818
|
|
|
@@ -3209,34 +3267,47 @@ function createFileWatcher(watchPath) {
|
|
|
3209
3267
|
emitter.start = () => {
|
|
3210
3268
|
const absolutePath = path16.resolve(process.cwd(), watchPath);
|
|
3211
3269
|
watcher = chokidar.watch(absolutePath, {
|
|
3212
|
-
ignored:
|
|
3213
|
-
|
|
3214
|
-
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
|
|
3220
|
-
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3270
|
+
ignored: (pathStr) => {
|
|
3271
|
+
const segments = pathStr.split(path16.sep);
|
|
3272
|
+
const ignoreDirs = [
|
|
3273
|
+
"node_modules",
|
|
3274
|
+
".git",
|
|
3275
|
+
".next",
|
|
3276
|
+
".turbo",
|
|
3277
|
+
"dist",
|
|
3278
|
+
"build",
|
|
3279
|
+
".rigstate",
|
|
3280
|
+
"coverage",
|
|
3281
|
+
"tmp",
|
|
3282
|
+
"temp",
|
|
3283
|
+
"vendor",
|
|
3284
|
+
".cache",
|
|
3285
|
+
"public",
|
|
3286
|
+
"artifacts",
|
|
3287
|
+
"out",
|
|
3288
|
+
".vercel",
|
|
3289
|
+
".npm"
|
|
3290
|
+
];
|
|
3291
|
+
if (segments.some((segment) => ignoreDirs.includes(segment))) {
|
|
3292
|
+
return true;
|
|
3293
|
+
}
|
|
3294
|
+
const isFile = !!path16.extname(pathStr);
|
|
3295
|
+
if (isFile && !isCodeFile3(pathStr)) {
|
|
3296
|
+
return true;
|
|
3297
|
+
}
|
|
3298
|
+
return false;
|
|
3299
|
+
},
|
|
3228
3300
|
persistent: true,
|
|
3229
3301
|
ignoreInitial: true,
|
|
3230
3302
|
ignorePermissionErrors: true,
|
|
3231
|
-
|
|
3232
|
-
|
|
3303
|
+
depth: 10,
|
|
3304
|
+
// Reduced from 20 for large monorepos
|
|
3233
3305
|
awaitWriteFinish: {
|
|
3234
3306
|
stabilityThreshold: 300,
|
|
3235
3307
|
pollInterval: 100
|
|
3236
3308
|
},
|
|
3237
3309
|
usePolling: false,
|
|
3238
3310
|
atomic: true
|
|
3239
|
-
// Handle atomic writes (like vim/saving) better
|
|
3240
3311
|
});
|
|
3241
3312
|
watcher.on("change", (filePath) => {
|
|
3242
3313
|
if (isCodeFile3(filePath)) {
|
|
@@ -3916,10 +3987,20 @@ function createDaemonCommand() {
|
|
|
3916
3987
|
}
|
|
3917
3988
|
const spinner = ora8();
|
|
3918
3989
|
try {
|
|
3919
|
-
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
|
|
3990
|
+
const pidPath = path20.join(process.cwd(), PID_FILE);
|
|
3991
|
+
try {
|
|
3992
|
+
const content = await fs18.readFile(pidPath, "utf-8");
|
|
3993
|
+
const pid = parseInt(content.trim(), 10);
|
|
3994
|
+
try {
|
|
3995
|
+
process.kill(pid, 0);
|
|
3996
|
+
console.log(chalk19.yellow("\u26A0 Another daemon instance is active (PID " + pid + ")."));
|
|
3997
|
+
console.log(chalk19.dim(` Run "rigstate daemon status" for details or Ctrl+C to stop.
|
|
3998
|
+
`));
|
|
3999
|
+
} catch {
|
|
4000
|
+
await fs18.unlink(pidPath).catch(() => {
|
|
4001
|
+
});
|
|
4002
|
+
}
|
|
4003
|
+
} catch {
|
|
3923
4004
|
}
|
|
3924
4005
|
spinner.start("Initializing Guardian Daemon...");
|
|
3925
4006
|
const daemonInstance = await createDaemon({
|
|
@@ -9883,8 +9964,7 @@ async function checkVersion() {
|
|
|
9883
9964
|
|
|
9884
9965
|
// src/index.ts
|
|
9885
9966
|
import dotenv from "dotenv";
|
|
9886
|
-
var
|
|
9887
|
-
var pkg = require2("../package.json");
|
|
9967
|
+
var pkg = require_package();
|
|
9888
9968
|
dotenv.config();
|
|
9889
9969
|
var program = new Command23();
|
|
9890
9970
|
program.name("rigstate").description("CLI for Rigstate - The AI-Native Dev Studio").version(pkg.version);
|