session-resume
Auto-loads session context at conversation start. Shows latest session doc, recent git activity, and WIP state for development continuity.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Auto-loads session context at conversation start. Shows latest session doc, recent git activity, and WIP state for development continuity.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Manage project board — issues, sprints, status tracking, acceptance verification, and release management. Supports GitHub Projects, Jira, and YouTrack via pluggable providers.
Manage project board — issues, sprints, status tracking, acceptance verification, and release management. Supports GitHub Projects, Jira, and YouTrack via pluggable providers.
Happy path smoke testing — navigates all configured endpoints, checks HTTP status and server logs for errors, and optionally auto-creates GitHub issues for failures. Config-driven via CC_SMOKE_TEST_* variables.
Manage GitHub Project board — issues, sprints, status tracking, acceptance verification, and release management. White-labeled template for any project.
Check for and apply cognitive-core framework updates. Compares installed agents, skills, and hooks against the framework source, shows available updates, and safely applies them.
Check for and apply cognitive-core framework updates. Compares installed agents, skills, and hooks against the framework source, shows available updates, and safely applies them.
| name | session-resume |
| description | Auto-loads session context at conversation start. Shows latest session doc, recent git activity, and WIP state for development continuity. |
| user-invocable | true |
| allowed-tools | Bash, Read, Grep, Glob |
| catalog_description | Auto-loads session context — git activity, WIP state, and continuity. |
Auto-loads on every session to maintain development continuity. Reads the latest session document, recent git history, and work-in-progress state so you never start cold.
!ls -t ${CC_SESSION_DOCS_DIR:-docs}/SESSION_*.md 2>/dev/null | head -1
!git log --oneline -10 2>/dev/null
!git branch --show-current 2>/dev/null
!git status --short 2>/dev/null | head -5
!git diff --name-only 2>/dev/null | head -10
!git ls-files --others --exclude-standard 2>/dev/null | head -10
If you already have detailed knowledge of the current work state (e.g., from MEMORY.md loaded into the system prompt), skip to Step 4.
Read the most recent session document shown in the live context above. Extract:
Look at uncommitted changes and untracked files from the live context:
Provide a brief status when the session starts:
Welcome back. Here is where we left off:
Branch: [branch] ([clean/dirty])
Last session: [date] - [brief summary]
Continuation point: [next planned task]
[Any uncommitted work or WIP noted]
Ready to continue with [next task], or would you prefer to work on something else?
Keep this brief (3-5 lines). Do not dump the entire session doc.
If the user explicitly asks to refresh context:
!command`` sections inject live state at load timeSESSION_*.md in the configured docs directory/session-sync separately