一键导入
commit
Quickly commit and push local changes while leaving validation to GitHub checks
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Quickly commit and push local changes while leaving validation to GitHub checks
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Quickly commit, push, and create a PR while leaving validation to GitHub checks
Step-by-step guide for adding new pages to the Yew frontend
Step-by-step guide for adding new OAuth integrations to Lightfriend
Step-by-step guide for modifying database schema using Diesel migrations
Run formatting and linting checks on the codebase
Update Lightfriend documentation and create commit
| name | commit |
| description | Quickly commit and push local changes while leaving validation to GitHub checks |
Commit and push local changes quickly. Do not run local formatting, lint, or test commands by default; GitHub Actions runs validation after push.
git status
Review what will be committed. If there are no changes, inform the user and stop.
Use git diff --stat or git diff --cached --stat when a quick scope check is useful. Do not run full validation unless the user explicitly asks for it.
git add -A
Ask the user for a commit message, or generate one based on the changes.
IMPORTANT: Never include:
Commit message format:
git commit -m "Short description of changes"
For multi-line messages:
git commit -m "$(cat <<'EOF'
Short summary
Longer description if needed
EOF
)"
git push origin HEAD
If push fails due to upstream changes, pull first:
git pull --rebase origin HEAD && git push origin HEAD
If staging, commit, or push fails:
If GitHub checks fail after push, inspect and fix them in a follow-up workflow.
# Quick commit + push
git status
git add -A
git commit -m "message"
git push origin HEAD