Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <url> --json`
- Search the web → `bunx just-scrape search-scraper "<query>" --json`
- Extract structured data → `bunx just-scrape smart-scraper <url> -p "<prompt>" --json`
- Get raw HTML → `bunx just-scrape scrape <url> --json`

Run these via the Bash tool. Pipe output through `jq` as needed.


@/SPEC.md
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down