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

letta-provider-umans

v0.1.3

Published

Umans.ai provider for Letta Code — subscription-based access to coding-optimized models

Readme

letta-provider-umans

npm version npm downloads GitHub stars License

Umans.ai provider for Letta Code. Adds subscription-based access to coding-optimized models including Kimi K2.7, GLM 5.2, and more.

Install

Ask your Letta Code agent to install this mod:

Install the Umans provider mod from npm:letta-provider-umans

If you plan to use GLM 5.1 or GLM 5.2, ask your agent to also install the image-understanding mod for vision handoff:

Install the Umans provider mod from npm:letta-provider-umans and also install the npm:@letta-ai/image-understanding mod for vision handoff

Or install manually:

letta install npm:letta-provider-umans

Then reload:

/reload

Connect

Get an API key from app.umans.ai/billing → Dashboard → API Keys, then either:

/connect umans

Or set an environment variable:

export UMANS_API_KEY="uk-your-key-here"

Models

Discovered live from the Umans gateway. New models appear automatically after /reload — no mod update needed.

| Model | Context | Vision | Reasoning | | --- | --- | --- | --- | | umans-coder | 262K | native | yes (always on) | | umans-kimi-k2.6 | 262K | native | yes (can disable) | | umans-kimi-k2.7 | 262K | native | yes (always on) | | umans-glm-5.1 | 202K | via handoff | yes (can disable) | | umans-glm-5.2 | 405K | via handoff | yes (can disable) | | umans-flash | 262K | native | yes (can disable) | | umans-qwen3.6-35b-a3b | 262K | native | yes (can disable) |

Select with /model umans/umans-glm-5.2.

Vision handoff for GLM models

GLM 5.1 and GLM 5.2 don't have native vision. Install the image-understanding mod to bridge images to text:

letta install npm:@letta-ai/image-understanding

The provider uses the OpenAI-compatible endpoint, so the same API key from /connect umans works. Point the image-understanding mod at Umans and pick a native-vision model:

export IMAGE_UNDERSTANDING_PROVIDER=openai-compatible
export IMAGE_UNDERSTANDING_API_KEY="$UMANS_API_KEY"
export IMAGE_UNDERSTANDING_BASE_URL=https://api.code.umans.ai/v1
export IMAGE_UNDERSTANDING_MODEL=umans-kimi-k2.7

To use a different vision model, e.g. umans-flash:

export IMAGE_UNDERSTANDING_MODEL=umans-flash

Enable auto-captioning so images are described before the GLM model sees them:

export IMAGE_UNDERSTANDING_AUTO_CAPTION=1
export IMAGE_UNDERSTANDING_AUTO_MODE=describe

Reload and verify:

/reload
/image-understanding-status

License

MIT