opencode-auto-loop 0.1.3 → 0.1.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/README.md +2 -2
- package/package.json +1 -1
- package/skills/auto-loop-help/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -43,7 +43,7 @@ The AI will work on your task and automatically continue until completion.
|
|
|
43
43
|
1. `/auto-loop` creates a state file at `.opencode/auto-loop.local.md`
|
|
44
44
|
2. When the AI goes idle, the plugin checks if `<promise>DONE</promise>` was output
|
|
45
45
|
3. If not found, it extracts progress (## Completed / ## Next Steps) and injects a continuation prompt
|
|
46
|
-
4. Loop continues until DONE is found or max iterations (
|
|
46
|
+
4. Loop continues until DONE is found or max iterations (25) reached
|
|
47
47
|
5. State file is deleted when complete
|
|
48
48
|
6. Loop context survives session compaction
|
|
49
49
|
|
|
@@ -75,7 +75,7 @@ Format (markdown with YAML frontmatter):
|
|
|
75
75
|
---
|
|
76
76
|
active: true
|
|
77
77
|
iteration: 3
|
|
78
|
-
maxIterations:
|
|
78
|
+
maxIterations: 25
|
|
79
79
|
sessionId: ses_abc123
|
|
80
80
|
---
|
|
81
81
|
|
package/package.json
CHANGED