skills/general/git-workflow/SKILL.md
Git branching strategy, commit conventions, commit frequency, and PR practices. Use when starting feature work, writing commit messages, or preparing a pull request.
npx skillsauth add devjarus/coding-agent git-workflowInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
main is always deployable — never commit broken code directly to itfeat/add-user-export, fix/login-redirect, chore/upgrade-depsUse the Conventional Commits format:
<type>(<optional scope>): <short summary>
<optional body — explain WHY, not what>
| Type | When to use |
|------|-------------|
| feat | New feature visible to users |
| fix | Bug fix |
| refactor | Code change that is neither a feature nor a fix |
| test | Adding or updating tests |
| docs | Documentation only |
| chore | Build tooling, dependency updates, config |
Rules:
Commit:
Small, frequent commits make bisecting bugs trivial and revert safe.
Closes #123testing
Multi-source research method — decompose a question, fan out parallel investigators, interleaved-think each result, verify claims adversarially, synthesize a cited answer. Use for breadth-heavy research, stack comparisons, "which approach wins" questions.
testing
Decide when to use unit vs integration vs e2e tests, and when to mock vs use the real thing per dependency. Dependency injection is the enabler — without it you end up monkey-patching imports. Apply when writing tests of any kind.
development
Test-driven development process — write failing test, implement to pass, refactor. Use when implementing any feature or fixing bugs.
development
Patterns for sharing types, API contracts, and validation schemas between frontend and backend. Use when multiple domains consume the same data shapes to prevent contract drift.