@th0rgal/ralph-wiggum 1.0.2 → 1.0.3
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/package.json +3 -3
- package/ralph.ts +1 -1
- /package/{cli/ralph.js → bin/ralph} +0 -0
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@th0rgal/ralph-wiggum",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Ralph Wiggum technique for OpenCode - iterative AI development loops with self-correcting agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": ".opencode/plugin/ralph-wiggum.ts",
|
|
7
7
|
"bin": {
|
|
8
|
-
"ralph": "./
|
|
8
|
+
"ralph": "./bin/ralph"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
11
|
"start": "bun ralph.ts",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"install-local": "bun link"
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
|
-
"
|
|
17
|
+
"bin/ralph",
|
|
18
18
|
"ralph.ts",
|
|
19
19
|
".opencode/command/",
|
|
20
20
|
".opencode/plugin/",
|
package/ralph.ts
CHANGED
|
@@ -10,7 +10,7 @@ import { $ } from "bun";
|
|
|
10
10
|
import { existsSync, readFileSync, writeFileSync, mkdirSync, statSync } from "fs";
|
|
11
11
|
import { join } from "path";
|
|
12
12
|
|
|
13
|
-
const VERSION = "1.0.
|
|
13
|
+
const VERSION = "1.0.3";
|
|
14
14
|
|
|
15
15
|
// Parse arguments
|
|
16
16
|
const args = process.argv.slice(2);
|
|
File without changes
|