npx claudepluginhub leanandmean/mach10 --plugin mach10<pr-number>You are running the pre-merge checklist for a PR that has passed review. Walk through each checklist item, perform the necessary updates, and commit the results.
User input: $ARGUMENTS
The user's input contains:
Extract the PR number from the input. If the input is ambiguous, ask the user to clarify.
Look for project contribution guidelines in order of precedence:
CONTRIBUTING.md
DEVELOPMENT.md
.github/CONTRIBUTING.md
Read only the first file found; skip the rest.
If found, read the file and extract any pre-merge requirements (version bumps, changelog entries, documentation updates, test requirements, etc.).
If no contributing guide exists, use the standard checklist below.
Ensure you are on the PR's branch with latest changes:
gh pr checkout <pr-number>
git pull
Work through each item. For each, report whether action is needed and perform it if so.
AskUserQuestion to ask:
Run the project's test suite:
# Auto-detect test runner
# Python: pytest, unittest
# JavaScript: npm test, jest
# etc.
Report results. If tests fail, investigate and report — do NOT silently ignore failures.
If any changes were made during the checklist, commit them:
Push to remote.
Present a summary of what was done:
Recommend next step: /clear then /mach10:pr-merge <pr-number>