mcpbeat Sign in

Git Workflow Agent Skill

| Langfuse repo Git, GitHub, commit, branch, pull request, issue search, release, and production-promotion workflow. Use when staging, committing, pushing, opening PRs, searching GitHub issues, or changing release/promotion behavior.

734 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
32482
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/langfuse/langfuse --skill git-workflow

The instruction itself

5 sections, as written by the author

Git Workflow

Use this skill for repo-specific Git, GitHub, pull request, and release

operations.

Safety

  • Inspect git status before staging or committing.
  • Do not stage unrelated working-tree changes.
  • Do not revert unrelated working-tree changes.
  • Do not use destructive commands such as git reset --hard or

git checkout -- unless explicitly requested.

  • Keep commits focused and atomic.
  • Never add secrets or credentials to the repo.

Commits and Pull Requests

  • Commit messages and PR titles must follow Conventional Commits:

type(scope): description or type: description.

  • Use feat for new features and fix for bug fixes.
  • Use a scope when it clarifies the affected area, for example

fix(api): handle missing trace id.

  • Mark breaking changes with ! in the type/scope or a BREAKING CHANGE:

footer.

  • PR titles are validated by .github/workflows/validate-pr-title.yml.
  • In PR descriptions, list impacted packages and executed verification

commands.

GitHub

  • Use gh search issues for GitHub issue search.
  • Prefer non-interactive Git and GitHub commands where possible.
  • Keep PRs narrow enough to review without unrelated refactors.

Release

  • Releases are cut with pnpm run release, run on the branch being released.

Allowed release branches are main and v3

(scripts/release-preflight.sh owns the allowlist).

  • main is the current line and the only branch that ships to Langfuse

Cloud. v3 is the OSS maintenance line: a release from it produces a tag,

GitHub release, and Docker images, but never a Cloud deploy.

  • On any vX.Y.Z tag push, .github/workflows/release.yml promotes main

to production only if the tagged commit is an ancestor of main;

maintenance-branch tags skip promotion. The production migration

confirmation in the release preflight likewise only runs for main.

  • Promote main to production without a release via

.github/workflows/promote-main-to-production.yml or

pnpm run release:cloud (both main-only).

  • The latest-release markers track the current major line: pipeline.yml

gates the Docker latest tag on refs/tags/v4, and maintenance branches

disable that gate and set release-it.github.makeLatest: false in their

root package.json so their releases never claim the Docker latest tag

or the GitHub "Latest release" badge. At the next major GA (v5), repeat

the flip: move the gate to refs/tags/v5 on main, then disable it and

set makeLatest: false on the new v4 maintenance branch.

  • Do not change release/versioning flow without updating this skill and the

impacted package guides.

Other skills for the same job

different authors, same section of the catalogue
Git Commit
by github
vendor ×3

Execute git commit with conventional commit message analysis, intelligent staging, and message generation. Use when user asks to commit changes, create a git commit, or mentions "/commit". Supports: (1) Auto-detecting type and scope from changes, (2) Generating conventional commit messages from diff, (3) Interactive commit with optional type/scope/description overrides, (4) Intelligent file staging for logical grouping

799 tokens
Github Code Review
by ComeOnOliver
×3

Comprehensive GitHub code review with AI-powered swarm coordination

13k tokens
Commit Work
by softaworks
×2

Create high-quality git commits: review/stage intended changes, split into logical commits, and write clear commit messages (including Conventional Commits). Use when the user asks to commit, craft a commit message, stage changes, or split work into multiple commits.

2k tokens
Verification & Quality Assurance
by Microck
×2

Comprehensive truth scoring, code quality verification, and automatic rollback system with 0.95 accuracy threshold for ensuring high-quality agent outputs and codebase reliability.

4k tokens
Gh CLI
by christophacham
×2

GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.

10k tokens
Github
by Dicklesworthstone
×2

GitHub CLI - manage repositories, issues, pull requests, actions, releases, and more from the command line.

1k tokens
Codebase Cleanup Refactor Clean
by ComeOnOliver
×2

You are a code refactoring expert specializing in clean code principles, SOLID design patterns, and modern software engineering best practices. Analyze and refactor the provided code to improve its quality, maintainability, and performance.

9k tokens
Codebase Cleanup Tech Debt
by ComeOnOliver
×2

You are a technical debt expert specializing in identifying, quantifying, and prioritizing technical debt in software projects. Analyze the codebase to uncover debt, assess its impact, and create acti

6k tokens

How to use it

Copy the folder

Take langfuse/git-workflow from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.