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

n8n-nodes-reflect-memory

v1.0.3

Published

n8n community node for Reflect Memory — read, write, browse, and search AI memories.

Readme

n8n-nodes-reflect-memory

This is an n8n community node that integrates with Reflect Memory — a cross-agent memory layer for AI tools.

It lets you read, write, browse, and search AI memories from any n8n workflow.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

In the n8n UI:

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter n8n-nodes-reflect-memory
  4. Agree to the risks and click Install

Self-hosted (npm):

cd ~/.n8n
npm install n8n-nodes-reflect-memory

Credentials

This node requires a Reflect Memory API credential:

| Field | Description | |-------|-------------| | API Key | Your Reflect Memory agent API key | | Base URL | API endpoint (default: https://api.reflectmemory.com) |

To set up credentials:

  1. In n8n, go to Credentials > Add Credential
  2. Search for Reflect Memory API
  3. Enter your API key and (optionally) a custom base URL
  4. Click Save

Operations

| Operation | Description | |-----------|-------------| | Get Latest | Retrieve the most recent memory, with optional tag filter | | Get by ID | Retrieve a specific memory by its UUID | | Browse | Browse memory summaries with pagination (limit & offset) | | Get by Tag | Get memories matching any of the given tags | | Write | Create a new memory with type, title, content, tags, and vendor visibility |

Usage

Get Latest Memory

Returns the most recent memory. Optionally filter by a single tag.

Get Memory by ID

Provide a memory UUID to retrieve its full content.

Browse Memories

Paginate through memory summaries. Set Limit (1–200, default 50) and Offset (default 0).

Get Memories by Tag

Provide a comma-separated list of tags. Returns memories matching any of the given tags, with pagination support.

Write a Memory

Create a new memory with:

  • Memory Type — Classification for the memory: Semantic (facts/knowledge), Episodic (events/decisions), or Procedural (workflows/patterns). Defaults to Semantic.
  • Title — Short descriptive title
  • Content — The memory content (supports multi-line)
  • Tags — Comma-separated tags for categorization
  • Allowed Vendors — Comma-separated vendor names that can access this memory, or * for all

Example Workflow

  1. Schedule Trigger — Run every hour
  2. Reflect Memory node — Browse recent memories
  3. IF node — Check if memories contain a specific tag
  4. Reflect Memory node — Write a summary memory with results

Compatibility

  • Tested with n8n version 1.x
  • Requires Node.js 18+

Resources

License

MIT