@neriros/ralphy 2.20.3 → 2.20.4
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/README.md +1 -1
- package/dist/cli/index.js +6 -18
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -245,7 +245,7 @@ Both scripts log failures but never block the loop. **`appendPrompt`** (or `--pr
|
|
|
245
245
|
|
|
246
246
|
### Dashboard and logs
|
|
247
247
|
|
|
248
|
-
The terminal dashboard shows three always-visible panels: **RALPH AGENT** (engine/model, concurrency, poll interval, active limits, feature flags, Linear filter), **POLL STATUS + WORKERS** (last-poll bucket breakdown — `
|
|
248
|
+
The terminal dashboard shows three always-visible panels: **RALPH AGENT** (engine/model, concurrency, poll interval, active limits, feature flags, Linear filter), **POLL STATUS + WORKERS** (last-poll bucket breakdown — `todo · res · conf · rev · @` (each colored when non-zero) plus `↺ Ns` next-poll countdown, active/queued worker totals), and **TASKS tab bar** (numbered worker tabs — `Tab` / `← →` / `1-9` to switch).
|
|
249
249
|
|
|
250
250
|
Each worker card shows: priority badge + identifier + title + mode badge, `↗ LINEAR`, `↗ PR`, `▶ TASK` (first unchecked task from `tasks.md`, refreshed every second), `PHASE` with color + elapsed time, `⏵ CMD` when a shell command is in flight, `LOG` path for `tail -f`, and `─ OUTPUT ─` with live stdout/stderr.
|
|
251
251
|
|
package/dist/cli/index.js
CHANGED
|
@@ -35029,8 +35029,8 @@ import { readFileSync as readFileSync2 } from "fs";
|
|
|
35029
35029
|
import { resolve } from "path";
|
|
35030
35030
|
function getVersion() {
|
|
35031
35031
|
try {
|
|
35032
|
-
if ("2.20.
|
|
35033
|
-
return "2.20.
|
|
35032
|
+
if ("2.20.4")
|
|
35033
|
+
return "2.20.4";
|
|
35034
35034
|
} catch {}
|
|
35035
35035
|
const dirsToTry = [];
|
|
35036
35036
|
try {
|
|
@@ -73659,18 +73659,6 @@ function AgentMode({ args, projectRoot, statesDir, tasksDir }) {
|
|
|
73659
73659
|
}, undefined, false, undefined, this),
|
|
73660
73660
|
pollStatus.lastAt !== null && /* @__PURE__ */ jsx_dev_runtime9.jsxDEV(jsx_dev_runtime9.Fragment, {
|
|
73661
73661
|
children: [
|
|
73662
|
-
/* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Text, {
|
|
73663
|
-
dimColor: true,
|
|
73664
|
-
children: "\u2502"
|
|
73665
|
-
}, undefined, false, undefined, this),
|
|
73666
|
-
/* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Text, {
|
|
73667
|
-
dimColor: true,
|
|
73668
|
-
children: "found"
|
|
73669
|
-
}, undefined, false, undefined, this),
|
|
73670
|
-
/* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Text, {
|
|
73671
|
-
color: "white",
|
|
73672
|
-
children: pollStatus.lastFound
|
|
73673
|
-
}, undefined, false, undefined, this),
|
|
73674
73662
|
pollStatus.lastBuckets && /* @__PURE__ */ jsx_dev_runtime9.jsxDEV(jsx_dev_runtime9.Fragment, {
|
|
73675
73663
|
children: [
|
|
73676
73664
|
/* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Text, {
|
|
@@ -73691,7 +73679,7 @@ function AgentMode({ args, projectRoot, statesDir, tasksDir }) {
|
|
|
73691
73679
|
}, undefined, false, undefined, this),
|
|
73692
73680
|
/* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Text, {
|
|
73693
73681
|
dimColor: true,
|
|
73694
|
-
children: "
|
|
73682
|
+
children: "res"
|
|
73695
73683
|
}, undefined, false, undefined, this),
|
|
73696
73684
|
/* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Text, {
|
|
73697
73685
|
color: pollStatus.lastBuckets.inProgress > 0 ? "cyan" : "white",
|
|
@@ -73703,7 +73691,7 @@ function AgentMode({ args, projectRoot, statesDir, tasksDir }) {
|
|
|
73703
73691
|
}, undefined, false, undefined, this),
|
|
73704
73692
|
/* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Text, {
|
|
73705
73693
|
dimColor: true,
|
|
73706
|
-
children: "
|
|
73694
|
+
children: "conf"
|
|
73707
73695
|
}, undefined, false, undefined, this),
|
|
73708
73696
|
/* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Text, {
|
|
73709
73697
|
color: pollStatus.lastBuckets.conflicted > 0 ? "red" : "white",
|
|
@@ -73715,7 +73703,7 @@ function AgentMode({ args, projectRoot, statesDir, tasksDir }) {
|
|
|
73715
73703
|
}, undefined, false, undefined, this),
|
|
73716
73704
|
/* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Text, {
|
|
73717
73705
|
dimColor: true,
|
|
73718
|
-
children: "
|
|
73706
|
+
children: "rev"
|
|
73719
73707
|
}, undefined, false, undefined, this),
|
|
73720
73708
|
/* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Text, {
|
|
73721
73709
|
color: pollStatus.lastBuckets.review > 0 ? "yellow" : "white",
|
|
@@ -73727,7 +73715,7 @@ function AgentMode({ args, projectRoot, statesDir, tasksDir }) {
|
|
|
73727
73715
|
}, undefined, false, undefined, this),
|
|
73728
73716
|
/* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Text, {
|
|
73729
73717
|
dimColor: true,
|
|
73730
|
-
children: "
|
|
73718
|
+
children: "@"
|
|
73731
73719
|
}, undefined, false, undefined, this),
|
|
73732
73720
|
/* @__PURE__ */ jsx_dev_runtime9.jsxDEV(Text, {
|
|
73733
73721
|
color: pollStatus.lastBuckets.mentions > 0 ? "magenta" : "white",
|