Loading...
Loading...
Stage all changes, create commit, and push to remote. Use when asked to "push everything", "commit and push all", "push all my changes", or for bulk operations. Includes safety checks for secrets, API keys, and large files. Requires explicit user confirmation before executing. Use with caution.
npx skill4agent add luongnv89/skills auto-pushgit statusgit diff --statgit log -1 --oneline.env**.key*.pemcredentials.jsonsecrets.yamlid_rsa*.p12*.pfx*.cer*_API_KEY*_SECRET*_TOKENyour-api-keyxxxplaceholder>10MBnode_modules/dist/build/__pycache__/*.pyc.venv/.DS_Storethumbs.db*.swp*.tmpOPENAI_API_KEY=sk-proj-xxxxx # ❌ Real key detected!
AWS_SECRET_KEY=AKIA... # ❌ Real key detected!
STRIPE_API_KEY=sk_live_... # ❌ Real key detected!
# ✅ Acceptable placeholders:
API_KEY=your-api-key-here
SECRET_KEY=placeholder
TOKEN=xxx
API_KEY=<your-key>
SECRET=${YOUR_SECRET}.gitignore📊 Changes Summary:
- X files modified, Y added, Z deleted
- Total: +AAA insertions, -BBB deletions
🔒 Safety: ✅ No secrets | ✅ No large files | ⚠️ [warnings]
🌿 Branch: [name] → origin/[name]
I will: git add . → commit → push
Type 'yes' to proceed or 'no' to cancel.git add .
git status # Verify staging[type]: Brief summary (max 72 characters)
- Key change 1
- Key change 2
- Key change 3featfixdocsstylerefactortestchoreperfbuildcidocs: Update concept README files with comprehensive documentation
- Add architecture diagrams and tables
- Include practical examples
- Expand best practices sectionsgit commit -m "$(cat <<'EOF'
[Generated commit message]
EOF
)"
git push # If fails: git pull --rebase && git push
git log -1 --oneline --decorate # Verify✅ Successfully pushed to remote!
Commit: [hash] [message]
Branch: [branch] → origin/[branch]
Files changed: X (+insertions, -deletions)git pull --rebase && git pushgit push -u origin [branch]git add -p/pr