wendy-cloud-iterate
Installation
SKILL.md
Wendy Cloud Iterate
This skill drives an autonomous continuous loop that starts the Wendy Cloud dev stack, runs the integration test suite, diagnoses any failures, attempts fixes, and self-paces based on results.
Prerequisites Check
Run this block at the very start of every session before touching any code or starting any service. Fix every gap before proceeding.
#!/usr/bin/env bash
set -euo pipefail
MISSING=()
# --- Homebrew (needed to install everything else on macOS) ---
if ! command -v brew &>/dev/null; then
echo "Installing Homebrew..."
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
fi