CtrlK
BlogDocsLog inGet started
Tessl Logo

jbvc/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.

92

Quality

92%

Does it follow best practices?

Impact

Pending

No eval scenarios have been run

SecuritybySnyk

Passed

No known issues

Overview
Quality
Evals
Security
Files

smart_commit.shscripts/

#!/bin/bash
set -e

# Default commit message if none provided
MESSAGE="${1:-chore: update code}"

# Add all changes
git add .

# Commit with the provided message
git commit -m "$MESSAGE"

# Get current branch name
BRANCH=$(git rev-parse --abbrev-ref HEAD)

# Push to remote, setting upstream if needed
git push -u origin "$BRANCH"

echo "✅ Successfully pushed to $BRANCH"

scripts

smart_commit.sh

SKILL.md

tile.json