Force immediate validation round. TRIGGERS - ru audit, force validation, audit now, run audit.
From runpx claudepluginhub terrylica/cc-skills --plugin ruThis skill is limited to using the following tools:
references/evolution-log.mdExecutes pre-written implementation plans: critically reviews, follows bite-sized steps exactly, runs verifications, tracks progress with checkpoints, uses git worktrees, stops on blockers.
Guides idea refinement into designs: explores context, asks questions one-by-one, proposes approaches, presents sections for approval, writes/review specs before coding.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Force the loop to enter validation mode on the next iteration.
Self-Evolving Skill: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues.
/ru:audit-now - Start validation from round 1/ru:audit-now 4 - Start from round 4 (Adversarial Probing)/usr/bin/env bash << 'RU_AUDIT_SCRIPT'
PROJECT_DIR="${CLAUDE_PROJECT_DIR:-$(pwd)}"
CONFIG_FILE="$PROJECT_DIR/.claude/ru-config.json"
STATE_FILE="$PROJECT_DIR/.claude/ru-state.json"
ROUND="${ARGUMENTS:-1}"
# Validate round number
if ! [[ "$ROUND" =~ ^[1-5]$ ]]; then
echo "Error: Round must be 1-5"
echo ""
echo "Validation Rounds:"
echo " 1: Critical Issues"
echo " 2: Verification"
echo " 3: Documentation"
echo " 4: Adversarial Probing"
echo " 5: Cross-Period Robustness"
exit 1
fi
# Ensure config file exists
if [[ ! -f "$CONFIG_FILE" ]]; then
echo '{}' > "$CONFIG_FILE"
fi
# Check if loop is running
CURRENT_STATE="stopped"
if [[ -f "$STATE_FILE" ]]; then
CURRENT_STATE=$(jq -r '.state // "stopped"' "$STATE_FILE" 2>/dev/null || echo "stopped")
fi
if [[ "$CURRENT_STATE" != "running" ]]; then
echo "Warning: Loop not running (state: $CURRENT_STATE)"
fi
# Set force validation flag
TIMESTAMP=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
jq --argjson round "$ROUND" --arg ts "$TIMESTAMP" \
'.force_validation = {enabled: true, round: $round, timestamp: $ts}' \
"$CONFIG_FILE" > "$CONFIG_FILE.tmp" && mv "$CONFIG_FILE.tmp" "$CONFIG_FILE"
echo "Force validation enabled - starting round $ROUND on next iteration"
RU_AUDIT_SCRIPT
Run the bash script above to force validation mode.
| Issue | Cause | Solution |
|---|---|---|
| Round must be 1-5 | Invalid round number | Use a number between 1 and 5 |
| Loop not running | RU not started | Run /ru:start first |
| Config file not found | .claude dir missing | Create with mkdir -p .claude |
| Validation not starting | Config not read yet | Wait for next iteration to apply |
| jq error | Config file malformed | Run /ru:settings reset |
After this skill completes, check before closing:
Only update if the issue is real and reproducible — not speculative.