원클릭으로
pr
PR workflow - validate, branch, commit, push, PR, checkout main, rebase, squash merge. Use when submitting changes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
PR workflow - validate, branch, commit, push, PR, checkout main, rebase, squash merge. Use when submitting changes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Write code like Ahmad Awais.
Senior UI/UX Engineer. Architect digital interfaces overriding default LLM biases. Enforces metric-based rules, strict component architecture, CSS hardware acceleration, and balanced design engineering.
Comprehensive guidance for building and debugging JavaScript and TypeScript CLIs with @clack/core and @clack/prompts, backed by bundled upstream source and examples. Use when implementing clack prompt flows, deciding between core primitives and styled prompts, adapting clack examples, or validating clack API usage.
Transform messy work updates into clean, standardized end-of-day Slack sync summaries. Use when asked to "format my updates", "create a sync", "write a standup", or "summarize my work" for Slack.
Write sarcastic, ultra-concise X/Twitter posts about AI coding, open-source, and dev life. Use when asked to write tweets or X posts.
| name | pr |
| description | PR workflow - validate, branch, commit, push, PR, checkout main, rebase, squash merge. Use when submitting changes. |
| license | Apache-2.0 |
| metadata | {"author":"ahmadawais","version":"0.0.1"} |
Validate: pnpm build
Branch: Ask user or suggest (fix/, feat/, refactor/, docs/)
git checkout -b {branch-name}
Commit: Stage specific files, use emoji-log format
FIX: | NEW: | IMPROVE: | DOC:git add {files} && git commit -m "$(cat <<'EOF'
FIX: Description
EOF
)"
Push: git push -u origin {branch}
PR:
gh pr create --title "FIX: Description" --body "$(cat <<'EOF'
## Summary
- Changes
## Test plan
- [ ] Tests
EOF
)"
Main: git checkout main && git pull --rebase origin main
Merge: Ask user, then:
gh pr merge {number} --squash --delete-branch
git pull --rebase origin main