用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/plmbr/nui --skill remember命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | remember |
| description | Save durable facts to nui persistent memory (~/.nui/memory/) when the user asks |
Use this skill when the user invokes /remember or explicitly asks you to remember something (e.g. "remember this", "save to memory").
Do not save to memory proactively in manual mode — wait for an explicit user request.
~/.nui/memory/user.md) — preferences and facts that apply across all agents (timezone, coding style, default branch, communication preferences).~/.nui/memory/agents/<agent-id>.md) — facts specific to this agent's role (review checklist, project conventions, choices made in this workflow).Default to agent scope. When the user asks to remember something — including a choice, decision, or preference for the current task — save to agent memory unless they clearly mean all agents.
Use user scope only when the user explicitly asks for cross-agent or personal memory, e.g.:
Do not move agent-specific choices into user memory just because they sound like a preference.
Call update_memory on the nui-agent MCP server:
scope: "user" or "agent"content: concise markdown (bullet points or short paragraphs)mode: "append" to add to existing memory, "replace" to overwrite the whole fileWrite directly to the canonical path:
~/.nui/memory/user.md~/.nui/memory/agents/<agent-id>.mdWhen appending, read the existing file first and preserve prior content.