@rigstate/cli 0.7.17 → 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,6 +1752,65 @@ 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
1816
  import { Command as Command23 } from "commander";
@@ -3208,34 +3267,47 @@ function createFileWatcher(watchPath) {
3208
3267
  emitter.start = () => {
3209
3268
  const absolutePath = path16.resolve(process.cwd(), watchPath);
3210
3269
  watcher = chokidar.watch(absolutePath, {
3211
- ignored: [
3212
- "**/node_modules/**",
3213
- "**/.git/**",
3214
- "**/.next/**",
3215
- "**/.turbo/**",
3216
- "**/dist/**",
3217
- "**/build/**",
3218
- "**/.rigstate/**",
3219
- "**/coverage/**",
3220
- "**/.DS_Store",
3221
- "**/tmp/**",
3222
- "**/temp/**",
3223
- "**/vendor/**",
3224
- "**/.cache/**",
3225
- "**/public/**"
3226
- ],
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
+ },
3227
3300
  persistent: true,
3228
3301
  ignoreInitial: true,
3229
3302
  ignorePermissionErrors: true,
3230
- // Don't crash on EPERM
3231
- depth: 20,
3303
+ depth: 10,
3304
+ // Reduced from 20 for large monorepos
3232
3305
  awaitWriteFinish: {
3233
3306
  stabilityThreshold: 300,
3234
3307
  pollInterval: 100
3235
3308
  },
3236
3309
  usePolling: false,
3237
3310
  atomic: true
3238
- // Handle atomic writes (like vim/saving) better
3239
3311
  });
3240
3312
  watcher.on("change", (filePath) => {
3241
3313
  if (isCodeFile3(filePath)) {
@@ -3915,10 +3987,20 @@ function createDaemonCommand() {
3915
3987
  }
3916
3988
  const spinner = ora8();
3917
3989
  try {
3918
- if (await isRunning()) {
3919
- console.log(chalk19.yellow("\u26A0 Another daemon instance may be running."));
3920
- console.log(chalk19.dim(` Check ${PID_FILE} or run "rigstate daemon status"`));
3921
- 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 {
3922
4004
  }
3923
4005
  spinner.start("Initializing Guardian Daemon...");
3924
4006
  const daemonInstance = await createDaemon({
@@ -9703,14 +9785,14 @@ function createReleaseCommand() {
9703
9785
  spinner.text = "Scanning completed tasks...";
9704
9786
  const pkgPath = path24.resolve(process.cwd(), "package.json");
9705
9787
  const pkgContent = await fs22.readFile(pkgPath, "utf-8");
9706
- const pkg = JSON.parse(pkgContent);
9707
- const currentVersion = pkg.version;
9788
+ const pkg2 = JSON.parse(pkgContent);
9789
+ const currentVersion = pkg2.version;
9708
9790
  const [major, minor, patch] = currentVersion.split(".").map(Number);
9709
9791
  let newVersion = currentVersion;
9710
9792
  if (type === "major") newVersion = `${major + 1}.0.0`;
9711
9793
  if (type === "minor") newVersion = `${major}.${minor + 1}.0`;
9712
9794
  if (type === "patch") newVersion = `${major}.${minor}.${patch + 1}`;
9713
- spinner.succeed(`Bumping ${pkg.name} from ${chalk30.dim(currentVersion)} to ${chalk30.green(newVersion)}`);
9795
+ spinner.succeed(`Bumping ${pkg2.name} from ${chalk30.dim(currentVersion)} to ${chalk30.green(newVersion)}`);
9714
9796
  const { confirm } = await inquirer5.prompt([{
9715
9797
  type: "confirm",
9716
9798
  name: "confirm",
@@ -9721,8 +9803,8 @@ function createReleaseCommand() {
9721
9803
  console.log("Aborted.");
9722
9804
  return;
9723
9805
  }
9724
- pkg.version = newVersion;
9725
- await fs22.writeFile(pkgPath, JSON.stringify(pkg, null, 4));
9806
+ pkg2.version = newVersion;
9807
+ await fs22.writeFile(pkgPath, JSON.stringify(pkg2, null, 4));
9726
9808
  const changelogPath = path24.resolve(process.cwd(), "CHANGELOG.md");
9727
9809
  const date = (/* @__PURE__ */ new Date()).toISOString().split("T")[0];
9728
9810
  const entry = `
@@ -9882,9 +9964,10 @@ async function checkVersion() {
9882
9964
 
9883
9965
  // src/index.ts
9884
9966
  import dotenv from "dotenv";
9967
+ var pkg = require_package();
9885
9968
  dotenv.config();
9886
9969
  var program = new Command23();
9887
- program.name("rigstate").description("CLI for Rigstate - The AI-Native Dev Studio").version("0.7.5");
9970
+ program.name("rigstate").description("CLI for Rigstate - The AI-Native Dev Studio").version(pkg.version);
9888
9971
  program.addCommand(createLoginCommand());
9889
9972
  program.addCommand(createLinkCommand());
9890
9973
  program.addCommand(createScanCommand());