一键导入
commit-message
Draft and apply a git commit message from staged/unstaged changes, following this project's commit style.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Draft and apply a git commit message from staged/unstaged changes, following this project's commit style.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Run deep browser UI tests against the admin panels (global and project-level) using MCP Playwright.
Run deep browser UI tests against the SlateFlow Kanban board using MCP Playwright — covers board load, card CRUD, DnD lane transitions, card modal tabs, task checklists, filters, and lane management.
Run interactive browser UI tests against the running SlateFlow dev server using MCP Playwright.
Create a GitHub issue from a bug or problem description found during testing.
Audit recent changes and verify that README.md, ROADMAP.md, and CLAUDE.md were all updated.
Reset and re-seed slateflow.db with realistic test data for local dev and demos.
基于 SOC 职业分类
| name | commit-message |
| description | Draft and apply a git commit message from staged/unstaged changes, following this project's commit style. |
You are executing the /commit-message skill. Follow these steps exactly.
Run all three commands at once:
git status
git diff --staged
git log --oneline -15
If git diff --staged is empty, also run:
git diff
git status), tell the user and stop.From git log, infer:
feat: / fix: are usedMatch that style in your draft.
Write a message that:
Show the draft to the user as a code block.
Ask the user: "Commit with this message? (yes / edit / cancel)"
To commit, stage any unstaged files the user wants included (ask if ambiguous), then run:
git commit -m "$(cat <<'EOF'
<message here>
EOF
)"
Report the resulting commit hash.