Install
openclaw skills install github-deploy-skillCommit and push local project changes to GitHub, with optional repo creation and deployment hints.
openclaw skills install github-deploy-skillThis skill provides a reusable PowerShell script for Windows to automate:
github-deploy-skill.ps1-CommitMessage (required): commit message text-Repo (optional): GitHub repository in owner/repo format-Branch (optional): target branch, default main-CreateRepo (optional switch): create repo with gh if missing-SkipDeployHint (optional switch): do not print deployment hintFrom any Git project folder:
powershell -ExecutionPolicy Bypass -File .\github-deploy-skill.ps1 -CommitMessage "feat: update" -Repo "owner/repo" -Branch "main"
Create repository automatically:
powershell -ExecutionPolicy Bypass -File .\github-deploy-skill.ps1 -CommitMessage "init" -Repo "owner/new-repo" -CreateRepo
-CreateRepo is used: GitHub CLI (gh) installed and authenticatedorigin does not exist, pass -Repo and the script will add it automatically.