Files
ClawSkills/git-hangman-lab/scripts/git-ctrl
lyn fa77b054a5 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
2026-04-01 14:50:02 +00:00

66 lines
1.7 KiB
Bash
Executable File

#!/bin/bash
# Get the directory where this script is located
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
# Check if subcommand is provided
if [[ $# -eq 0 ]]; then
echo "Usage: $0 <command> [options]"
echo ""
echo "Commands:"
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"
echo " repo-config Configure repository"
echo " external-login-ctrl Enable/disable local login"
echo " reset-password Reset user password"
exit 1
fi
# Get subcommand
subcommand="$1"
shift
# Route to appropriate script
case "$subcommand" in
check-git-cred)
"$SCRIPT_DIR/check-git-cred" "$@"
;;
create-git-account)
"$SCRIPT_DIR/create-git-account" "$@"
;;
create-repo)
"$SCRIPT_DIR/create-repo" "$@"
;;
create-pr)
"$SCRIPT_DIR/create-pr" "$@"
;;
generate-access-token)
"$SCRIPT_DIR/generate-access-token" "$@"
;;
link-keycloak)
"$SCRIPT_DIR/link-keycloak" "$@"
;;
repo-add-collaborators)
"$SCRIPT_DIR/repo-add-collaborators" "$@"
;;
repo-config)
"$SCRIPT_DIR/repo-config" "$@"
;;
external-login-ctrl)
"$SCRIPT_DIR/external-login-ctrl" "$@"
;;
reset-password)
"$SCRIPT_DIR/reset-password" "$@"
;;
*)
echo "Unknown command: $subcommand"
echo "Run '$0' for usage information"
exit 1
;;
esac