From inki
Orchestrates the complete branch-commit-push-PR workflow with per-step confirmation. Useful for automating the standard git contribution cycle.
How this skill is triggered — by the user, by Claude, or both
Slash command
/inki:submit [--yes|-y] [issue reference or topic hint, e.g. 'Fixes #2143'][--yes|-y] [issue reference or topic hint, e.g. 'Fixes #2143']The summary Claude sees in its skill listing — used to decide when to auto-load this skill
From `$ARGUMENTS`, detect `--yes` or `-y` anywhere in the list. If present, set `AUTO=true` and remove the flag. What remains is the optional issue reference passed through to `/inki:pr`.
From $ARGUMENTS, detect --yes or -y anywhere in the list. If present, set AUTO=true and remove the flag. What remains is the optional issue reference passed through to /inki:pr.
main, invoke /inki:branch to create a properly prefixed branch./inki:commit to stage and write a commit message./inki:push (with explicit confirmation)./inki:pr to draft and open the PR.AUTO=false, default)The user confirms at each gate. If any sub-step fails or the user cancels, stop immediately.
AUTO=true)Pass --yes to each sub-skill that supports it. The chain runs without prompts. If any sub-skill genuinely needs a decision that isn't trivially auto-derivable (e.g., branch prefix is ambiguous and no hint was provided), it will still ask. --yes skips confirmations, not informed decisions.
The safety bracket from pr-fix does NOT apply here, because /inki:submit operates only on the current branch (single PR scope by construction).
/inki:pr.AUTO=true mode, surface a summary at the end showing branch name, commit SHA, and PR URL.npx claudepluginhub strapi/documentation --plugin inkiCommits changes to current or new Git branch, pushes upstream, and creates PR to staging or main. Uses quick multi-choice prompts for branch and target. Lightweight Git shipping without preflight checks.
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'.
Pushes commits, auto-creates feature branches from commit messages, and creates/updates GitHub pull requests using git and gh CLI. Manages clean trees and multi-PR splitting.