wow-executing-checker-workflow
Step-by-step validation workflow for checker agents - initialize report, discover content, validate progressively, finalize with summary. Use when implementing or updating checker agents.
npx skills add majiayu000/claude-skill-registry --skill wow-executing-checker-workflow --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Executing Checker Workflow Common workflow pattern for all checker agents in the maker-checker-fixer three-stage quality pipeline. ## When This Skill Loads This Skill auto-loads for checker agents that need standardized workflow for validating content and generating audit reports. ## Core Checker Workflow Checker agents follow a consistent 5-step workflow: ``` Step 0: Initialize Report ↓ Step 1-N: Validate Content (domain-specific) ↓ Final Step: Finalize Report ``` ### Step 0: Initialize Report File **CRITICAL FIRST STEP - Execute before any validation begins:** See `wow-generating-validation-reports` Skill for complete UUID chain generation and report initialization. **Quick Implementation**: ```bash # 1. Generate 6-char UUID MY_UUID=$(uuidgen | tr '[:upper:]' '[:lower:]' | head -c 6) # 2. Determine UUID chain (scope-based) SCOPE="${EXECUTION_SCOPE:-agent-family}" CHAIN_FILE="generated-reports/.execution-chain-${SCOPE}" if [ -f "$CHAIN_FILE" ]; then read PARENT_TIME PARENT_CHAIN < "$CHAIN_FILE" CURRENT_TIME=$(date +%s) TIME_DIFF=$((CURRENT_TIME - PARENT_TIME)) if [ $TIME_DIFF -lt 300 ]; then UUID_CHAIN="${PARENT_CHAIN}_${MY_UUID}" else UUID_CHAIN="$MY_UUID" fi else UUID_CHAIN="$
- When This Skill Loads
- Core Checker Workflow
- Step 0: Initialize Report File
- Steps 1-N: Validate Content (Domain-Specific)
- Common Validation Steps by Checker Type
- Final Step: Finalize Report
- Tool Requirements
- Integration with Other Skills
- Progressive Writing Methodology
- Common Validation Patterns
- Pattern 1: File-Based Validation
- Pattern 2: Content Extraction and Verification
- Pattern 3: Cross-Reference Validation
- Criticality Assessment
if [ -f "$CHAIN_FILE" ]; then read PARENT_TIME PARENT_CHAIN < "$CHAIN_FILE" if [ $TIME_DIFF -lt 300 ]; then else fi echo "$(date +%s) $UUID_CHAIN" > "$CHAIN_FILE" cat > "$REPORT_FILE" << 'HEADER' Update report status cat >> "$REPORT_FILE" << 'SUMMARY'
What does the wow-executing-checker-workflow skill do?
Step-by-step validation workflow for checker agents - initialize report, discover content, validate progressively, finalize with summary. Use when implementing or updating checker agents.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill wow-executing-checker-workflow --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
