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

@acontext/openclaw

v0.1.11

Published

Acontext skill memory plugin for OpenClaw — auto-capture, auto-learn, native skill sync

Readme

@acontext/openclaw

Acontext skill memory plugin for OpenClaw. Your agent learns from conversations, distills reusable skills as Markdown files, and syncs them to OpenClaw's native skill directory.

What it does

  1. Auto-Capture — Stores each agent turn to an Acontext session, triggering automatic task extraction
  2. Skill Sync — Downloads learned skills to ~/.openclaw/skills/ for native loading by OpenClaw
  3. Auto-Learn — Triggers Learning Space skill distillation when enough conversation accumulates
  4. Agent Tools — 3 tools for explicit skill/memory operations during conversations

Installation

openclaw plugins install @acontext/openclaw

Setup

Get an API key from dash.acontext.io and set it in your environment:

export ACONTEXT_API_KEY=sk-ac-your-api-key

Add to your openclaw.json:

{
  plugins: {
    // Select Acontext as the active memory plugin
    slots: {
      memory: "acontext"
    },
    entries: {
      "acontext": {
        enabled: true,
        config: {
          "apiKey": "${ACONTEXT_API_KEY}",
          "userId": "your-user-id"
        }
      }
    }
  }
}

Note: OpenClaw only loads one memory plugin at a time. Setting plugins.slots.memory to "acontext" replaces the default (memory-core). To switch back, set it to "memory-core" or "none".

Restart the gateway:

openclaw gateway

Configuration

| Key | Type | Default | Description | |-----|------|---------|-------------| | apiKey | string | — | Required. Acontext API key (supports ${ACONTEXT_API_KEY}) | | baseUrl | string | https://api.acontext.app/api/v1 | Acontext API base URL | | userId | string | "default" | Scope sessions per user | | learningSpaceId | string | auto-created | Explicit Learning Space ID | | skillsDir | string | ~/.openclaw/skills | Directory where skills are synced for native loading | | autoCapture | boolean | true | Store messages after each turn | | autoLearn | boolean | true | Trigger skill distillation after sessions | | minTurnsForLearn | number | 4 | Minimum conversation turns before triggering auto-learn |

Agent Tools

| Tool | Description | |------|-------------| | acontext_search_skills | Search through skill files by keyword | | acontext_session_history | Get task summaries from recent past sessions | | acontext_learn_now | Trigger skill learning from the current session |

CLI Commands

# List learned skills
openclaw acontext skills

# Show memory statistics
openclaw acontext stats

How it works

Capture → Extract → Learn → Sync

Session 1: User talks to agent
  └→ Messages stored to Acontext session (incremental capture)
  └→ CORE extracts structured tasks
  └→ Learning Space distills skills as Markdown

  ── Compaction or reset occurs ──
  └→ Pending messages flushed & learning triggered
  └→ Message cursor resets for next capture

Session 2: User returns
  └→ Skills synced to ~/.openclaw/skills/ (native loading)
  └→ OpenClaw auto-loads skill files
  └→ New messages captured (incremental capture)
  └→ Skills updated (auto-learn)

Note: Message capture is incremental — the plugin tracks a cursor so only new messages are stored on each agent_end. When compaction or reset rewrites the transcript, the cursor resets automatically.

Skill sync

Skills are synced as Markdown files to OpenClaw's native skill directory (~/.openclaw/skills/ by default). Only changed skills are re-downloaded using server-side updated_at timestamps. Sync happens on service start, before each agent turn (if stale), and after learning.

How it differs from fact-based memory

Unlike plugins that extract discrete facts via LLM, Acontext stores full conversations and distills them into human-readable, editable Markdown skill files. You can inspect, modify, and share these files directly.

License

Apache-2.0