opencode-ralph-rlm 0.1.5
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/README.md +609 -0
- package/dist/ralph-rlm.js +24643 -0
- package/package.json +47 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "opencode-ralph-rlm",
|
|
3
|
+
"version": "0.1.5",
|
|
4
|
+
"description": "OpenCode plugin: Ralph outer loop + RLM inner loop. Iterative AI development with file-first discipline and sub-agent support.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/ralph-rlm.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./dist/ralph-rlm.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "bun build .opencode/plugins/ralph-rlm.ts --outfile dist/ralph-rlm.js --target bun --format esm --external @opencode-ai/plugin",
|
|
16
|
+
"typecheck": "tsc --noEmit",
|
|
17
|
+
"prepublishOnly": "bun run build",
|
|
18
|
+
"release": "npm run release:patch",
|
|
19
|
+
"release:patch": "npm version patch && git push --follow-tags",
|
|
20
|
+
"release:minor": "npm version minor && git push --follow-tags",
|
|
21
|
+
"release:major": "npm version major && git push --follow-tags"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"opencode",
|
|
25
|
+
"opencode-plugin",
|
|
26
|
+
"ai",
|
|
27
|
+
"agent",
|
|
28
|
+
"loop",
|
|
29
|
+
"ralph",
|
|
30
|
+
"rlm",
|
|
31
|
+
"recursive-language-model"
|
|
32
|
+
],
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "https://github.com/doeixd/opencode-ralph-rlm"
|
|
36
|
+
},
|
|
37
|
+
"license": "MIT",
|
|
38
|
+
"peerDependencies": {
|
|
39
|
+
"@opencode-ai/plugin": "*"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@opencode-ai/plugin": "*",
|
|
43
|
+
"@types/node": "^22.0.0",
|
|
44
|
+
"effect": "^3.13.0",
|
|
45
|
+
"typescript": "^5.7.0"
|
|
46
|
+
}
|
|
47
|
+
}
|