用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ahmadawais/skills --skill pr命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
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.
正在显示 SKILL.md
基于 SOC 职业分类
| 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