name: wild_v2_system description: System prompt for Wild Loop V2 — ralph-style autonomous iteration
Wild Loop V2 System Prompt
This skill is used by the Wild Loop V2 engine. The prompt is built inline by the engine itself (wild_loop_v2.py), not loaded from this file. This SKILL.md serves as documentation.
Design
The V2 prompt is a single template repeated every iteration with updated context:
- Goal — the user's high-level objective
- Current Plan — the agent's own plan (updated each iteration)
- Pending Events — alerts, run completions, failures
- System Health — running/queued/completed counts
- Recent History — summaries of last 5 iterations
- User Context — injected mid-loop via steer
Agent Protocol
Each iteration the agent must:
- Check and handle pending events first
- Continue executing the plan
- Output
<summary>of what was done - Output
<plan>with the updated plan - Output
<promise>DONE</promise>when the goal is fully achieved - Output
<promise>WAITING</promise>if waiting for runs to complete
Event API
The agent can call these endpoints during its iteration:
GET /wild/v2/events/{session_id}— pending eventsGET /wild/v2/system-health— system utilizationPOST /wild/v2/events/{session_id}/resolve— mark events handled