mit einem Klick
Explain Auto Loop plugin and available commands
npx skills add https://github.com/timmyjl12/opencode-auto-loop --skill auto-loop-helpKopieren Sie diesen Befehl und fügen Sie ihn in Claude Code ein, um den Skill zu installieren
Explain Auto Loop plugin and available commands
npx skills add https://github.com/timmyjl12/opencode-auto-loop --skill auto-loop-helpKopieren Sie diesen Befehl und fügen Sie ihn in Claude Code ein, um den Skill zu installieren
| name | auto-loop-help |
| description | Explain Auto Loop plugin and available commands |
The Auto Loop plugin provides auto-continuation for complex tasks in opencode.
/auto-loop <task>Start an iterative development loop that automatically continues until the task is complete.
Example:
/auto-loop Build a REST API with authentication
The AI will work on your task and automatically continue until completion.
/auto-loop <task> --ralphForce mode: ignore all completion signals and run for the full iteration count. Useful when you got interrupted and want to resume, or when you want the AI to keep iterating without stopping early.
Examples:
/auto-loop --ralph Continue the refactoring
/auto-loop --ralph --max 10 Fix all lint errors
/cancel-auto-loopCancel an active Auto Loop before it completes.
Example:
/cancel-auto-loop
/auto-loop-helpShow plugin help and available commands.
/auto-loop creates a state file at .opencode/auto-loop.local.md<promise>DONE</promise> was outputWhen the task is fully complete, the AI outputs:
<promise>DONE</promise>
This signals the loop to stop. The AI should ONLY output this when the task is truly complete.
Located at .opencode/auto-loop.local.md (add to .gitignore):
---
active: true
iteration: 3
maxIterations: 25
sessionId: ses_abc123
---
Your original task prompt
## Completed
- [x] Set up project structure
## Next Steps
- [ ] Add authentication