From a98ed561eccbbf66e97ead1ae9911fff142311e2 Mon Sep 17 00:00:00 2001 From: Marco Vinciguerra Date: Tue, 24 Feb 2026 13:29:42 -0800 Subject: [PATCH 1/2] chore: force Claude to use just-scrape over built-in web tools Add CLAUDE.md instructions that override WebFetch/WebSearch with just-scrape CLI commands (markdownify, search-scraper, smart-scraper, scrape) so the AI agent uses the project's own tooling for all web fetching and search tasks. Co-Authored-By: Claude Sonnet 4.6 --- CLAUDE.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index 467d014..1d930c3 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -7,4 +7,16 @@ **important** Always update README.md after every change in the library +### Web Fetching & Search + +**CRITICAL**: Never use built-in web tools (WebFetch, WebSearch). Always use `just-scrape` CLI commands instead: + +- Fetch/read a URL → `bunx just-scrape markdownify --json` +- Search the web → `bunx just-scrape search-scraper "" --json` +- Extract structured data → `bunx just-scrape smart-scraper -p "" --json` +- Get raw HTML → `bunx just-scrape scrape --json` + +Run these via the Bash tool. Pipe output through `jq` as needed. + + @/SPEC.md \ No newline at end of file From 67ee1c0bfdcd1592adca45fe7827da983d53f282 Mon Sep 17 00:00:00 2001 From: Marco Vinciguerra Date: Tue, 24 Feb 2026 13:31:37 -0800 Subject: [PATCH 2/2] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index de2445b..55c9e7b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "just-scrape", - "version": "0.2.0", + "version": "0.2.1", "description": "ScrapeGraph AI CLI tool", "type": "module", "main": "dist/cli.mjs",