用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/theyoungastronauts/polaris --skill remember命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Pull just the do-this-yourself steps out of a long answer, so the user doesn't have to read the whole thing.
Hand in-flight work to a fresh session instead of compacting, or pick up from a relay doc.
Close out a session — record what was learned, update any connected stores, and report what's left dirty.
基于 SOC 职业分类
正在显示 SKILL.md
| name | remember |
| description | Save a decision, convention, or pattern into the project context scaffold. |
| disable-model-invocation | true |
Save a decision, convention, or pattern to the project's context scaffold.
Run /remember <description> when you want to persist something learned during a session:
Read the user's description and classify it into one of three types:
| Type | Target File | Signal Words |
|---|---|---|
| Decision | .claude/context/decisions.md | "decided", "chose", "switched to", "why we use", "tradeoff" |
| Convention | .claude/context/conventions.md | "always", "never", "naming", "file structure", "how we handle" |
| Pattern | .claude/context/patterns/<name>.md | "how to add", "the way we build", "standard approach for", "template for" |
If the classification is ambiguous, ask the user which type fits best. If it truly doesn't fit any category, default to Convention under "Project-Specific Rules".
Read the target file and scan for similar existing entries:
patterns/If a similar entry exists:
Each target file carries its own authoritative format — follow it rather than reformatting from memory:
## Format block at the top of decisions.md. Append the new record under ## Entries.- [Convention]: [Example] — [Why, if not obvious] shape shown under each category in conventions.md. Choose the right category heading (Naming, File Organization, Error Handling, Testing, or Project-Specific Rules); if none fit, use Project-Specific Rules.## Pattern File Format block in patterns/README.md. Create a new .claude/context/patterns/<kebab-name>.md from it; at minimum fill "When to Use" and "Structure", asking the user for anything you can't infer.If a target file is missing its format header (an older scaffold), fall back to the matching template under templates/context/ — those templates are the source of truth for the schema.
<!-- Add new decisions above this line --> comment## category heading, above the <!-- Add new conventions above this line --> comment.claude/context/patterns/## Manual Notes or anything below itIf a new pattern file was created:
.claude/context/ROUTER.mdTell the user:
If .claude/context/ doesn't exist, tell the user:
Project context scaffold not found. Run
/intelfirst to generate the scaffold structure, then use/rememberto add entries.
Do not create the scaffold from scratch — /intel handles that.
## Manual Notes