{
  "model_label": "shlex-v2-continue",
  "n_locked_hard": 27,
  "passes_shown": [
    {
      "family": "type_vs_substring",
      "pass": true,
      "request": "files under the html folder",
      "model": "find 'html' -type f -print | sort"
    },
    {
      "family": "scope_vs_child",
      "pass": true,
      "request": "files under the me folder",
      "model": "find 'me' -type f -print | sort"
    }
  ],
  "misses_shown": [
    {
      "family": "type_vs_substring",
      "pass": false,
      "request": "html files in this folder",
      "model": "find 'this folder' -type f \\( -iname '*.html' \\) -print | sort",
      "gold": "find . -type f \\( -iname '*.html' -o -iname '*.htm' \\) -print | sort"
    },
    {
      "family": "type_vs_substring",
      "pass": false,
      "request": "files with html in the name",
      "model": "find 'web app' -type f -iname '*html*' -print | sort",
      "gold": "find . -type f -iname '*html*' -print | sort"
    },
    {
      "family": "topic_vs_type",
      "pass": false,
      "request": "markdown related to lantern",
      "model": "find 'lantern' -type f \\( -iname '*.md' -o -iname '*.markdown' \\) -print | sort",
      "gold": "rg -l -i 'lantern' --glob '*.md' . | sort"
    },
    {
      "family": "type_plus_recency",
      "pass": false,
      "request": "images from the last 24 hours",
      "model": "find 'photos' -type f -name '*.jpg' -mtime -1 -print | sort",
      "gold": "find . -type f with the image-extension group and -mtime -1"
    },
    {
      "family": "unsupported",
      "pass": false,
      "request": "pictures of a red bicycle",
      "model": "find 'bicycle pictures' -type f \\( -iname '*.jpg' -o -iname '*.jpeg' \\) -print | sort",
      "gold": "unsupported:needs-image-content"
    }
  ],
  "note": "Synthetic live-style fixtures only. No private laptop queries."
}
