Loading...
Loading...
Automatically creates comprehensive pull requests to the dev branch when user indicates their feature/fix is complete and ready for review. Use when user mentions creating PR, submitting for review, or indicates work is done. Examples - "create a PR", "ready for review", "open a pull request", "submit this to dev", "all tests passing, let's get this reviewed".
npx skill4agent add marcioaltoe/claude-craftkit git-pr-creationgh auth statusgit branch --show-currentgit log dev..HEAD --oneline<type>(<scope>): <description>feat(auth): add JWT-based user authenticationfix(api): resolve null pointer in user endpointrefactor(db): migrate from UUID to UUIDv7## Summary
[2-3 sentences describing what this PR accomplishes and the problem it solves]
## Key Features
- [Main feature or improvement 1]
- [Main feature or improvement 2]
- [Highlight important changes]
## Changes Included
**New Features:**
- ✅ [Detailed feature description with technical context]
**Bug Fixes:**
- ✅ [Bug description, root cause, and solution]
**Infrastructure/CI:**
- ✅ [Infrastructure or tooling changes]
**Refactoring:**
- ✅ [Code improvements and technical debt reduction]
## Technical Details
**Endpoints/Changes:**
- [List new endpoints, modified APIs, or significant technical changes]
- [Include HTTP methods, paths, and purpose]
**Request/Response Examples:**
```json
// Add relevant JSON examples for new endpoints or data structures
```
### Command Execution Standards
**CRITICAL**: When the PR body contains JSON code blocks or special characters:
```bash
gh pr create --base dev --head $(git branch --show-current) --title "<TITLE>" --body "$(cat <<'EOF'
<BODY>
EOF
)"gh auth statusgit branch --show-currentgit log dev..HEADfeat(auth): implement JWT-based authentication system
## Summary
[Your generated summary]
...dev..HEADgh auth login