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

@vectorize-io/flowise-nodes-hindsight

v0.1.0

Published

Flowise tool nodes for Hindsight - persistent memory for any Flowise chatflow or agent

Readme

Hindsight for Flowise

Persistent long-term memory for Flowise chatflows and agents via Hindsight.

Three Tool nodes — Hindsight Retain, Hindsight Recall, Hindsight Reflect — drop into any Flowise chatflow or agent flow alongside your other Tools.

Status

This package is the source-of-truth copy of the Hindsight Flowise nodes. Flowise distributes nodes only inside its main monorepo, so the user-facing distribution is an upstream PR to FlowiseAI/Flowise under packages/components/.

Installation (local Flowise dev fork)

While the upstream PR is in flight, you can use the nodes by copying them into a Flowise checkout:

git clone https://github.com/FlowiseAI/Flowise.git
cd Flowise
# Copy the three tool nodes
cp -r /path/to/hindsight/hindsight-integrations/flowise/nodes/tools/Hindsight* \
   packages/components/nodes/tools/
# Copy the credential class
cp /path/to/hindsight/hindsight-integrations/flowise/credentials/HindsightApi.credential.ts \
   packages/components/credentials/
# Add the client dep
cd packages/components && pnpm add @vectorize-io/hindsight-client
cd ../.. && pnpm install && pnpm build
pnpm start  # opens http://localhost:3000

Setup

Recommended: Hindsight Cloud — sign up free, get an API key, and skip the self-hosting setup entirely.

  1. Sign up at Hindsight Cloud (free tier) or self-host.
  2. Get an API key from the Hindsight dashboard.
  3. In Flowise, create a new credential of type Hindsight API:
    • API URL: https://api.hindsight.vectorize.io (Cloud) or your self-hosted URL
    • API Key: your hsk_... key (optional for self-hosted unauthenticated instances)

Tools

Hindsight Retain

Stores free-text content in a memory bank. Hindsight extracts facts asynchronously after the call returns.

| Field | Description | | --------------- | ---------------------------------------------------------- | | Default Bank ID | Memory bank to retain into when the agent doesn't pass one |

Tool input schema (the agent passes these): bankId, content, optional tags.

Hindsight Recall

Searches a bank for memories relevant to a query. Returns ranked results.

| Field | Description | | --------------- | ----------------------------------------------------- | | Default Bank ID | Memory bank to search when the agent doesn't pass one | | Default Budget | low / mid / high |

Tool input schema: bankId, query, optional budget, maxTokens, tags.

Hindsight Reflect

Returns an LLM-synthesized answer over a bank.

| Field | Description | | --------------- | --------------------------------------------------------- | | Default Bank ID | Memory bank to reflect on when the agent doesn't pass one | | Default Budget | low / mid / high |

Tool input schema: bankId, query, optional budget.

Example chatflow

A typical conversational agent recipe:

  1. ChatOpenAI (or any chat LLM)
  2. Conversational Agent with three tools attached: Hindsight Retain + Hindsight Recall + Hindsight Reflect
  3. Set a default Bank ID like user-${sessionId} on each tool
  4. The agent learns to call Recall before answering and Retain after meaningful exchanges

Source