ralphctl 0.6.1 → 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.1",
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",
@@ -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:33:33.154Z",
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.1",
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",