home / skills / codyswanngt / lisa / git-commit-and-submit-pr
This skill creates conventional commits for changes and submits a pull request for review by executing git-commit and git-submit-pr.
npx playbooks add skill codyswanngt/lisa --skill git-commit-and-submit-prReview the files below or copy the command above to add this skill to your agents.
---
name: git-commit-and-submit-pr
description: This skill should be used when creating conventional commits for current changes and then submitting the current branch as a pull request for code review. It combines the git:commit and git:submit-pr skills into a single workflow.
allowed-tools: ["Bash"]
---
1. Run /git-commit $ARGUMENTS
2. Run /git-submit-pr $ARGUMENTS
This skill automates creating a conventional commit for your current changes and then submits the current branch as a pull request for code review. It bundles the commit and PR submission steps into a single, consistent workflow to reduce context switching. Use it to enforce commit message style and speed up the review handoff.
The skill first runs the commit step, prompting or using provided arguments to generate a conventional commit message and create the commit. After the commit completes, it runs the PR submission step to push the branch and open a pull request with the composed title and description. It accepts the same arguments you would pass to the individual commit and submit-pr commands and sequences them reliably.
Can I pass custom commit message arguments?
Yes. The skill accepts the same arguments used by the commit step, so you can supply a conventional message or allow prompts.
What happens if the commit step fails?
If the commit step fails, the skill stops and does not attempt to submit a PR. Fix the issue and rerun the skill.