From codagent
Commits unstaged changes with generated descriptive message, pushes branch to remote, and creates or updates GitHub pull request. Runs validators, skips sensitive files like .env.
npx claudepluginhub codagent-ai/agent-skills --plugin codagentThis skill uses the workspace's default tool permissions.
Commit all changes, push to the remote, and create or update the pull request for the current branch.
Stages changes, commits using Conventional Commits spec and project conventions, pushes branch, runs validation/CI checks, and opens pull request on GitHub or GitLab.
Commits changes to a new git branch (if on main), pushes to origin, and creates or views GitHub PR with gh CLI. Activates on 'commit and push', 'open PR', 'ship it'.
Creates new git branch if on main, commits and pushes changes, adapts PR template to git diffs, and opens GitHub pull request with conventional commit title.
Share bugs, ideas, or general feedback.
Commit all changes, push to the remote, and create or update the pull request for the current branch.
Run validator detection
agent-validator detect 2>&1agent-validator:validator-run skill and wait for it to pass before proceedingCheck for uncommitted changes using git status --porcelain
git diff --staged and git diff to see what's changed.env or credentials)git commit -m "message"; add -m "Co-Authored-By: <Name> <email>" only when the co-author identity is explicitly configured or provided by the userPush to remote
git branch --show-currentgit push -u origin <branch>Check if PR exists
gh pr view --json url,title,state,number,headRefOid while capturing stdout, stderr, and exit codestate field from the JSON responseheadRefOidgh repo view --json defaultBranchRef --jq .defaultBranchRef.namegit log <default-branch>..HEAD --onelinegh pr edit <pr-number> --body "updated description"gh repo view --json defaultBranchRef --jq .defaultBranchRef.namegit log <default-branch>..HEAD --onelinegh pr create --base <default-branch> --title "title" --body "description"Print the PR URL at the end so it's easy to find