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 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",