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 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 (100) reached
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: 100
78
+ maxIterations: 25
79
79
  sessionId: ses_abc123
80
80
  ---
81
81
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-auto-loop",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Auto-continue for OpenCode",
5
5
  "main": "src/index.ts",
6
6
  "type": "module",
@@ -57,7 +57,7 @@ Located at `.opencode/auto-loop.local.md` (add to `.gitignore`):
57
57
  ---
58
58
  active: true
59
59
  iteration: 3
60
- maxIterations: 100
60
+ maxIterations: 25
61
61
  sessionId: ses_abc123
62
62
  ---
63
63