@lnilluv/pi-ralph-loop 0.0.1 → 0.1.0

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/src/index.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lnilluv/pi-ralph-loop",
3
- "version": "0.0.1",
3
+ "version": "0.1.0",
4
4
  "description": "Pi-native ralph loop — autonomous coding iterations with mid-turn supervision",
5
5
  "type": "module",
6
6
  "pi": {
package/src/index.ts CHANGED
@@ -251,7 +251,7 @@ export default function (pi: ExtensionAPI) {
251
251
  const total = loopState.iterationSummaries.reduce((a, s) => a + s.duration, 0);
252
252
  ctx.ui.notify(
253
253
  `Ralph loop done: ${loopState.iteration} iterations, ${total}s total`,
254
- "success",
254
+ "info",
255
255
  );
256
256
  },
257
257
  });