用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/majiayu000/claude-skill-registry --skill session-management命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | session-management |
| description | Apply when initializing, saving, resuming, or closing a work session |
Sessions track EDIRD phases:
[DEFAULT_SESSIONS_FOLDER]/_YYYY-MM-DD_[SessionTopicCamelCase]/[DEFAULT_SESSIONS_FOLDER] = [WORKSPACE_FOLDER] (override in !NOTES.md)/session-new): Create session folder with tracking files/session-save): Document findings, commit changes/session-resume): Re-read session documents, continue work/session-close): Sync findings to project files, archiveBase: [DEFAULT_SESSIONS_FOLDER] (default: [WORKSPACE_FOLDER], can be overridden in !NOTES.md)
Format: [DEFAULT_SESSIONS_FOLDER]/_YYYY-MM-DD_[SessionTopicCamelCase]/
Example: _PrivateSessions/_2026-01-12_FixAuthenticationBug/
Use templates from this skill folder:
NOTES_TEMPLATE.md): Key information, agent instructions, working patternsPROBLEMS_TEMPLATE.md): Problems found and their status (Open/Resolved/Deferred)PROGRESS_TEMPLATE.md): To-do list, done items, tried-but-not-used approaches1. INIT: User initializes session (`/session-new`)
└── Session folder, NOTES.md, PROBLEMS.md, PROGRESS.md created
2. PREPARE (one of):
A) User prepares work manually
└── Creates INFO / SPEC / IMPL documents, tracks progress
B) User explains problem, agent assists
└── Updates Problems, Progress, Notes → researches → creates documents
3. WORK: User or agent implements
└── Makes decisions, creates tests, implements, verifies
└── Progress and findings tracked continuously
4. SAVE: User saves session for later (`/session-save`)
└── Everything updated and committed
5. RESUME: User resumes session (`/session-resume`)
└── Agent primes from session files, executes workflows in Notes
└── Continue with steps 2-3
6. CLOSE: User closes session (`/session-close`)
└── Everything updated, committed, synced to project/workspace
7. ARCHIVE: User archives session
└── Session folder moved to _Archive/
See [AGENT_FOLDER]/rules/devsystem-ids.md rule (always-on) for complete ID system.
Quick Reference:
[TOPIC]-[DOC][NN] (IN, SP, IP, TP)
CRWL-SP01, AUTH-IP01[TOPIC]-[TYPE]-[NNN] (BG = Bug, FT = Feature, PR = Problem, FX = Fix, TK = Task)
SAP-BG-001, UI-PR-003, GLOB-TK-015# Session Notes
## Session Info
- **Started**: [DATE]
- **Goal**: [Brief description]
## Key Decisions
## Important Findings
## Workflows to Run on Resume
# Session Problems
## Open
## Resolved
## Deferred
# Session Progress
## To Do
## In Progress
## Done
## Tried But Not Used