cap-commit-push
SolidUse when the user sends `cap` or asks for a fast commit-and-push shortcut for current repository changes.
AI & Automation 52 stars
6 forks Updated today MIT
Install
Quality Score: 82/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Cap Commit Push
## Overview
`cap` is a shorthand command that means: commit current changes and push to remote.
## Trigger
- User message is exactly `cap`.
- Or user explicitly asks for "commit + push".
## Required Workflow
1. Preflight
- Run `git status --short`.
- If there are no changes, report no-op and stop.
2. Sync Gate
- If this task changes behavior/commands/workflow, update impacted skills first.
- Keep `.codex/skills/*` and `.claude/skills/*` in sync for shared skills.
3. Stage
- Run `git add -A`.
4. Commit
- Prefer a Conventional Commit message based on current task context.
- Fallback message: `chore: cap snapshot <YYYY-MM-DD>`.
5. Push
- Run `git push`.
- If upstream is missing, run `git push --set-upstream origin <current-branch>`.
6. Report
- Return commit hash, branch, and push result.
## Safety Rules
- Do not amend commits unless the user explicitly asks.
- Do not run destructive git commands (`reset --hard`, forced checkout).
Details
- Author
- rexleimo
- Repository
- rexleimo/aios
- Created
- 6 months ago
- Last Updated
- today
- Language
- JavaScript
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
commit-push
Use when asked to ship/publish commits without opening a PR.
35 Updated 2 days ago
OutlineDriven AI & Automation Solid
git-pushing
Stage, commit, and push git changes with conventional commit messages. Use when user wants to commit and push changes, mentions pushing to remote, or asks to save and push their work. Also activates when user says "push changes", "commit and push", "push this", "push to github", or similar git workflow requests.
671 Updated 1 months ago
mhattingpete