원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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.
| 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.