opencode-ralph-rlm 0.1.6 → 0.1.7
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 +22 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -265,6 +265,28 @@ If you are setting up a repo from scratch, use this sequence:
|
|
|
265
265
|
|
|
266
266
|
If setup is incomplete, auto-start is skipped and the plugin emits a warning with next actions.
|
|
267
267
|
|
|
268
|
+
## Recommended OpenCode agent setup
|
|
269
|
+
|
|
270
|
+
The plugin already manages the core loop roles (`main` / `ralph` / `worker` / `subagent`).
|
|
271
|
+
Use OpenCode agents to control posture and delegation, not to replace loop orchestration.
|
|
272
|
+
|
|
273
|
+
Recommended split:
|
|
274
|
+
|
|
275
|
+
- `supervisor` (primary): your default top-level operator for safe orchestration.
|
|
276
|
+
- built-in `plan` (primary): dry analysis/planning without edits.
|
|
277
|
+
- built-in `build` (primary): full manual implementation when needed.
|
|
278
|
+
- project subagents (optional): focused review/docs/security helpers.
|
|
279
|
+
|
|
280
|
+
This repo now includes project-local agent files under `.opencode/agents/`:
|
|
281
|
+
|
|
282
|
+
- `.opencode/agents/supervisor.md`
|
|
283
|
+
- `.opencode/agents/ralph-reviewer.md`
|
|
284
|
+
- `.opencode/agents/docs-writer.md`
|
|
285
|
+
- `.opencode/agents/security-auditor.md`
|
|
286
|
+
|
|
287
|
+
These profiles intentionally keep loop ownership in `ralph-rlm`.
|
|
288
|
+
Do not model Ralph strategist/worker as OpenCode primary/subagent replacements.
|
|
289
|
+
|
|
268
290
|
|
|
269
291
|
## Protocol files
|
|
270
292
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-ralph-rlm",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "OpenCode plugin: Ralph outer loop + RLM inner loop. Iterative AI development with file-first discipline and sub-agent support.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/ralph-rlm.js",
|