plugins-copilot/session/skills/status/SKILL.md
Show a lightweight check of the current work context. Use when the user asks "what was I working on?", "do I have a session?", "session status", or comes back after a break and wants a reminder.
npx skillsauth add st0nefish/claude-toolkit statusInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Lightweight check of the current work context.
Run catchup:
bash ${COPILOT_PLUGIN_ROOT}/scripts/catchup
From the output, extract and present a concise status card:
Branch: <branch>
Commits ahead of <default>: <N>
Linked issue: #N — <title> (if branch matches type/NNN-*)
Uncommitted changes: <none | N files>
Recent commits: <last 3 subjects>
If the branch matches type/NNN-*, fetch just the issue title (no full body):
bash ${COPILOT_PLUGIN_ROOT}/scripts/git-cli issue show <N> | jq -r '"#\(.number) — \(.title) [\(.state)]"'
Do not read changed files or rebuild context. This is intentionally lightweight. Point the user to /session:resume or /session:catchup for full context.
development
Start work from your description — explore the codebase and plan
data-ai
Multi-phase, multi-agent feature workflow: spec → plan → refine → divide → execute → review. Invoke when the user escalates a session-start/session-issue flow to orchestration, or asks to run a non-trivial feature (multiple files, design ambiguity, cross-cutting concerns, correctness-critical paths) through the full multi-agent workflow. For small fixes, prefer session-start.
tools
Browse open issues, pick one, and start work on it
tools
Interact with GitHub and Gitea issue trackers and CI systems. List and show issues, file bugs, comment on issues or PRs, list and show pull requests, and fetch CI run logs — all from any repo context without leaving the session.