smart-web-mcp 0.23.0 → 0.24.0

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 CHANGED
@@ -52,6 +52,7 @@ The format is based on Keep a Changelog[^1] and this project uses SemVer.
52
52
  - Added fixture skipped-case lane/reason metadata to provider benchmark live-vs-fixture and evidence-gap artifacts so credential-gated fixtures are not misread as absent fixtures.
53
53
  - Added `scripts/partial-handoff-watchdog.mjs` and `npm run watchdog:partial-handoff` to run a no-secret drift watchdog over representative partial/blocked/handoff outputs and fail on chrome URL, script, or style-shell leakage.
54
54
  - Added `--report-file <path>` to the partial/handoff watchdog so durable runners can persist the full JSON report while keeping stdout human-readable.
55
+ - Added `expectPartialHandoff` checks to the partial/handoff watchdog so representative authwall/unavailable cases fail when they silently become non-partial/skipped instead of only checking already-suspect outputs.
55
56
  - Added an explicit `smartcrawl-export.v1` schema version to smartcrawl export manifests and summaries.
56
57
  - Added per-document SHA-256 hashes to smartcrawl export manifests for generated Markdown integrity checks.
57
58
  - Added resolved crawl options to smartcrawl export manifests for reproducible docs exports.
@@ -117,6 +118,13 @@ The format is based on Keep a Changelog[^1] and this project uses SemVer.
117
118
  - Korean public API helpers now validate outbound URLs and redirects before fetching, blocking localhost, private, and reserved targets unless `network.allowPrivateHosts` is explicitly enabled.
118
119
  - CI now declares read-only default repository permissions, Dependabot auto-merge pins the reusable workflow without forwarding all caller secrets, and the workflow check enforces those guards.
119
120
 
121
+ ## [0.24.0](https://github.com/jojo-labs/smart-web/compare/v0.23.0...v0.24.0) (2026-06-21)
122
+
123
+
124
+ ### Features
125
+
126
+ * catch partial watchdog classifier drift ([#330](https://github.com/jojo-labs/smart-web/issues/330)) ([a585e3e](https://github.com/jojo-labs/smart-web/commit/a585e3ed4bce413499c95255c0d6b55fd332ed2f))
127
+
120
128
  ## [0.23.0](https://github.com/jojo-labs/smart-web/compare/v0.22.0...v0.23.0) (2026-06-21)
121
129
 
122
130
 
package/README.md CHANGED
@@ -556,7 +556,7 @@ Provider benchmark reports also include `providerEvidenceGaps`: a ranked next-ac
556
556
 
557
557
  See `reports/README.md` for the curated report archive index. It identifies `provider-benchmark-live-no-secret.{json,md}` and `provider-benchmark-live-no-secret-gaps.json` as the current maintenance artifacts, and labels older cumulative live-smoke reports as historical calibration snapshots.
558
558
 
559
- `npm run watchdog:partial-handoff` builds the package and runs a compact no-secret drift watchdog over representative partial/blocked/handoff `smartfetch` outputs (httpbin authwall, Wikidocs, Naver Cafe, and Naver Map search). It exits non-zero when compact text or structured links/assets leak chrome URLs, script globals, or style-shell tokens, and prints a `partial-handoff-watchdog.v1` JSON report without raw page dumps or credentials. For runner artifacts without JSON stdout, run `node scripts/partial-handoff-watchdog.mjs --report-file <path>` after `npm run build`; the command keeps stdout human-readable and writes the full JSON report to the requested path.
559
+ `npm run watchdog:partial-handoff` builds the package and runs a compact no-secret drift watchdog over representative partial/blocked/handoff `smartfetch` outputs (httpbin authwall, Wikidocs, Naver Cafe, and Naver Map search). It exits non-zero when expected handoff cases are silently reclassified as non-partial, or when compact text or structured links/assets leak chrome URLs, script globals, or style-shell tokens, and prints a `partial-handoff-watchdog.v1` JSON report without raw page dumps or credentials. For runner artifacts without JSON stdout, run `node scripts/partial-handoff-watchdog.mjs --report-file <path>` after `npm run build`; the command keeps stdout human-readable and writes the full JSON report to the requested path. Fixture cases can set `expectPartialHandoff: true` to make classifier drift fail even if the output would otherwise be skipped.
560
560
 
561
561
  ## Quick verification
562
562
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "smart-web-mcp",
3
3
  "mcpName": "io.github.jojo-labs/smart-web",
4
- "version": "0.23.0",
4
+ "version": "0.24.0",
5
5
  "packageManager": "npm@11.9.0",
6
6
  "description": "Local MCP for web search, direct-URL fetch, compact normalized output, site crawling, and docs export.",
7
7
  "homepage": "https://github.com/jojo-labs/smart-web",