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 +8 -4
- package/dist/manifest.json +1 -1
- package/package.json +1 -1
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.
|
|
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
|
-
|
|
22486
|
-
|
|
22487
|
-
|
|
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) => {
|
package/dist/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ralphctl",
|
|
3
|
-
"version": "0.6.
|
|
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",
|