agentsclimarketplace

Git workflow standards

Skill LIghtJUNction/lightjunction/skills/git-workflow-standards

I'M LIghtJUNction

Install
npx -y skills add LIghtJUNction/lightjunction --skill git-workflow-standards

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

This skill should be used when the user asks to "add Git standards", "create a branch", "commit changes", "write a commit message", "open a PR", "review a PR", "prepare a release", "tag a version", or mentions trunk-based development, Conventional Commits, branch naming, PR checklist, semantic versioning, or release tags.

SKILL.md

1.8 KB, as published. Nobody here has run it

Git Workflow Standards

Apply this skill when planning, committing, reviewing, merging, or releasing changes with Git.

Workflow

  1. Inspect git status --short before making Git decisions.
  2. Keep unrelated user changes intact. Do not revert changes that were not made for the current task.
  3. Load references/git-workflow-standards.md before creating branches, commits, pull requests, tags, or release branches.
  4. Keep each branch, commit, and PR small enough to review and validate.
  5. Run relevant checks before committing or requesting review.
  6. Use Conventional Commits for commits and PR titles.

Defaults

  • Use trunk-based development.
  • Treat main as the only long-lived branch.
  • Create short-lived feature/, bugfix/, hotfix/, or release/ branches from main.
  • Avoid force pushing main.
  • Prefer feature flags for large features that cannot be completed quickly.
  • Use squash merge for pull requests unless the project explicitly requires a different merge strategy.

Commit Message Shape

Use:

<type>(<scope>): <subject>

[body]

[footer]

Use types: feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert.

Release Shape

Use semantic version tags:

v<major>.<minor>.<patch>[-prerelease]

Examples: v1.2.3, v2.0.0-rc.1.

Reference Files

  • references/git-workflow-standards.md - Detailed branch, commit, pull request, versioning, tag, and prohibited-pattern rules.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.