@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/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
- "**/node_modules/**",
3214
- "**/.git/**",
3215
- "**/.next/**",
3216
- "**/.turbo/**",
3217
- "**/dist/**",
3218
- "**/build/**",
3219
- "**/.rigstate/**",
3220
- "**/coverage/**",
3221
- "**/.DS_Store",
3222
- "**/tmp/**",
3223
- "**/temp/**",
3224
- "**/vendor/**",
3225
- "**/.cache/**",
3226
- "**/public/**"
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
- // Don't crash on EPERM
3232
- depth: 20,
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
- if (await isRunning()) {
3920
- console.log(chalk19.yellow("\u26A0 Another daemon instance may be running."));
3921
- console.log(chalk19.dim(` Check ${PID_FILE} or run "rigstate daemon status"`));
3922
- console.log(chalk19.dim(" Use Ctrl+C to stop the running daemon first.\n"));
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 require2 = createRequire(import.meta.url);
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);