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

@felan-ai/ext-markitdown

v0.1.0

Published

Bounded MarkItDown document conversion for Felan read workflows

Readme

@felan-ai/ext-markitdown

Adds bounded MarkItDown conversion to the ordinary read workflow. A read of a recognized local document is converted into a session-storage Markdown cache, then the original read call is redirected to that cache. Existing offset, limit, and truncation behavior therefore continues to work.

Formats

The extension intercepts only formats not owned by Felan's image and PDF surfaces:

  • Word: .docx, .doc
  • PowerPoint: .pptx, .ppt
  • spreadsheets: .xlsx, .xls
  • rich documents: .rtf, .epub
  • Outlook messages: .msg

PDFs and all image formats are intentionally excluded. Plain-text formats such as HTML, CSV, JSON, and XML continue through the normal reader. The source extension's audio formats are also excluded because transcription may use external services and is outside this local document-reading scope. Its generic ZIP handling is excluded because it recursively converts nested PDFs/images and cannot enforce a safe expanded-size limit.

MarkItDown's local converters vary by dependency availability. Legacy .doc/.ppt and RTF cleanup may not be available in every installation; failed or empty conversions return a clear tool error instead of exposing binary bytes as text.

Installation

The extension uses a previously managed installation first, then a working markitdown ==0.1.7 command from PATH. It never downloads packages during startup or a model-initiated read. If no compatible command is available, run:

/markitdown install

This explicit command requires Python 3.10 or newer and installs the reviewed markitdown 0.1.7 document extras into Felan's agent storage. /markitdown shows status, limits, formats, and cache location. When no compatible converter is available, the extension bypasses document interception instead of invoking an unavailable executable. The first verification can take up to a minute while Python loads the newly installed document libraries; later checks are normally much faster.

Safety boundary

  • Input is read through AgentRuntime and limited to 20 MiB.
  • PDF and image signatures are rejected even when a file has a misleading supported extension.
  • A validated copy is staged in session storage; the converter never receives the original workspace path.
  • Conversion has a 60-second timeout and a 10 MiB output limit.
  • Partial staging files are removed, and successful results are cached by content hash for the current root session.
  • Once conversion is active, recognized files fail closed with actionable diagnostics if path validation, conversion, or limits fail.
  • Converted Markdown is untrusted document data. A system capability and a diagnostic appended to every converted result instruct the model not to follow embedded requests or treat them as configuration.

The automatic read interception is available only while the ordinary read tool is active. Felan's Codex mode currently replaces that tool, so this extension does not add a second Codex-specific document tool.