Agent skill · Content & Marketing

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 11 KB
Bundled scripts: none
Path: skills/agent/wow-executing-checker-workflow/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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="$

What's inside
Steps it walks through
  1. When This Skill Loads
  2. Core Checker Workflow
  3. Step 0: Initialize Report File
  4. Steps 1-N: Validate Content (Domain-Specific)
  5. Common Validation Steps by Checker Type
  6. Final Step: Finalize Report
  7. Tool Requirements
  8. Integration with Other Skills
  9. Progressive Writing Methodology
  10. Common Validation Patterns
  11. Pattern 1: File-Based Validation
  12. Pattern 2: Content Extraction and Verification
  13. Pattern 3: Cross-Reference Validation
  14. Criticality Assessment
Ships with 1 file
  • metadata.json
Commands it runs
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'
More from claude-skill-registry
All skills →
About this skill
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.

Keep going