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

arcadedb-agent-memory

v0.4.0

Published

Graph schemas + thin client + memory helpers for ArcadeDB. Foundation of the arcadedb-claude suite.

Downloads

713

Readme

arcadedb-agent-memory

Graph schemas + thin client + memory helpers for ArcadeDB. Foundation of the arcadedb-claude suite for Claude Code.

The arcadedb-claude suite

A 4-package set that turns ArcadeDB into a first-class graph layer for Claude Code. Auto-injects graph context per project, records decisions across sessions, and indexes both code and notes into one queryable graph.

| Package | Role | |---|---| | arcadedb-agent-memory | Foundation: schemas + HTTP client + memory helpers + CLI | | arcadedb-code-indexer | CLI: walks Laravel/Next.js repos, writes :Module/:File/:IMPORTS | | arcadedb-claude-skills | Claude Code plugin: SessionStart hook + skill + 4 slash commands | | obsidian-to-arcadedb | CLI: syncs an Obsidian vault, writes :Note/:Tag/:LINKS_TO |

                       ArcadeDB (Docker, port 2480, MCP)
                       claude_memory  |  per-project DBs
                                ▲
            ┌───────────────────┼───────────────────────────┐
            │                   │                           │
   agent-memory          code-indexer                obsidian-to-arcadedb
   (schemas+lib+CLI)     (CLI)                       (CLI)
            ▲                                                ▲
            └────────── all depend on agent-memory ──────────┘
                                ▲
                         claude-skills
                         (Claude Code plugin)
                                ▲
                           Claude Code session

All 4 packages are MIT, TypeScript, Node 20+.

Status

v0.1.0, pre-release, GitHub-only. Not yet published to npm. Repos in the suite are currently private. npm publish planned for v0.2.

Install (from source)

git clone [email protected]:altugsogutoglu/arcadedb-agent-memory.git
cd arcadedb-agent-memory
npm install
npm run build
npm link    # exposes `arcadedb-memory` on PATH

Setup

Store credentials at ~/.config/arcadedb/.env:

ARCADEDB_ROOT_PASSWORD=your-password
ARCADEDB_HTTP_URI=http://localhost:2480
ARCADEDB_USERNAME=root

chmod 600 ~/.config/arcadedb/.env.

Usage

CLI

# apply full schema to a DB
arcadedb-memory migrate claude_memory

# apply only one domain
arcadedb-memory migrate project-a --only code

# record a decision
arcadedb-memory record-decision "Use ArcadeDB" --rationale "GPL avoidance" --repo project-a

# record an insight
arcadedb-memory record-insight setup --text "MCP enabled" --repo project-a

# status summary
arcadedb-memory status

Library

import { Client, loadEnv, applySchemas, recordDecision } from "arcadedb-agent-memory";

const client = new Client(loadEnv());
await applySchemas(client, "claude_memory");
const id = await recordDecision(client, "claude_memory", {
  summary: "Use ArcadeDB",
  rationale: "GPL avoidance",
  repo: "project-a",
});

Schema domains

| Domain | Vertex types | |---|---| | core | Repo, Person | | memory | Decision, Insight, Session, Question, Answer | | code | Module, File, Class, Function, Route, Component | | business | Store, Product, Category, Order, Customer, Concept | | notes | Note, Tag |

License

MIT