@th0rgal/ralph-wiggum 1.0.3 → 1.0.4

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 CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@th0rgal/ralph-wiggum",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
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": "./bin/ralph"
8
+ "ralph": "./bin/ralph.js"
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
- "bin/ralph",
17
+ "bin/ralph.js",
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.3";
13
+ const VERSION = "1.0.4";
14
14
 
15
15
  // Parse arguments
16
16
  const args = process.argv.slice(2);
File without changes