From dev-workflow
Create a well-structured commit with conventional format and proper git identity
npx claudepluginhub seabbs/skills --plugin dev-workflowThis skill uses the workspace's default tool permissions.
Create a well-structured commit.
Verifies tests pass on completed feature branch, presents options to merge locally, create GitHub PR, keep as-is or discard; executes choice and cleans up worktree.
Guides root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Writes implementation plans from specs for multi-step tasks, mapping files and breaking into TDD bite-sized steps before coding.
Create a well-structured commit.
Read git identity from the project's or org's CLAUDE.md ## Automation config table (bot_account, bot_email, owner_account, owner_email).
--as-me: Commit as the owner instead of the bot account--bot-only: Commit as the bot account without co-author| Mode | Git Author | Co-author |
|---|---|---|
| (default) | bot account (bot_email) | owner (owner_email) |
--as-me | owner (owner_email) | none |
--bot-only | bot account (bot_email) | none |
Set git identity based on arguments:
--bot-only: git config user.name "<bot_account>" and git config user.email "<bot_email>"--as-me: git config user.name "<owner_account>" and git config user.email "<owner_email>"Review and commit changes:
type(scope): descriptionAdd co-author trailer (default mode only):
Co-authored-by: <owner_account> <<owner_email>> to commit messageIMPORTANT: If this command is being run as a standalone request, automatically exit after completing all phases successfully.