wendy-cloud-testing
Installation
SKILL.md
Wendy Cloud Testing
This skill supplies the Wendy Cloud-specific testing knowledge. Pair it with
/wendy-iterating to drive a continuous iterate-fix-ship loop:
"Iterate on this feature using /wendy-iterating. Use /wendy-cloud-testing to determine how to test for bugs and completion."
Prerequisites Check
Run at the very start of every session. Fix every gap before running any tests.
#!/usr/bin/env bash
set -euo pipefail
MISSING=()
if ! command -v brew &>/dev/null; then MISSING+=("Homebrew"); fi