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

@prbelief/supabase-vector-memory

v1.0.6

Published

OpenClaw Plugin — Supabase pgvector long-term memory + knowledge base with auto-recall

Readme

@prbelief/supabase-vector-memory

🦞 OpenClaw Plugin — Long-term memory + Knowledge base ด้วย Supabase pgvector

ส่วนหนึ่งของ openclaw-supabase monorepo

Features

  • 2 Tables: longterm_memory (ข้อมูลส่วนตัว, tasks, finance) + knowledge_base (ความรู้, docs)
  • Auto-recall: ค้นทั้ง 2 table ก่อน agent ตอบทุกครั้ง (hook before_prompt_build)
  • Semantic search: pgvector cosine similarity ผ่าน RPC
  • Local embedding: Ollama + nomic-embed-text (ข้อมูลไม่ออกนอก server)
  • Dedup: ตรวจซ้ำอัตโนมัติก่อนบันทึก
  • Supabase REST API ตรง: ไม่มีปัญหา query size limit

Install

# จาก repo
openclaw plugins install ./packages/vector-memory

# จาก npm (หลัง publish)
openclaw plugins install @prbelief/supabase-vector-memory

Setup

1. รัน Migration

paste migration.sql ใน Supabase SQL Editor

2. Pull embedding model

ollama pull nomic-embed-text

3. Config ใน openclaw.json

{
  "allow": ["supabase-vector-memory"],
  "plugins": {
    "entries": {
      "supabase-vector-memory": {
        "enabled": true,
        "config": {
          "supabaseUrl": "https://YOUR_PROJECT.supabase.co",
          "supabaseServiceKey": "eyJhbGci...",
          "ollamaUrl": "http://localhost:11434",
          "embeddingModel": "nomic-embed-text",
          "autoRecall": true,
          "autoRecallResults": 3,
          "minSimilarity": 0.5,
          "userId": "default",
        },
      },
    },
  },
}

หา credentials จาก Supabase Dashboard → Settings → API Keys

Tools

| Tool | Table | หน้าที่ | | ---------------------- | --------------- | ----------------------- | | supa_store | longterm_memory | เก็บข้อมูลส่วนตัว | | supa_store_knowledge | knowledge_base | เก็บความรู้ | | supa_query | เลือกได้ | ค้นหา table เดียว | | supa_query_all | ทั้ง 2 table | ค้นรวม | | supa_save_fact | longterm_memory | บันทึก fact + ตรวจซ้ำ | | supa_save_knowledge | knowledge_base | บันทึกความรู้ + ตรวจซ้ำ | | supa_finance_summary | longterm_memory | สรุปการเงินรายเดือน | | supa_task_update | longterm_memory | อัปเดต task | | supa_delete | เลือกได้ | ลบ record | | supa_stats | ทั้ง 2 table | นับจำนวน records |

License

MIT