用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/kshetrajna12/kavi --skill session-start命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | session-start |
| description | Run at the beginning of a work session to check git state, pull latest, run tests, and show available work. |
Run this checklist in order. Report results concisely. Do not give advice or suggest next steps — that's the advisor's job.
Git state
git status
Pull latest
git pull --rebase
Test baseline
uv run pytest -q
If any tests fail, flag this immediately — fixing failures is the first priority.
Lint check
uv run ruff check src/ tests/ 2>&1 | tail -5
Recent changes
git log --oneline -10
Available work
bd ready 2>/dev/null || echo "No beads issues found"
In-progress work
bd list --status=in_progress 2>/dev/null || echo "None"
Report each step's result. Keep it compact — one or two lines per step. If everything is green, say so and stop.