ralphctl 0.6.0 → 0.6.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.
package/dist/cli.mjs CHANGED
@@ -22,6 +22,8 @@ import {
22
22
  } from "./chunk-HIU74KTO.mjs";
23
23
 
24
24
  // src/application/cli/entrypoint.ts
25
+ import { realpathSync } from "fs";
26
+ import { pathToFileURL } from "url";
25
27
  import { Command } from "commander";
26
28
 
27
29
  // src/kernel/algorithms/rate-limit-coordinator.ts
@@ -22267,7 +22269,7 @@ async function runTicketRemove(deps, opts) {
22267
22269
  // package.json
22268
22270
  var package_default = {
22269
22271
  name: "ralphctl",
22270
- version: "0.6.0",
22272
+ version: "0.6.2",
22271
22273
  description: "Agent harness for long-running AI coding tasks \u2014 orchestrates Claude Code & GitHub Copilot across repositories",
22272
22274
  homepage: "https://github.com/lukas-grigis/ralphctl",
22273
22275
  type: "module",
@@ -22329,7 +22331,7 @@ var package_default = {
22329
22331
  react: "^19.2.5",
22330
22332
  tabtab: "^3.0.2",
22331
22333
  "typescript-result": "^3.5.2",
22332
- zod: "^4.3.6"
22334
+ zod: "^4.4.3"
22333
22335
  },
22334
22336
  devDependencies: {
22335
22337
  "@eslint/js": "^10.0.1",
@@ -22338,20 +22340,20 @@ var package_default = {
22338
22340
  "@types/tabtab": "^3.0.4",
22339
22341
  "@vitest/coverage-v8": "^4.1.5",
22340
22342
  "@vitest/eslint-plugin": "^1.6.16",
22341
- eslint: "^10.2.1",
22343
+ eslint: "^10.3.0",
22342
22344
  "eslint-config-prettier": "^10.1.8",
22343
22345
  "eslint-plugin-import-x": "^4.16.2",
22344
22346
  "eslint-plugin-react-hooks": "^7.1.1",
22345
- globals: "^17.5.0",
22347
+ globals: "^17.6.0",
22346
22348
  husky: "^9.1.7",
22347
22349
  "ink-testing-library": "^4.0.0",
22348
- knip: "^6.9.0",
22350
+ knip: "^6.11.0",
22349
22351
  "lint-staged": "^16.4.0",
22350
22352
  prettier: "^3.8.3",
22351
22353
  tsup: "^8.5.1",
22352
22354
  tsx: "^4.21.0",
22353
- typescript: "^5.9.3",
22354
- "typescript-eslint": "^8.59.0",
22355
+ typescript: "^6.0.3",
22356
+ "typescript-eslint": "^8.59.2",
22355
22357
  vitest: "^4.1.5"
22356
22358
  },
22357
22359
  "lint-staged": {
@@ -22482,9 +22484,11 @@ function shouldAutoInvoke() {
22482
22484
  if (process.env["VITEST"] !== void 0) return false;
22483
22485
  const entry = process.argv[1];
22484
22486
  if (entry === void 0) return false;
22485
- const base = entry.split("/").pop() ?? "";
22486
- if (!/^(entrypoint|cli)\.(ts|mjs|js)$/.test(base)) return false;
22487
- return true;
22487
+ try {
22488
+ return pathToFileURL(realpathSync(entry)).href === import.meta.url;
22489
+ } catch {
22490
+ return false;
22491
+ }
22488
22492
  }
22489
22493
  if (shouldAutoInvoke()) {
22490
22494
  void main(process.argv).then((code) => {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 1,
3
- "generatedAt": "2026-05-04T20:12:39.622Z",
3
+ "generatedAt": "2026-05-04T20:46:15.635Z",
4
4
  "assets": [
5
5
  "prompts/harness-context.md",
6
6
  "prompts/ideate.md",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ralphctl",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "description": "Agent harness for long-running AI coding tasks — orchestrates Claude Code & GitHub Copilot across repositories",
5
5
  "homepage": "https://github.com/lukas-grigis/ralphctl",
6
6
  "type": "module",
@@ -46,7 +46,7 @@
46
46
  "react": "^19.2.5",
47
47
  "tabtab": "^3.0.2",
48
48
  "typescript-result": "^3.5.2",
49
- "zod": "^4.3.6"
49
+ "zod": "^4.4.3"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@eslint/js": "^10.0.1",
@@ -55,20 +55,20 @@
55
55
  "@types/tabtab": "^3.0.4",
56
56
  "@vitest/coverage-v8": "^4.1.5",
57
57
  "@vitest/eslint-plugin": "^1.6.16",
58
- "eslint": "^10.2.1",
58
+ "eslint": "^10.3.0",
59
59
  "eslint-config-prettier": "^10.1.8",
60
60
  "eslint-plugin-import-x": "^4.16.2",
61
61
  "eslint-plugin-react-hooks": "^7.1.1",
62
- "globals": "^17.5.0",
62
+ "globals": "^17.6.0",
63
63
  "husky": "^9.1.7",
64
64
  "ink-testing-library": "^4.0.0",
65
- "knip": "^6.9.0",
65
+ "knip": "^6.11.0",
66
66
  "lint-staged": "^16.4.0",
67
67
  "prettier": "^3.8.3",
68
68
  "tsup": "^8.5.1",
69
69
  "tsx": "^4.21.0",
70
- "typescript": "^5.9.3",
71
- "typescript-eslint": "^8.59.0",
70
+ "typescript": "^6.0.3",
71
+ "typescript-eslint": "^8.59.2",
72
72
  "vitest": "^4.1.5"
73
73
  },
74
74
  "lint-staged": {