mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 06:20:43 +00:00
* refactor(web-fetch): move readability extraction to plugin * fix(web-fetch): cache extractor resolution by config * fix(test): remove redundant stat assertions
12 lines
453 B
TypeScript
12 lines
453 B
TypeScript
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
|
|
export default definePluginEntry({
|
|
id: "web-readability",
|
|
name: "Web Readability Extraction",
|
|
description: "Extract readable article content from local HTML web fetch responses.",
|
|
register() {
|
|
// Runtime is exposed through web-content-extractor.ts so hot web-fetch paths can
|
|
// load only the narrow extractor artifact instead of the full plugin entrypoint.
|
|
},
|
|
});
|