🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

pi-ralph-loop

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pi-ralph-loop - npm Package Compare versions

Comparing version
0.1.2
to
0.1.3
+7
-0
CHANGELOG.md
# Changelog
## Unreleased
## v0.1.3
### Fixed
- Prevented unused Ralph Loop sessions from creating `.pi/ralph-loop-debug.jsonl` before `/loop` has started.
## v0.1.2

@@ -4,0 +11,0 @@

+8
-1

@@ -252,2 +252,6 @@ export const DEFAULT_MAX_ITERATIONS = 10;

shutdown(): void {
if (!this.state.active) {
return;
}
this.stop(undefined, "info");

@@ -386,3 +390,6 @@ }

const ctx = this.context;
this.emitDebug({ event: "loop_stop", message, notifyType: type });
const wasActive = this.state.active;
if (wasActive) {
this.emitDebug({ event: "loop_stop", message, notifyType: type });
}
this.state = this.createInactiveState();

@@ -389,0 +396,0 @@ this.continuationScheduled = false;

+1
-1
{
"name": "pi-ralph-loop",
"version": "0.1.2",
"version": "0.1.3",
"description": "Pi extension that reruns a prompt from a clean session checkpoint for bounded Ralph loops.",

@@ -5,0 +5,0 @@ "type": "module",