원클릭으로
remember
Use when the user wants to persist a lesson learned, convention, or best practice. Syntax: `/remember [>domain [scope]] lesson`
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when the user wants to persist a lesson learned, convention, or best practice. Syntax: `/remember [>domain [scope]] lesson`
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Route gh-aw workflow design/create/debug/upgrade requests to the right prompts.
Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.
Create, update, and manage GitHub issues using MCP tools. Use this skill when users want to create bug reports, feature requests, or task issues, update existing issues, add labels/assignees/milestones, or manage issue workflows. Triggers on requests like "create an issue", "file a bug", "request a feature", "update issue X", or any GitHub issue management task.
Surgical code refactoring to improve maintainability without changing behavior. Covers extracting functions, renaming variables, breaking down god functions, improving type safety, eliminating code smells, and applying design patterns. Use for gradual, incremental improvements to an existing codebase rather than full rewrites.
Execute git commit with conventional commit message analysis, intelligent staging, and message generation. Use when user asks to commit changes, create a git commit, or mentions "/commit". Supports: (1) Auto-detecting type and scope from changes, (2) Generating conventional commit messages from diff, (3) Interactive commit with optional type/scope/description overrides, (4) Intelligent file staging for logical grouping
| name | remember |
| description | Use when the user wants to persist a lesson learned, convention, or best practice. Syntax: `/remember [>domain [scope]] lesson` |
| user-invokable | true |
Persist lessons learned by enhancing existing instructions, skills, or memory files — in that priority order.
/remember [>domain [scope]] lesson content
>domain — Optional. Target domain (e.g., >python, >git-workflow)scope — Optional. global, user, workspace / ws (default)Scope directories:
| Scope | Directory |
|---|---|
global / user | vscode-userdata:/User/prompts/ |
workspace / ws | <workspace-root>/.github/instructions/ |
Examples:
/remember >python workspace prefer list comprehensions over map/filter
/remember >shell-scripting use arrays instead of word-splitting
/remember avoid over-escaping in sed commands
Use the todo list to track progress through the process steps.
Extract from the user message:
> if presentglobal (default) or workspace/wsSearch for files that already cover the lesson's domain. Check all three tiers in the appropriate scope:
Tier 1 — Skills (workspace scope only):
<workspace-root>/.github/skills/*/SKILL.md
Tier 2 — Instructions:
# Workspace
<workspace-root>/.github/instructions/*.instructions.md
# Global
vscode-userdata:/User/prompts/*.instructions.md
Tier 3 — Memory files:
# Workspace
<workspace-root>/.github/instructions/*-memory.instructions.md
<workspace-root>/.github/instructions/memory.instructions.md
# Global
vscode-userdata:/User/prompts/*-memory.instructions.md
vscode-userdata:/User/prompts/memory.instructions.md
Read the top ~30 lines of each candidate to understand its domain and applyTo scope.
Find the best home for the lesson using this priority:
| Priority | Target | When |
|---|---|---|
| 1 | Existing skill SKILL.md | Lesson fits an existing skill's domain |
| 2 | Existing .instructions.md | Lesson fits an existing instruction file's domain |
| 3 | Existing *-memory.instructions.md | Lesson fits an existing memory file's domain |
| 4 | New *-memory.instructions.md | No existing file covers this domain |
When uncertain about classification, ask the user.
Read the full target file to:
If enhancing an existing skill or instruction file:
If enhancing an existing memory file:
## headingIf creating a new memory file:
---
description: <general domain description>
applyTo: "<glob pattern>"
---
# <Domain Name> Memory
<One-line tagline describing the domain's patterns.>
## <Lesson Title>
<Lesson content>
Report what was done:
✅ Remembered: <short lesson summary>
📄 File: <relative path to modified/created file>
🎯 Action: Enhanced existing <skill|instruction|memory> / Created new memory file