feat(git-hangman-lab): add create-pr command

- Add create-pr script for creating pull requests via API
- Auto-generate access token if not present
- Integrate into git-ctrl dispatcher
- Update SKILL.md with new command documentation
This commit is contained in:
lyn
2026-04-01 14:50:02 +00:00
parent d8dee3b062
commit fa77b054a5
3 changed files with 109 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ if [[ $# -eq 0 ]]; then
echo " check-git-cred Verify git credentials"
echo " create-git-account Create a new git account"
echo " create-repo Create a new repository"
echo " create-pr Create a pull request"
echo " generate-access-token Generate access token for current user"
echo " link-keycloak Link Keycloak account with Gitea"
echo " repo-add-collaborators Add collaborator to repository"
@@ -35,6 +36,9 @@ case "$subcommand" in
create-repo)
"$SCRIPT_DIR/create-repo" "$@"
;;
create-pr)
"$SCRIPT_DIR/create-pr" "$@"
;;
generate-access-token)
"$SCRIPT_DIR/generate-access-token" "$@"
;;