@bacnh85/pi-web 0.5.4 → 0.5.5
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.
- package/CHANGELOG.md +28 -0
- package/README.md +5 -9
- package/package.json +2 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to `pi-web` will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## 0.5.5 (2026-07-30)
|
|
6
|
+
|
|
7
|
+
### Improvements
|
|
8
|
+
|
|
9
|
+
- Patch version bump for release sync and package documentation update.
|
|
10
|
+
|
|
11
|
+
## 0.5.4 (2026-07-24)
|
|
12
|
+
|
|
13
|
+
### Fixes
|
|
14
|
+
|
|
15
|
+
- Fixed best-effort error handling for `web_extract` and improved fallback reporting across search and extraction modules.
|
|
16
|
+
|
|
17
|
+
## 0.5.3 (2026-07-20)
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
- Support Pi 0.82.0 ESM extension loading.
|
|
22
|
+
|
|
23
|
+
## 0.4.0 (2026-07-10)
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
- Consolidated 14 backend-specific tools into 7 unified tools (`web_search`, `web_extract`, `web_map`, `web_crawl`, `web_screenshot`, `web_pdf`, `web_status`).
|
|
28
|
+
- Auto-selection and adaptive fallback between static (JSDOM), dynamic (Firecrawl), and full (Crawl4AI) backends.
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# pi-web
|
|
1
|
+
# @bacnh85/pi-web
|
|
2
2
|
|
|
3
3
|
Pi extension for **unified web search, content extraction, site crawling, and page capture**.
|
|
4
4
|
|
|
@@ -10,14 +10,6 @@ Auto-selects the best backend from SearXNG (self-hosted), Brave Search, Firecraw
|
|
|
10
10
|
pi install npm:@bacnh85/pi-web
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
From this repository:
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
pi install ./extensions/pi-web
|
|
17
|
-
# or test directly
|
|
18
|
-
pi -e ./extensions/pi-web
|
|
19
|
-
```
|
|
20
|
-
|
|
21
13
|
## Configuration
|
|
22
14
|
|
|
23
15
|
Environment lookup order:
|
|
@@ -218,6 +210,10 @@ v0.4 replaces the 14 individual backend-specific tools with 7 unified tools:
|
|
|
218
210
|
|
|
219
211
|
All v0.3 tool names were removed in v0.4. Update any agent instructions or skills that reference the old names.
|
|
220
212
|
|
|
213
|
+
## Changelog
|
|
214
|
+
|
|
215
|
+
See [CHANGELOG.md](CHANGELOG.md) for release history.
|
|
216
|
+
|
|
221
217
|
## Development
|
|
222
218
|
|
|
223
219
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bacnh85/pi-web",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.5",
|
|
4
4
|
"description": "Pi extension for web search, page extraction, Firecrawl scraping/crawling, and Crawl4AI headless browser crawling.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"files": [
|
|
30
30
|
"README.md",
|
|
31
|
+
"CHANGELOG.md",
|
|
31
32
|
"extensions/index.ts",
|
|
32
33
|
"extensions/lib/",
|
|
33
34
|
"extensions/types.d.ts",
|