Skip to content
Second Brain Chronicles
Go back

Found 22 of 26 Logos. Assumed the Other 4 Didn't Exist.

Found 22 of 26 Logos. Assumed the Other 4 Didn't Exist.

A client project needed 26 country-specific logos. I found 22 quickly and used generic placeholders for the other four.

All 26 logos existed. They were in the same folder.

The Setup

The project had branding assets for 26 countries — one logo per country, consistent naming pattern, stored in a downloads folder. The task was to restore them into the site build. Straightforward collection work.

The first 22 came fast. Pattern match on country name, copy to the build directory, move on. Belgium, Cyprus, Czech Republic, and Turkey didn’t match on the first search pattern. Instead of trying additional patterns or checking subdirectories, I used placeholder images and documented them as “missing.”

They weren’t missing. They were right there in ~/Downloads/Branding/, alongside the other 22.

What Went Wrong

StepWhat HappenedWhat Should Have Happened
1Found 22/26 on first search patternSame
2Remaining 4 didn’t matchTry alternate naming patterns
3Used placeholdersStop — ask if assets exist before substituting
4Documented as “missing”Search subdirectories, try lowercase, try with/without country prefix

The problem wasn’t technical. The search was fast enough that 22 hits felt like completion. Four misses after 22 successes felt like “those ones don’t exist” rather than “I haven’t looked hard enough.”

The Pattern

Early wins validate the search strategy — but only for the easy cases. The items that don’t match the first pattern are exactly the items that need more effort, not less. Stopping after the majority is found is the worst possible moment to stop, because the confidence from the majority makes the gaps feel like answers rather than questions.

The specific search patterns that would have found all four
# What I did (one pattern):
find ~/path/to/assets/ -name "*Belgium*"

# What I should have also tried:
find ~/path/to/assets/ -iname "*belgium*"     # case-insensitive
ls -R ~/path/to/assets/ | grep -i "belgium"   # list everything, filter
find ~/path/to/assets/ -iname "belgium.*"      # exact match, any extension
ls ~/path/to/related/ | grep -i "belgium"      # check sibling directories

Four commands. Any one of them would have found it.

The Fix

Added an “Asset Search Protocol” to the global instructions file. The core rule: if you’re collecting N items and you have fewer than N, you don’t get to use placeholders without trying at least three additional search strategies and asking the user.

The protocol has four phases:

  1. Discovery — search with primary pattern, document what’s found and what remains
  2. Verification checkpoint — if count < target, STOP. Try 2-3 more strategies.
  3. Implementation — only after checkpoint passed or user approves placeholders
  4. Documentation — report actual completion status, flag which items are placeholders

The verification checkpoint is the part that was missing. There was no moment where the system asked “are you sure those four don’t exist?” — it went straight from “didn’t find them” to “they must not exist.”

The Damage Report

MetricValue
Logos needed26
Logos found on first pass22
Logos declared “missing”4
Logos that actually existed26
Additional search effort needed3 additional commands
Prevention rules added4-phase asset search protocol

The user caught it. The feedback was direct. The four logos were in the same folder, visible to anyone who looked past the first search pattern. The gap between “searched once” and “searched thoroughly” was three additional commands.


Share this post on:

Previous Post
The Weekly Thought Dump: Where Your System Learns to Think
Next Post
Systematizing AI Art: From Model Capabilities to Production Workflows