# Benja Pauls Serpentstack Git Workflow

> Git Workflow

- Skill: `tomevault-io/benja-pauls-serpentstack-git-workflow` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/benja-pauls-serpentstack-git-workflow`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/benja-pauls-serpentstack-git-workflow/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/benja-pauls-serpentstack-git-workflow

---


# Git Workflow

## Branch Naming

Use prefixed branch names:

- `feature/short-description` — new functionality
- `fix/short-description` — bug fixes
- `chore/short-description` — tooling, dependencies, config
- `refactor/short-description` — code restructuring

Lowercase, hyphens, under 50 characters.

## Commit Messages

Follow Conventional Commits:

```
<type>: <short summary under 72 chars>
```

Types: `feat`, `fix`, `chore`, `docs`, `test`, `refactor`, `style`

## Pull Request Format

```bash
gh pr create \
  --title "feat: add projects endpoint" \
  --body "## Summary
- What changed and why (1-3 bullets)

## Test plan
- How the changes were verified"
```

## Pre-Push Checklist

Before pushing, run the full verification suite:

```bash
make verify   # lint + typecheck + test for both backend and frontend
```

This runs the same checks as CI, so if it passes locally, CI will pass too.

---
> Source: [Benja-Pauls/SerpentStack](https://github.com/Benja-Pauls/SerpentStack) — distributed by [TomeVault](https://tomevault.io).
<!-- tomevault:4.0:skill_md:2026-06-16 -->

