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

@fielddd/openclaw-aionis-memory

v0.1.0

Published

OpenClaw memory plugin powered by Aionis standalone or hosted API

Readme

OpenClaw Aionis Memory Plugin

Independent OpenClaw memory plugin that uses Aionis as the memory and policy backend.

This project is intentionally separate from the Aionis core repository so it can evolve independently.

What it does

  • Auto-recall on before_agent_start via POST /v1/memory/context/assemble
  • Auto-capture on agent_end via POST /v1/memory/write
  • Optional policy loop calls:
    • POST /v1/memory/tools/select
    • POST /v1/memory/tools/feedback
  • Manual tools available in agent runtime:
    • aionis_memory_search
    • aionis_memory_store
    • aionis_memory_context
    • aionis_policy_select
    • aionis_policy_feedback

Quick start (local standalone)

  1. Start local Aionis standalone:
./bootstrap-local-standalone.sh

If 3001 is occupied, the script auto-falls back to 3002-3010. You can also force a port manually:

AIONIS_PORT=3002 ./bootstrap-local-standalone.sh

Optional: set a dedicated Docker volume name (recommended when running multiple standalone containers):

AIONIS_DATA_VOLUME=aionis-local-data ./bootstrap-local-standalone.sh

This script writes the generated API key to:

  • ~/.openclaw/plugins/aionis/aionis.env
  • ~/.openclaw/plugins/aionis/clawbot.env
  1. Build plugin:
npm install
npm run build
  1. Install into OpenClaw from local path:
openclaw plugins install /Users/lucio/Desktop/aionis-openclaw-plugin

Or install from a packaged tarball:

npm run -s release:tgz
openclaw plugins install ./artifacts/fielddd-openclaw-aionis-memory-0.1.0.tgz
  1. Configure plugin in ~/.openclaw/openclaw.json:
{
  "plugins": {
    "entries": {
      "openclaw-aionis-memory": {
        "enabled": true,
        "config": {
          "baseUrl": "http://127.0.0.1:3001",
          "apiKey": "<your-memory-api-key>",
          "tenantId": "default",
          "scopeMode": "session",
          "scopePrefix": "clawbot",
          "autoRecall": true,
          "autoCapture": true
        }
      }
    }
  }
}

Config keys

  • baseUrl: Aionis API base URL
  • apiKey: API key sent as x-api-key
  • tenantId: tenant id
  • scope: default scope
  • scopeMode: fixed or session
  • scopePrefix: used for scopeMode=session
  • autoRecall: inject memory context before each turn
  • autoCapture: store dialogue summary after successful turn
  • includeShadow: include shadow rules in policy calls
  • strictTools: strict mode for tools/select
  • recallLimit: default limit for recall/context
  • captureMessageLimit: max recent messages captured
  • contextCharBudget: clip injected context size
  • debug: verbose plugin logs

Notes

  • This plugin targets Aionis endpoints with /v1/memory/* paths.
  • If you see 404 Route ... not found, check baseUrl and Aionis version.
  • If you see 400 invalid_request, verify payload shape and required fields.

Release flow

npm run -s release:preflight
npm run -s release:tgz

Full checklist: RELEASE_CHECKLIST.md

User-facing full setup flow: USAGE_FULL.md