claudegoodies
Command

README

From alirezarezvani

Git workflow and quality assurance commands for the claude-skills repository.

Install

/README

Facts

Status
Actively maintained
Last commit

Source preview

The instructions Claude Code reads when this command runs.

# Claude Skills Slash Commands

**Git workflow and quality assurance commands for the claude-skills repository.**

---

## 🎯 Essential Commands

### Git Workflow

```
/git:cm         → Stage and commit (no push)
/git:cp         → Stage, commit, and push
/git:pr         → Create pull request
/git:clean      → Delete merged branches (local + remote)
```

### Quality Gates

```
/review         → Run local quality checks
/security-scan  → Run security validation
/update-docs    → Post-creation sync (CLI platforms, marketplace, docs, GitHub Pages)
```

---

## 📋 Git Commands

### /git:cm - Commit (No Push)

**Purpose**: Stage changes and create a conventional commit without pushing

**Usage**:
```
/git:cm
```

**What it does**:
1. Shows `git status --short`
2. Reviews each file diff for secrets
3. Stages files intentionally
4. Generates conventional commit message
5. Creates commit (no push)

**When to use**: When you want to commit locally before pushing

---

### /git:cp - Commit and Push

**Purpose**: Complete git workflow with quality checks

**Usage**:
```
/git:cp
```

**What it does**:
1. Runs `/review` for quality checks
2. Stages changes
3. Creates conventional commit
4. Pushes to origin
5. Triggers CI workflows

**When to use**: When ready to publish changes

---

### /git:pr - Create Pull Request

**Purpose**: Create a PR from current branch

**Usage**:
```
/git:pr      
View full source on GitHub →

Other slash commands