npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

plugin-document-understanding

v1.1.8

Published

Configure external document processing endpoints, chain them into pipelines, and expose enabled pipelines as AI tools.

Readme

plugin-document-understanding

Overview

Document Understanding configures external document processing services and chains their endpoints into reusable pipelines. Pipelines can process uploaded files or file references, track asynchronous jobs, receive webhook callbacks, and expose enabled pipelines as AI tools when @nocobase/plugin-ai is available.

Features

  • Service configuration: Configure the base URL, authentication, request timeout, retries, polling defaults, and webhook secret for an external document processing service.
  • Endpoint registry: Define reusable HTTP endpoints with request/response schemas, file input mode, custom headers, and sync/polling/webhook execution settings.
  • Pipeline orchestration: Chain endpoints into ordered steps with input mappings, output aliases, conditions, retry/skip/fail behavior, and final output mapping.
  • Job history: Track pipeline executions, current step, step results, final result, external task IDs, and errors.
  • AI tools: Register enabled pipelines dynamically as AI tools so other AI features can invoke document processing workflows.

Usage

  1. Enable the plugin.
  2. Open the Document Understanding settings page in the NocoBase v2 admin UI.
  3. Configure the service connection and authentication.
  4. Add endpoints for OCR, classification, extraction, or other external document APIs.
  5. Create pipelines that call those endpoints in order and map step outputs into later step inputs.
  6. Run a pipeline from the settings playground, an API request, or an AI tool invocation.
  7. Inspect job history to review status, results, and errors.

Notes

  • Local file references are limited to files under the configured uploads storage path.
  • Webhook callbacks require a matching HMAC-SHA256 signature when a webhook secret is configured.
  • Polling and webhook modes depend on the external API returning the configured task ID and status/result fields.