From deli-autoresearch
Use when running long-horizon autonomous research, writing, exploration, benchmark, or experiment tasks that must continue unattended and avoid cognitive loops, stalling, or silent loop death.
How this skill is triggered — by the user, by Claude, or both
Slash command
/deli-autoresearch:deli-autoresearchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Deli AutoResearch is a set of conventions for running a long, unattended agent task. Instead of leaving the loop to manage itself, you keep its state in files, make each round try something genuinely different, decide whether it's stuck by counting results, and run a separate heartbeat watchdog that restarts the loop if it dies.
Deli AutoResearch is a set of conventions for running a long, unattended agent task. Instead of leaving the loop to manage itself, you keep its state in files, make each round try something genuinely different, decide whether it's stuck by counting results, and run a separate heartbeat watchdog that restarts the loop if it dies.
Core principle: don't trust a long-running agent to remember, grade itself, or stay alive. Keep state outside the chat, keep the worker and the thing that judges it separate, and restart from files you control.
Use this for:
Do not use this for:
When operating under this skill, follow these constraints for the scoped run:
level=decision.{task}/state/ and {task}/logs/, not in chat memory.resume unless the user specifically requires it.{task}/state/ and {task}/logs/ (full layout in references/state-schema.md).task_spec.md with goal, allowed actions, validation, and stop conditions.progress.json, findings.jsonl, directions_tried.json, and iteration_log.jsonl.templates/orchestrator.md).templates/heartbeat.md).references/patterns.md).Load subfiles only when the situation calls for them — do not preload everything.
Templates — read when about to launch a role:
templates/orchestrator.md — orchestrator per-callback checklist and prompttemplates/worker.md — worker requirements and prompttemplates/heartbeat.md — watchdog allowed/forbidden actions and promptReferences — read when the situation applies:
references/state-schema.md — directory layout, file formats, log record shapereferences/stall-and-pivot.md — stall thresholds, structural vs tactical pivots, direction-diversity dimensionsreferences/patterns.md — subagent scheduling patterns, validation methods, escalation report format, common mistakesRole → files to load:
| Role | Load |
|---|---|
| Orchestrator | orchestrator.md + stall-and-pivot.md |
| Worker | worker.md + state-schema.md |
| Heartbeat | heartbeat.md |
| Validation or escalation moment | patterns.md |
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Resolves in-progress git merge or rebase conflicts by analyzing history, understanding intent, and preserving both changes where possible. Runs automated checks after resolution.
npx claudepluginhub ziwangprincex/deli-autoresearch-skill-protocol --plugin deli-autoresearch