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

@tpsdev-ai/openclaw-flair

v0.4.1

Published

OpenClaw memory plugin for Flair — agent identity and semantic memory

Readme

@tpsdev-ai/openclaw-flair

OpenClaw memory plugin for Flair — agent identity and semantic memory. Replaces the built-in MEMORY.md / memory-lancedb system with Flair as the single source of truth for agent memory.

Uses Flair's native Harper vector embeddings — no OpenAI API key required.

Features

  • Semantic search via memory_recall → Flair's HNSW vector index
  • Persistent storage via memory_store → Ed25519-authenticated writes
  • Memory retrieval via memory_get → fetch by ID
  • Auto-bootstrap — injects relevant memories into context at session start
  • Auto-capture — automatically stores important information from conversations
  • Multi-agentagentId: "auto" resolves per-session for shared gateways
  • Durability levels — permanent, persistent, standard, ephemeral
  • Memory versioningsupersedes field creates version chains

Prerequisites

  • A running Flair instance (Harper v5+)
  • An agent record in Flair with an Ed25519 public key
  • The corresponding private key at ~/.flair/keys/<agentId>.key (generated by flair agent add)

Installation

# From npm (when published)
openclaw plugin install @tpsdev-ai/openclaw-flair

# From source
cd plugins/openclaw-memory
npm install

Configuration

In your OpenClaw config (openclaw.json):

{
  "plugins": {
    "allow": ["memory-flair"],
    "slots": {
      "memory": "memory-flair"
    },
    "entries": {
      "memory-flair": {
        "enabled": true,
        "config": {
          "url": "http://localhost:9926",
          "agentId": "auto",
          "autoCapture": true,
          "autoRecall": true,
          "maxRecallResults": 5,
          "maxBootstrapTokens": 4000
        }
      }
    }
  }
}

Config Options

| Option | Type | Default | Description | |--------|------|---------|-------------| | url | string | http://127.0.0.1:9926 | Flair server URL | | agentId | string | required | Agent ID for memory namespacing. Use "auto" for multi-agent gateways. | | keyPath | string | auto-resolved | Path to Ed25519 private key | | autoCapture | boolean | true | Auto-capture important info from conversations | | autoRecall | boolean | true | Inject relevant memories at session start | | maxRecallResults | number | 5 | Max results for memory_recall | | maxBootstrapTokens | number | 4000 | Max tokens for bootstrap context injection |

Auth

Uses Ed25519 signatures. The plugin looks for private keys in this order:

  1. keyPath from config (if explicitly set)
  2. $FLAIR_KEY_DIR/<agentId>.key (if FLAIR_KEY_DIR env var is set)
  3. ~/.flair/keys/<agentId>.key (standard path — use flair agent add to generate)

Key files may be raw 32-byte binary seeds (written by flair agent add) or base64-encoded seeds. Both are supported.

License

Apache-2.0