@pi-unipi/ralph 0.1.8 → 0.1.10

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/ralph-loop.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-unipi/ralph",
3
- "version": "0.1.8",
3
+ "version": "0.1.10",
4
4
  "description": "Long-running iterative development loops for Pi coding agent",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/ralph-loop.ts CHANGED
@@ -204,7 +204,7 @@ export class RalphLoopManager {
204
204
  const { theme } = this.ctx.ui;
205
205
  const maxStr = state.maxIterations > 0 ? `/${state.maxIterations}` : "";
206
206
 
207
- this.ctx.ui.setStatus("ralph", theme.fg("accent", `🔄 ${state.name} (${state.iteration}${maxStr})`));
207
+ this.ctx.ui.setStatus("ralph", theme.fg("accent", `rl:${state.name} ${state.iteration}${maxStr}`));
208
208
 
209
209
  const lines = [
210
210
  theme.fg("accent", theme.bold("Ralph Loop")),