ac40e05734
Image rebuild (skip scrape) / build (push) Failing after 7s
Sibling project to crop-chem-docs, same MCP-template lineage. Corpus is
seed/hybrid varieties across 6 vendors instead of pesticide labels.
What's customized vs. the template:
- CLAUDE.md: vendor matrix, build priority, Pioneer fallback policy,
canonical sidecar schema (per-crop), Golden Harvest disease-scale
reversal gotcha, no-IPv6 / HTTPS-clone note
- README.md: vendor coverage table, tool list, phase status
- Dockerfile: PRODUCT_NAME=crop_seed default, sources.json (not
bundles.json), HYBRID_SEARCH=true, OLLAMA_URL + RERANK_URL Docker
DNS defaults (same llama-rerank sidecar as crop-chem-docs)
- .gitea/workflows/refresh.yml: monthly cron (seed catalogs move
slowly), 5 GREEN scraper steps, corpus-YYYY.MM.DD tag for Drawbar
pinning, continue-on-error on GC step
- .gitea/workflows/image-only.yml: paths filter + cancel-in-progress
concurrency group
- scripts/registry_gc.py: lifted from crop-chem-docs (correct Gitea
packages API URL + UA header to bypass CF block on default
Python-urllib UA)
- sources.json: catalog of 6 sources + scope_filter + per-source
schema notes + Pioneer-exclusion rationale
- scrape/runner.py: dispatcher with --all = GREEN-only
- scrape/sources/{bayer_seeds,golden_harvest,nk,agripro,becks_pfr,
becks_products}.py: stub modules with implementation notes
- docs_mcp/server.py: PRODUCT_NAME default → crop_seed,
PRODUCT_DOCS_URL → repo URL
Pioneer is intentionally NOT a source. ToS bans automation; dealer
locator is login-gated. The MCP returns a curated fallback lesson
directing the user to pioneer.com.
Next phases:
- Phase 1: implement bayer_seeds (lift-and-shift from crop-chem-docs
Bayer scraper; same __NEXT_DATA__ infra)
- Phase 7: curate eval/queries.jsonl
- Phase 11: lessons.md with Pioneer fallback + disease-scale notes
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
47 lines
1.5 KiB
Python
47 lines
1.5 KiB
Python
"""Beck's product catalog scraper (identity-only until SeedIQ XHR sniff lands).
|
|
|
|
Source: Same public Sanity GROQ API as ``becks_pfr`` (no auth).
|
|
Expected count: ~860 products (corn + soy + wheat).
|
|
|
|
Current limitation: Beck's exposes IDENTITY fields publicly (product
|
|
name, RM/MG, basic trait stack) but routes the AGRONOMIC + DISEASE
|
|
ratings through their SeedIQ application, which is gated behind a
|
|
browser session cookie. The public Sanity records do not include
|
|
ratings.
|
|
|
|
What we CAN ship without SeedIQ:
|
|
- Product identity for confirmation ("yes Beck's has hybrid X at RM 112")
|
|
- RM (corn) / MG (soy) / class (wheat)
|
|
- Trait stack
|
|
- Basic descriptive text
|
|
|
|
What needs the SeedIQ XHR endpoint (BLOCKED on user sniff):
|
|
- Disease ratings (GLS, NCLB, Goss's, etc.)
|
|
- Agronomic ratings (standability, drought, etc.)
|
|
- Regional recommendations
|
|
|
|
For now this scraper is DEFERRED. Run when:
|
|
- User captures the SeedIQ XHR URL + cookie/header pattern from
|
|
browser dev tools, OR
|
|
- We decide to ship Beck's as identity-only and let the LLM say
|
|
"Beck's has this hybrid; ask your Beck's rep for full agronomic
|
|
ratings" (less useful but avoids the empty-data UX).
|
|
|
|
Yellow verdict in sources.json reflects this — ``--all`` skips it.
|
|
|
|
TODO: implement (deferred).
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
import sys
|
|
|
|
|
|
def main(argv: list[str] | None = None) -> int:
|
|
print("becks_products: deferred — SeedIQ XHR sniff required for ratings, run only if user has captured the endpoint",
|
|
file=sys.stderr)
|
|
return 2
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main(sys.argv[1:]))
|