qwenpaw_memory

qwenpaw_memory is a skill for Claude Code, Codex from agentscope-ai/ReMe. It costs 9 tokens per session (725 once invoked), scanned A, original, Apache-2.0.

A file-based long-term memory system with daily notes and a main memory file for important facts, decisions, preferences, and project details.

In plain words
What is it for?
Use it to record durable project knowledge, user preferences, decisions, lessons learned, and daily events, then search those notes when the context is needed.
Why use it?
It gives the agent a place to preserve useful context across conversations instead of relying only on the current chat. It also provides rules for searching memory before answering questions about the past.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions AGENTS.md.

Good fit Use it to record durable project knowledge, user preferences, decisions, lessons learned, and daily events, then search those notes when the context is needed.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/agentscope-ai/reme/qwenpaw_memory
About the project

ReMe is a local-first memory management system that turns conversations and other resources into searchable, editable Markdown knowledge shared across AI agents. It is for users and agent runtimes that need durable, interconnected knowledge they can inspect and maintain. The catalogue add-ons connect coding agents and other agents to ReMe through skills, hooks, plugins, MCP, and related interfaces.

agentscope-ai/ReMe · 3,438 stars · on GitHub · reme.agentscope.io

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add agentscope-ai/ReMe --skill qwenpaw_memory
Clone the repo
git clone --depth 1 https://github.com/agentscope-ai/ReMe

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for qwenpaw_memory

README.md
[![agentmods](https://agentmods.dev/badge/skills/agentscope-ai/reme/qwenpaw_memory/github.svg)](https://agentmods.dev/skills/agentscope-ai/reme/qwenpaw_memory)
Your own site
<a href="https://agentmods.dev/skills/agentscope-ai/reme/qwenpaw_memory"><img src="https://agentmods.dev/badge/skills/agentscope-ai/reme/qwenpaw_memory/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for qwenpaw_memory

Your own site · 80×15
<a href="https://agentmods.dev/skills/agentscope-ai/reme/qwenpaw_memory"><img src="https://agentmods.dev/badge/skills/agentscope-ai/reme/qwenpaw_memory.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 9 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 725 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00009 $0.00725
Opus 5 $0.00005 $0.00362
Sonnet 5 $0.00002 $0.00145
Haiku 4.5 $0.00001 $0.00072

Measured 10d ago against content hash b6f39b03e900, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

qwenpaw_memory scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/qwenpaw_memory/SKILL.md · 51 lines

What it actually says

记忆

每次会话都是全新的。工作目录下的文件是你的记忆延续:

  • 每日笔记: memory/YYYY-MM-DD.md(按需创建 memory/ 目录)— 发生事件的原始记录
  • 长期记忆: MEMORY.md — 精心整理的记忆,就像人类的长期记忆
  • 重要:避免信息覆盖: 先用 read_file 读取原内容,然后使用 write_file 或者 edit_file 更新文件。

用这些文件来记录重要的东西,包括决策、上下文、需要记住的事。除非用户明确要求,否则不要在记忆中记录敏感的信息。

🧠 MEMORY.md - 你的长期记忆

  • 出于安全考虑 — 不应泄露给陌生人的个人信息
  • 你可以在主会话中自由读取、编辑和更新 MEMORY.md
  • 记录重大事件、想法、决策、观点、经验教训
  • 这是你精选的记忆 — 提炼的精华,不是原始日志
  • 随着时间,回顾每日笔记,把值得保留的内容更新到 MEMORY.md

📝 写下来 - 别只记在脑子里!

  • 记忆有限 — 想记住什么就写到文件里
  • "脑子记"不会在会话重启后保留,所以保存到文件中非常重要
  • 当有人说"记住这个"(或者类似的话) → 更新 memory/YYYY-MM-DD.md 或相关文件
  • 当你学到教训 → 更新 AGENTS.md、MEMORY.md 或相关技能文档
  • 当你犯了错 → 记下来,让未来的你避免重蹈覆辙
  • 写下来 远比 用脑子记住 更好

🎯 主动记录 - 别总是等人叫你记!

对话中发现有价值的信息时,先记下来,再回答问题

  • 用户提到的个人信息(名字、偏好、习惯、工作方式)→ 更新 PROFILE.md 的「用户资料」section
  • 对话中做出的重要决策或结论 → 记录到 memory/YYYY-MM-DD.md
  • 发现的项目上下文、技术细节、工作流程 → 写入相关文件
  • 用户表达的喜好或不满 → 更新 PROFILE.md 的「用户资料」section
  • 工具相关的本地配置(SSH、摄像头等)→ 更新 MEMORY.md 的「工具设置」section
  • 任何你觉得未来会话可能用到的信息 → 立刻记下来

关键原则: 不要总是等用户说"记住这个"。如果信息对未来有价值,主动记录。先记录,再回答 — 这样即使会话中断,信息也不会丢失。

🔍 检索工具

回答关于过往工作、决策、日期、人员、偏好或待办的问题前:

  1. 对 MEMORY.md 和 memory/*.md 运行 memory_search
  2. 如需阅读每日笔记 memory/YYYY-MM-DD.md,直接用 read_file
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 51 lines · 9 tokens per session scan A b6f39b03e900

Subscribe to this mod's changes

qwenpaw_memory is a skill published in the GitHub repository agentscope-ai/ReMe (3,438 stars, last pushed today), licensed Apache-2.0. It adds 9 tokens to every session and 725 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

browserwing-executor

Control browser automation through HTTP API. Supports page navigation, element interaction (click, type, select), data extraction, accessibility snapshot analysis, screenshot, JavaScript execution, and batch operations.

MemTensor/MemOS · 42 tokens

dev-browser

Browser automation with persistent page state. Use when users ask to navigate websites, fill forms, take screenshots, extract web data, test web apps, or automate browser workflows. Trigger phrases include "go to [url]", "click on", "fill out the form", "take a screenshot", "scrape", "automate", "test the website"…

MemTensor/MemOS · 84 tokens

ask-user-question

Ask users questions via the UI. Use when you need clarification, user preferences, or confirmation before proceeding. The user CANNOT see CLI output - this tool is the ONLY way to communicate with them.

MemTensor/MemOS · 44 tokens

memos-memory-guide

Use the MemOS Local memory system to search and use the user's past conversations. Use this skill whenever the user refers to past chats, their own preferences or history, or when you need to answer from prior context. When auto-recall returns nothing (long or unclear user query), generate your own short search query…

MemTensor/MemOS · 131 tokens

browserwing-admin

Manage and operate BrowserWing — an intelligent browser automation platform. Install dependencies, configure LLM, create/manage/execute automation scripts, use AI-driven exploration to generate scripts, browse the script marketplace, and troubleshoot issues.

MemTensor/MemOS · 47 tokens

wegent-knowledge

Knowledge base management and search tools for Wegent. Provides capabilities to list, create, update, and search knowledge bases and documents using RAG retrieval. Use this skill when the user wants to manage knowledge bases, documents, or search for information programmatically.

wecode-ai/Wegent · 51 tokens