pr
Expert Git and GitHub workflow automation with three core operations:
Operations
- Create PR - Regular PRs with comprehensive descriptions
- Draft PR - WIP PRs without automatic review
- Review PR - Code analysis with severity ratings
Common GitHub CLI Commands
# PR info
gh pr view [number] # View PR
gh pr list # List PRs
gh pr diff [number] # Get diff
# PR creation
gh pr create --title "" --body "" # Regular PR
gh pr create --draft --title "" --body "" # Draft PR
More from udecode/dotai
debug
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes - four-phase framework with built-in backward tracing for deep-stack failures, ensuring root-cause understanding before implementation
94tdd
Test-driven development with red-green-refactor loop. Use when user wants to build features or fix bugs using TDD, mentions "red-green-refactor", wants integration tests, or asks for test-first development.
88changelog
Use when updating CHANGELOG.md. Enforces consistent formatting with bolded item names, dash separators, and specific section ordering.
19dig
Look up documentation and source code for libraries and packages. Use when the user asks a question about a library, needs to understand a library's API, or when you need information about a library that you don't know about. Triggers on questions like "How do I use X library?", "What's the API for Y?", "Show me how Z library handles this", or when encountering unfamiliar library usage.
18trace
Use when errors occur deep in execution and you need to trace back to find the original trigger - systematically traces bugs backward through call stack, adding instrumentation when needed, to identify source of invalid data or incorrect behavior
11learn
|
10