Exercise 2: Why "Gap in Execution, Not Knowledge" Matters for Prioritizing the Fix — Possible Solution ==================================================================== WHAT THE COMPARISON ACTUALLY SHOWS ------------------------------ Per this chapter, "the separate Anime Vault sub-app does have dynamic meta descriptions — direct, real evidence this is a gap in execution, not a gap in knowledge." Two parts of the same overall codebase are being compared: the main blog template, which has no meta descriptions at all, and the anime sub-app, which does. WHY THIS RULES OUT "THE TEAM DOESN'T KNOW HOW" AS THE EXPLANATION ------------------------------ If meta descriptions were missing everywhere across the entire codebase, one plausible explanation would be that whoever built the site simply didn't know meta descriptions were worth adding, or didn't know the correct syntax. The anime sub-app's own working implementation directly rules this out — the same codebase demonstrably contains a correct, dynamic meta-description implementation elsewhere. The knowledge and the working pattern already exist within this project. WHAT "GAP IN EXECUTION" MEANS INSTEAD ------------------------------ Since the capability clearly exists (proven by the anime app), the main blog's own missing meta descriptions represent an oversight or an unfinished task specifically on that part of the site — something that was simply never applied there, not something that needs to be figured out from scratch. WHY THIS DISTINCTION CHANGES HOW THE FIX GETS PRIORITIZED ------------------------------ A knowledge gap would require research, learning, or experimentation before a fix could even be attempted — a genuinely open-ended task with unclear effort and risk. An execution gap, by contrast, has an existing, already-working reference implementation sitting in the same codebase (anime/includes/header.php's own dynamic meta-description line) that can likely be adapted directly for template.php with comparatively little new design work. This makes the fix both lower- effort and lower-risk than it would be if built from nothing, which is exactly the kind of information that should raise its priority — a genuinely high-value, low-effort fix is a better use of limited time than one requiring real new research. WHY THIS WORKS AS AN ANSWER ------------------------------ It explains what the anime-app comparison specifically proves (the knowledge and pattern already exist), what "execution gap" means as a result, and why an execution gap with an existing reference implementation is a lower-effort, higher-priority fix than a genuine knowledge gap would be.