From ccsm
Show a dashboard overview of all Claude Code sessions — active work, recent history, session counts, and status breakdown across projects. Use whenever the user asks "show my sessions", "what's active", "会话列表", "session dashboard", "有哪些活跃任务", "我在做什么", "list all sessions", "会话概览", "project status", or wants to see a summary of their Claude Code work across all projects and worktrees.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ccsm:ccsm-overviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Dashboard view of all Claude Code sessions across projects, grouped by status.
Dashboard view of all Claude Code sessions across projects, grouped by status.
Start with active sessions (most relevant):
mcp__ccsm__list_sessions(status="active")
Format as a clean dashboard:
Active ({count})
| 标题 | 项目/Worktree | 最后活动 | 消息数 |
|---|
If user asks "全部", "all statuses", or "包括已完成的":
mcp__ccsm__list_sessions()
Group by status with section headers:
Active ({n}) — needs active engagement | ... |
Background ({n}) — long-running tasks | ... |
Done ({n}) — completed (show recent 5 only) | ... |
When user picks a specific session:
mcp__ccsm__enter_session(session_id="...")
Show full context and offer resume option.
/ccsm-setup 建立索引。"/mcp 确认 ccsm 状态。"Example 1:
User: "我现在有哪些活跃的会话"
-> mcp__ccsm__list_sessions(status="active") -> show active sessions table
Example 2:
User: "看看所有会话的概览"
-> mcp__ccsm__list_sessions() -> group by status -> show full dashboard
Example 3:
User: "GUI 项目有哪些会话"
-> mcp__ccsm__search_sessions(query="GUI") -> show filtered results
npx claudepluginhub copeeetang/ccsmCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.