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

meta-memory-skill

v1.1.0

Published

Agent Skill for two-stage brief/full meta-memory in research and coding workflows.

Readme

亲爱的Agent,我想给你一个完整的记忆宫殿。


这个SKILL对 Agent 很有用,

也许对人类也有用 : D

安装之后,用户不需要在对话框里特意引用这个 skill。 Agent 会自己判断什么时候读取记忆、什么时候写入记忆。


记忆结构大概长这样:

<memory-root>/
├── index.md
└── units/
    ├── <动词>-<形容词或修饰语>-<名词>.unit/
    │   ├── <序号>.<标题>.brief.md
    │   └── <序号>.<标题>.full.md
    ├── 读-AI-文章.unit/
    │   ├── 0.transformer-attention.brief.md
    │   ├── 0.transformer-attention.full.md
    │   ├── 1.diffusion-survey.brief.md
    │   └── 1.diffusion-survey.full.md
    └── 跑-基线-实验.unit/
        ├── 0.first-clean-run.brief.md
        └── 0.first-clean-run.full.md
  • index.md:记忆索引,方便快速检索。
  • units/:按任务或主题组织的记忆单元。
  • .brief.md:短摘要,适合快速读取。
  • .full.md:完整记录,保留更多上下文、过程和细节。

如何安装

大型平台的插件系统太复杂了。

你可以直接下载 skills/meta-memory/SKILL.md,然后把它喂给你的 agent,并告诉它:

“帮我安装这个skill”


如果你坚持用 npm

全局安装:

npm install -g meta-memory-skill

然后把 skill 安装到你的 agent:

meta-memory-install claude   # ~/.claude/skills/meta-memory
meta-memory-install codex    # ~/.codex/skills/meta-memory
meta-memory-install pi       # ~/.pi/agent/skills/meta-memory
meta-memory-install agents   # ~/.agents/skills/meta-memory

安装到所有支持的位置:

meta-memory-install --all

安装到自定义路径或项目本地路径:

meta-memory-install --path ./.agents/skills/meta-memory