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

@thinkfleet/piece-agentmark

v0.1.0

Published

Activepieces piece — convert any web page or PDF into an AgentMark snapshot, then drive it from any flow.

Readme

@thinkfleet/piece-agentmark

Activepieces piece for AgentMark — convert any web page or PDF into a compact AgentMark snapshot from inside a flow, and fill PDF forms with data from previous flow steps.

What this piece adds

| Action | What it does | Inputs | Outputs | |---|---|---|---| | Capture Web Page | Launch Chromium, snapshot a URL, return AgentMark | url, wait_until, timeout_ms, headless | agentmark, url, title, kind, action_count, bytes | | Capture PDF | Convert a PDF (URL/file/base64/data URI) to AgentMark; optional OCR | source, source_url, title, password, enable_ocr, ocr_language | agentmark, source_url, bytes, ocr_used | | Fill PDF Form | Fill an AcroForm PDF and return the filled bytes | source, values, flatten, return_format, password | filled_pdf (data URI or raw base64), bytes, fields_applied, fields_skipped, flattened |

All actions run on the Activepieces worker — no external service required. Browser-based snapshots use Chromium via Playwright; PDF support uses pdfjs-dist + pdf-lib; optional OCR uses Tesseract.js with Poppler (pdftoppm).

Why use this in a flow

  • Drop AgentMark into any agent flow without writing code. The agent loop lives in your flow — call Capture Page, pass the snapshot to your AI step, then Page Execute (coming soon) or chain another snapshot.
  • Fill insurance/government/vendor PDFs from CRM data. Map field action IDs from a previous step to records pulled from your data store, run Fill PDF Form, attach the result to an email.
  • Extract structured data from scanned docs by enabling OCR on Capture PDF. Works on "Microsoft Print To PDF" output and scanner outputs.

Activepieces setup

This piece depends on:

  • @thinkfleet/agentmark (the core library)
  • playwright-core for browser-based actions
  • pdfjs-dist (optional, required for any PDF action)
  • pdf-lib (optional, required for Fill PDF Form)
  • tesseract.js + Poppler installed on the worker (optional, required for OCR)

Install Chromium binaries on the worker once:

npx playwright-core install chromium

Install Poppler on the worker (only if using OCR):

brew install poppler           # macOS
apt-get install poppler-utils  # Ubuntu/Debian

License

MIT.