一键导入
memory
Save valuable insights from the current session to storage. Use when you've discovered decisions, patterns, or gotchas worth remembering across sessions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Save valuable insights from the current session to storage. Use when you've discovered decisions, patterns, or gotchas worth remembering across sessions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create a pull request with conventional commits and a structured description. Supports GitHub and Azure DevOps — platform is auto-detected from the git remote. Use when the user wants to open a PR, commit changes, or submit work for review.
Create a pull request with conventional commits and a structured description. Supports GitHub and Azure DevOps — platform is auto-detected from the git remote. Use when the user wants to open a PR, commit changes, or submit work for review.
Analyze meeting transcripts — extract decisions, action items, and create SSOT documents. Use when processing standup notes, stakeholder reviews, or sprint meetings.
Generate comprehensive, production-ready README.md by analyzing codebase with explorer + documenter agents. Use when creating or updating project documentation.
Sync project context to copilot-instructions.md by analyzing codebase patterns and conventions. Use after adding agents, commands, or significant architecture changes.
RAG/embedding pipeline scaffolding — delegates to de-ai-data-engineer agent. Use when building RAG pipelines, embedding workflows, feature stores, or text- to-SQL systems.
| name | memory |
| description | Save valuable insights from the current session to storage. Use when you've discovered decisions, patterns, or gotchas worth remembering across sessions. |
Save session insights to .github/storage/ for future reference (directory is auto-created on first use).
/memory # Save current session insights
/memory "specific note to save" # Save with specific context
.github/storage/memory-{YYYY-MM-DD}.mdUse /memory when you've discovered something worth remembering:
Don't save:
Creates: .github/storage/memory-{YYYY-MM-DD}.md
# Memory: {date}
> {One-line summary of session}
## Decisions Made
| Decision | Rationale | Impact |
| -------- | --------- | ------ |
| {what} | {why} | {files affected} |
## Patterns Discovered
- {pattern}: {where applied}
## Gotchas
- {gotcha}: {how to avoid}
## Open Items
- [ ] {item for next session}
---
*Saved: {timestamp}*
When invoked:
1. Scan conversation for:
- Decisions (look for "decided", "chose", "will use")
- Patterns (look for reusable solutions)
- Gotchas (look for "gotcha", "watch out", "careful")
- Open items (look for "TODO", "later", "next time")
2. Compress ruthlessly:
- Max 5 decisions
- Max 3 patterns
- Max 3 gotchas
- Max 3 open items
3. Write to storage:
- Create .github/storage/ if not exists
- Append to existing file if same date
- Use consistent format
User: /memory "Completed authentication refactoring"
→ Scanning conversation...
→ Found: 2 decisions, 1 pattern, 1 gotcha
Saved to: .github/storage/memory-2026-01-23.md
## Preview:
> Completed authentication refactoring with JWT + refresh tokens
| Decision | Rationale |
| -------- | --------- |
| Use JWT + refresh | Stateless, scales better |
| 15min access token | Balance security/UX |
Pattern: Token rotation on refresh
Gotcha: Must invalidate refresh tokens on password change
| Do | Don't |
|---|---|
| Save only valuable insights | Save every session |
| Compress ruthlessly | Write long summaries |
| Reference file paths | Duplicate code comments |
| Store decisions + rationale | Store implementation details |