edgecrawl 0.3.1 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +10 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -247,6 +247,16 @@ All models run locally via ONNX Runtime. First run downloads the model to `.mode
247
247
  | LLM | Transformers.js v4 + Qwen3 ONNX | Local structured extraction |
248
248
  | CLI | Commander.js | Command-line interface |
249
249
 
250
+ ## AI Agent Skill
251
+
252
+ A skill file is included for AI coding agents. Install it to let your agent use edgecrawl directly:
253
+
254
+ ```bash
255
+ npx skills add couzip/edgecrawl
256
+ ```
257
+
258
+ Once installed, your AI agent can scrape websites and extract structured data using edgecrawl.
259
+
250
260
  ## Requirements
251
261
 
252
262
  - Node.js >= 20.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "edgecrawl",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Local AI-powered web scraper. Extract structured JSON from any website using on-device ONNX LLMs. No API keys, no cloud, no Python.",
5
5
  "type": "module",
6
6
  "main": "./index.mjs",