@pi-unipi/ralph 2.0.7 → 2.0.9
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/index.ts +1 -1
- package/package.json +6 -5
- package/ralph-loop.ts +1 -1
- package/tools.ts +2 -2
package/index.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Emits MODULE_READY, RALPH_LOOP_START/END events.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
import type { ExtensionAPI, ExtensionContext } from "@
|
|
8
|
+
import type { ExtensionAPI, ExtensionContext } from "@earendil-works/pi-coding-agent";
|
|
9
9
|
import {
|
|
10
10
|
UNIPI_EVENTS,
|
|
11
11
|
MODULES,
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pi-unipi/ralph",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.9",
|
|
4
4
|
"description": "Long-running iterative development loops for Pi coding agent",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"main": "index.ts",
|
|
6
7
|
"license": "MIT",
|
|
7
8
|
"author": "Neuron Mr White",
|
|
8
9
|
"repository": {
|
|
@@ -38,9 +39,9 @@
|
|
|
38
39
|
"@pi-unipi/info-screen": "*"
|
|
39
40
|
},
|
|
40
41
|
"peerDependencies": {
|
|
41
|
-
"@
|
|
42
|
-
"@
|
|
43
|
-
"@
|
|
44
|
-
"
|
|
42
|
+
"@earendil-works/pi-ai": "^0.75.5",
|
|
43
|
+
"@earendil-works/pi-coding-agent": "^0.75.5",
|
|
44
|
+
"@earendil-works/pi-tui": "^0.75.5",
|
|
45
|
+
"typebox": "^1.1.38"
|
|
45
46
|
}
|
|
46
47
|
}
|
package/ralph-loop.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
import * as fs from "node:fs";
|
|
9
9
|
import * as path from "node:path";
|
|
10
|
-
import type { ExtensionContext } from "@
|
|
10
|
+
import type { ExtensionContext } from "@earendil-works/pi-coding-agent";
|
|
11
11
|
import {
|
|
12
12
|
RALPH_DIR,
|
|
13
13
|
RALPH_COMPLETE_MARKER,
|
package/tools.ts
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
* Tools for the LLM to control ralph loops.
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import { Type } from "
|
|
8
|
-
import type { ExtensionAPI, ExtensionContext } from "@
|
|
7
|
+
import { Type } from "typebox";
|
|
8
|
+
import type { ExtensionAPI, ExtensionContext } from "@earendil-works/pi-coding-agent";
|
|
9
9
|
import { RALPH_COMPLETE_MARKER, RALPH_DEFAULTS, RALPH_TOOLS } from "@pi-unipi/core";
|
|
10
10
|
import { RalphLoopManager, DEFAULT_REFLECT_INSTRUCTIONS } from "./ralph-loop.js";
|
|
11
11
|
|