Help us improve
Share bugs, ideas, or general feedback.
From sdlc-core
Creates a GitHub pull request after pre-push validation, checking feature proposals and retrospectives, pushing the branch, and using gh CLI. Use when ready for review.
npx claudepluginhub stevegjones/ai-first-sdlc-practices --plugin sdlc-coreHow this skill is triggered — by the user, by Claude, or both
Slash command
/sdlc-core:prThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run full validation, then create a PR if clean.
Commits changes, pushes to a feature branch, and creates a PR for review. Handles branch detection, rebasing, and conventional commits.
Creates GitHub pull requests with validation workflows tailored to PR type (feature, bug fix, refactor, quick). Runs pre-flight checks, security audits, tests, and code reviews via agents.
Stage, commit, push, and open a pull request following project conventions and Conventional Commits spec. Accepts optional skip-checks to bypass validation.
Share bugs, ideas, or general feedback.
Run full validation, then create a PR if clean.
/sdlc-core:validate --pre-push
If validation fails, report the issues and stop. Do NOT push or create PR.
Verify required artifacts exist:
docs/feature-proposals/retrospectives/If validation passes, proceed:
git branch -vvgit push -u origin <branch>main unless $ARGUMENTS specifies otherwiseCreate the PR using gh pr create:
gh pr create --title "<short title under 70 chars>" --body "$(cat <<'EOF'
## Summary
<1-3 bullet points summarizing the changes>
## Changes
<List of files modified/created>
## Test plan
- [ ] `/sdlc-core:validate --pre-push` passes
- [ ] CI pipeline passes
<additional test steps as needed>
🤖 Generated with [Claude Code](https://claude.com/claude-code)
EOF
)"