audit-now

Force the loop to enter validation mode on the next iteration.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "audit-now" with this command: npx skills add terrylica/cc-skills/terrylica-cc-skills-audit-now

RU: Audit Now

Force the loop to enter validation mode on the next iteration.

Usage

  • /ru:audit-now

  • Start validation from round 1

  • /ru:audit-now 4

  • Start from round 4 (Adversarial Probing)

Execution

/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.

Troubleshooting

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:config reset

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Security

code-hardcode-audit

No summary provided by upstream source.

Repository SourceNeeds Review
Security

voice-quality-audition

No summary provided by upstream source.

Repository SourceNeeds Review
Security

rust-dependency-audit

No summary provided by upstream source.

Repository SourceNeeds Review
General

pandoc-pdf-generation

No summary provided by upstream source.

Repository SourceNeeds Review