Agent skill
github
Stars
1
Forks
0
Install this agent skill to your Project
npx add-skill https://github.com/mgreenly/ikigai/tree/main/state/skills/github
SKILL.md
GitHub Pull Request (using Jujutsu and GitHub CLI)
When you need to push a commit and create a Pull Request on GitHub, you can use a combination of Jujutsu (jj) and the GitHub CLI (gh).
Steps
-
Create a bookmark for the commit Use
jj bookmark createto name your commit.bashjj bookmark create -r @- <branch-name> -
Track the bookmark and push it Track the bookmark on the remote and push it to
origin.bashjj bookmark track <branch-name>@origin jj git push -b <branch-name> -
Create the Pull Request Use the GitHub CLI (
gh) to open the pull request against the repository.bashgh pr create --head <branch-name> --title "<PR Title>" --body "<PR Description>"
Example
bash
jj bookmark create -r @- docs-readme-update
jj bookmark track docs-readme-update@origin && jj git push -b docs-readme-update
gh pr create --head docs-readme-update --title "docs: update project description in README" --body "Update the README description to mention historical summaries and embedding-searchable topical history."
Didn't find tool you were looking for?