1k-create-pr
Installation
SKILL.md
Create OneKey App PR
Automates the complete PR creation workflow for OneKey app-monorepo changes.
Quick Reference
| Step | Action | Commands |
|---|---|---|
| 1 | Check status | git status, git branch --show-current |
| 2 | Create branch (if on x) | git checkout -b <branch-name> |
| 3 | Lint fix | yarn lint --fix |
| 4 | Stage & commit | git add ., git commit -m "type: description" |
| 5 | Push to remote | git push -u origin <branch-name> |
| 6 | Extract context | Analyze conversation for intent, decisions, risks |
| 7 | Create PR | gh pr create --base x --title "..." --body "..." |
| 8 | Enable auto-merge | gh pr merge <number> --auto --squash |