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

@unbody-io/adapt

v0.0.5

Published

A self-evolving memory layer for AI applications

Downloads

4

Readme

Adapt

npm license GitHub stars

A memory layer that learns. Instead of storing and retrieving, Adapt observes incoming data, builds understanding, and reshapes its own structure over time. It answers questions that databases and RAG pipelines can't — the ones that require paying attention as data flows in.

Documentation · Changelog · Releases · npm · Issues


Install

npm install @unbody-io/adapt

Adapt uses the Vercel AI SDK for LLM access. Install a provider:

npm install @ai-sdk/openai    # or @ai-sdk/anthropic, @ai-sdk/google, etc.

Quick start

import { Brain } from '@unbody-io/adapt'
import { openai } from '@ai-sdk/openai'

const brain = new Brain({
  prompt: 'Track my coding patterns and development philosophy.',
  model: openai('gpt-4o'),
})

await brain.inject([
  { type: 'commit', message: 'refactor: extract validation into pure functions' },
  { type: 'review', comment: 'Too heavy — factory functions work fine for our scale.' },
])

const result = await brain.ask('What is my coding philosophy?')
console.log(result.insight)

Features

  • Self-evolving — creates, merges, splits, and removes Neurons based on usage
  • Any LLM — cloud or local via Vercel AI SDK
  • Pluggable stores — in-memory or SQLite
  • Modular — use the Brain orchestrator or individual Neurons standalone

Limitations

  • Requires models with structured output and tool calling support
  • Local model support (Ollama, LMStudio) not fully tested yet
  • Not a database — builds understanding, doesn't store raw data
  • Experimental (0.0.x) — expect breaking changes

Contributing

Found a bug or have an idea? Open an issue. PRs welcome.


MIT — Unbody