From maintainer-suite
Validates, commits, pushes, and remotely verifies approved repository changes. Use when publication is requested; not for releases, package publishing, or announcements.
How this skill is triggered — by the user, by Claude, or both
Slash command
/maintainer-suite:ln-62-repository-publisherThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Publish only changes the user has authorized, then verify the result from the remote source.
Publish only changes the user has authorized, then verify the result from the remote source.
| Need | Preferred capability | Fallback |
|---|---|---|
| Scope, staging, history, and synchronization | Native Git CLI | Stop if equivalent Git evidence is unavailable |
| Repository validation | Project-native commands and installed validators | Documented manual checks |
| Remote branch and CI state | Authenticated hosting CLI or connector | Git remote evidence plus direct workflow URLs |
| Clean-source verification | Temporary clone and isolated host configuration when distribution surfaces changed | Remote raw files plus BLOCKED for required install evidence |
| Static-site verification | Deployment workflow plus direct HTTP request | Hosting API deployment state |
| Current marketplace behavior | Official host documentation | Mark assumptions and avoid destructive retries |
Prefer compact Git output first, then open the full diff for files that will be staged. Never pipe commands in a way that hides the failing exit code.
Use hosting APIs for remote facts and Git for repository facts. A local marketplace directory cannot prove that a Git-backed user update works.
git status -sb, staged and unstaged diffs, untracked files, remotes, and recent commit style.BLOCKED rather than bypassing branch protection, authentication, or required checks.PUBLISHED — commit, push, required CI, and applicable remote verification succeeded.PARTIAL — the push succeeded but a non-destructive remote check is pending or failed.BLOCKED — publication did not complete because authorization, synchronization, validation, or remote access failed.Before returning, account for every checkbox: mark it complete only when its action and required evidence are complete; N/A, skipped, unavailable, or delegated items remain incomplete and must be explained. Apply the skill's existing verdict, decision, and approval rules to every incomplete item.
Prepend this accounting header to every skill-specific report template: Checklist: X/Y complete
Incomplete: None | section/item — reason; outcome impact; exact next action; list every incomplete item.
Return:
If publication is PARTIAL, state whether the pushed commit is safe to leave in place and what observable event would close the remaining check.
Do not call the result PUBLISHED until the remote commit and every applicable required workflow are observable.
npx claudepluginhub levnikolaevich/claude-code-skills --plugin maintainer-suitePrepares and publishes a tagged GitHub release from repository evidence. Use for an explicit release request; not for ordinary commits, packages, or community news.
Safely stages, commits, and pushes git changes with conventional commit messages, respecting protected branches and remote configuration.