skill
Three-Musketeers
Public Unreviewedby Drew Owens
Execute complex plans and projects with three agents — a Builder, an Adversarial Reviewer, and a Verifier — looping until it genuinely works. The build half of the plan->build pipeline.
#!/bin/bash
set -e
PKG_DIR="$(cd "$(dirname "$0")" && pwd)"
DEST="$HOME/.claude/skills/three-musketeers"
mkdir -p "$DEST"
cp "$PKG_DIR/SKILL.md" "$DEST/SKILL.md"
[ -f "$PKG_DIR/triggers.test.yaml" ] && cp "$PKG_DIR/triggers.test.yaml" "$DEST/triggers.test.yaml"
echo "Installed three-musketeers"