Stats
Actions
Tags
Stage changes, commit with a conventional message, and open a pull request.
How this skill is triggered — by the user, by Claude, or both
Slash command
/messaging-team-claude:commit-and-prThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Stage changes, commit with a conventional message, and open a pull request.
Stage changes, commit with a conventional message, and open a pull request.
git status and git diff (staged + unstaged) to understand what changed.git log --oneline -5 to match the repo's commit style.git add -u). Never git add . — avoid accidentally staging .env or build artifacts.git diff --staged to confirm what will be committed.--no-verify.git push -u origin HEAD).yes → open PR normallydraft → open with --draftno → stop here; tell the user the branch is pushed and they can open the PR manuallygh pr create using this body structure:
## Summary
- <bullet points of what changed and why>
## Test plan
- [ ] <manual or automated steps to verify>
🤖 Generated with [Claude Code](https://claude.com/claude-code)
--draft flag on gh pr create if the user says the work is not ready for review.Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub konciergemd/bsc-claude-plugin --plugin messaging-team-claude