소스 정보
- 저장소
- theyoungastronauts/polaris
- 최근 소스 활동
- 2026년 7월 3일 23:05
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/theyoungastronauts/polaris --skill remember명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
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