install
source · Clone the upstream repo
git clone https://github.com/sterlingcrispin/claude_slash_commands
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sterlingcrispin/claude_slash_commands "$T" && mkdir -p ~/.claude/skills && cp -r "$T/push" ~/.claude/skills/sterlingcrispin-claude-slash-commands-push && rm -rf "$T"
manifest:
push/SKILL.mdsource content
Commit and Push Changes
Current State
- Git status: !
git status - Staged changes: !
git diff --cached - Unstaged changes: !
git diff
Your Task
- Review all changes (both staged and unstaged)
- Update documentation if appropriate:
- Update if pipeline, findings, or project status changedagents.md
- Update if user-facing docs need to reflect changesREADME.md
- Stage all relevant changes with
git add - Create a clear, concise commit message that summarizes what was changed and why
- Commit the changes
- Push to the remote repository
Follow these commit message guidelines:
- Use imperative mood ("Add feature" not "Added feature")
- Keep first line under 50 characters
- Focus on the "what" and "why", not the "how"
Important: Do not commit files that contain secrets (.env, credentials, etc.)