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

@elizaos/plugin-clipboard

v2.0.0-alpha.7

Published

File-based memory storage plugin for ElizaOS - persistent notes and memories

Readme

@elizaos/plugin-clipboard

File-based memory storage plugin for ElizaOS. Provides persistent notes and memories that can be written, read, searched, and managed across sessions.

Overview

This plugin enables agents to maintain a persistent clipboard of notes and memories stored as markdown files. It's inspired by the Otto memory-core extension and provides similar functionality adapted for the ElizaOS plugin architecture.

Features

  • Persistent Storage: Notes are stored as markdown files that persist across sessions
  • Semantic Search: Search through entries by content with relevance scoring
  • CRUD Operations: Full support for Create, Read, Update (append), and Delete
  • Tagging: Organize entries with tags for better categorization
  • Provider Integration: Automatic context about clipboard state for the agent

Installation

npm install @elizaos/plugin-clipboard

Usage

Add the plugin to your agent configuration:

import { clipboardPlugin } from "@elizaos/plugin-clipboard";

const agent = {
  // ... other config
  plugins: [clipboardPlugin],
};

Actions

CLIPBOARD_WRITE

Create a new clipboard entry.

Similes: SAVE_NOTE, CREATE_NOTE, WRITE_NOTE, REMEMBER_THIS, SAVE_MEMORY, JOT_DOWN, NOTE_THIS

Example:

User: "Please save a note about the meeting tomorrow at 3pm with John"
Agent: "I've saved a note titled 'Meeting with John'. You can retrieve it later."

CLIPBOARD_READ

Read the content of a specific clipboard entry.

Similes: GET_NOTE, READ_NOTE, RETRIEVE_NOTE, GET_MEMORY, FETCH_NOTE, OPEN_NOTE

Example:

User: "Show me the note about the meeting"
Agent: "Here's the note 'Meeting with John': Meeting scheduled for tomorrow at 3pm..."

CLIPBOARD_SEARCH

Search through clipboard entries for relevant information.

Similes: FIND_NOTE, SEARCH_NOTES, LOOKUP_MEMORY, FIND_MEMORY, SEARCH_MEMORY, RECALL

Example:

User: "What notes do I have about marketing?"
Agent: "I found 2 entries mentioning marketing: 1) 'Marketing Strategy' (85% match)..."

CLIPBOARD_LIST

List all clipboard entries with their titles and modification dates.

Similes: SHOW_NOTES, LIST_NOTES, ALL_NOTES, MY_NOTES, SHOW_MEMORIES

Example:

User: "Show me all my saved notes"
Agent: "You have 5 clipboard entries: 1) Meeting notes (modified today)..."

CLIPBOARD_APPEND

Append additional content to an existing clipboard entry.

Similes: ADD_TO_NOTE, UPDATE_NOTE, APPEND_NOTE, EXTEND_NOTE, ADD_MORE

Example:

User: "Add to the meeting notes that we decided on a $50k budget"
Agent: "I've appended the budget decision to the meeting notes."

CLIPBOARD_DELETE

Delete a clipboard entry by its ID.

Similes: REMOVE_NOTE, DELETE_NOTE, FORGET_NOTE, ERASE_NOTE, REMOVE_MEMORY

Example:

User: "Delete the note about the old meeting"
Agent: "I've deleted the clipboard entry 'old-meeting'."

Provider

clipboard

Provides information about the user's clipboard entries to the agent's context. This allows the agent to be aware of saved notes without explicitly querying.

The provider returns:

  • Summary of recent entries (up to 5)
  • Total count of entries
  • Entry IDs and titles

Configuration

| Parameter | Type | Default | Description | |-----------|------|---------|-------------| | CLIPBOARD_BASE_PATH | string | ~/.eliza/clipboard | Base directory for clipboard files | | CLIPBOARD_MAX_FILE_SIZE | number | 1048576 | Maximum file size in bytes (1MB) |

File Format

Entries are stored as markdown files with YAML frontmatter:

---
title: "Meeting with John"
created: 2024-01-15T10:30:00.000Z
modified: 2024-01-15T10:30:00.000Z
tags: [meeting, marketing]
---

Meeting scheduled for tomorrow at 3pm to discuss marketing strategy.

Development

# Build
bun run build

# Type check
bun run typecheck

# Lint
bun run lint

# Test
bun run test

License

MIT