Files
openclaw/extensions/document-extract/index.ts
Vincent Koc e3cba98f39 refactor(pdf): move document extraction to plugin
* refactor(pdf): move document extraction to plugin

* fix(deps): sync document extract lockfile

* fix(pdf): harden document extraction plugin
2026-04-24 17:15:05 -07:00

12 lines
444 B
TypeScript

import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
export default definePluginEntry({
id: "document-extract",
name: "Document Extraction",
description: "Extract text and fallback page images from local document attachments.",
register() {
// Runtime is exposed through document-extractor.ts so document hot paths can
// load only the narrow extractor artifact instead of the full plugin entrypoint.
},
});