public-git-workflow-expert-base

public-git-workflow-expert-base is a skill for Claude Code, Codex from seed-forge/harness-ai-kit. It costs 75 tokens per session (2,705 once invoked), scanned A, original, Apache-2.0.

A reference guide to Git, a tool for tracking code changes and collaborating through branches and reviews. It also documents team rules for commits, branch naming, Gitea, and repository mirroring.

In plain words
What is it for?
Use it to choose a branching workflow, create correctly named branches, make structured commits, prepare pull requests, check CI, resolve reviews, and merge or tag releases.
Why use it?
It helps keep team changes organized and makes the steps from creating a branch to merging a reviewed change more consistent.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to choose a branching workflow, create correctly named branches, make structured commits, prepare pull requests, check CI, resolve reviews, and merge or tag releases.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/seed-forge/harness-ai-kit/public-git-workflow-expert-base
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add seed-forge/harness-ai-kit --skill public-git-workflow-expert-base
Clone the repo
git clone --depth 1 https://github.com/seed-forge/harness-ai-kit

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for public-git-workflow-expert-base

README.md
[![agentmods](https://agentmods.dev/badge/skills/seed-forge/harness-ai-kit/public-git-workflow-expert-base.svg)](https://agentmods.dev/skills/seed-forge/harness-ai-kit/public-git-workflow-expert-base)
Your own site
<a href="https://agentmods.dev/skills/seed-forge/harness-ai-kit/public-git-workflow-expert-base"><img src="https://agentmods.dev/badge/skills/seed-forge/harness-ai-kit/public-git-workflow-expert-base.svg" alt="Measured on agentmods" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,705 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Privilege Escalation · line 238
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00075 $0.02705
Opus 5 $0.00037 $0.01352
Sonnet 5 $0.00015 $0.00541
Haiku 4.5 $0.00007 $0.00270

Measured 8d ago against content hash 362789d6e4c1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

public-git-workflow-expert-base scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/public-git-workflow-expert-base/SKILL.md · 257 lines

How it starts

The opening of the file, as written. The whole thing — 257 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Git Workflow Knowledge Base

Foundational guidance for Git version control workflows, branching strategies, commit conventions, and collaborative development.

Source: Extends netresearch/git-workflow-skill v1.18.8 (CC-BY-SA-4.0). Team-specific rules overlay on top.

架构分层

┌─────────────────────────────────────────────┐
│  下游技能(extends 本基座)                    │
│  devlab-git-workflow-expert 等               │
├─────────────────────────────────────────────┤
│  团队规范叠加层(本文件 §团队规范章节)          │
│  commit 规范 / 分支策略 / Gitea / 镜像同步     │
├─────────────────────────────────────────────┤
│  上游通用知识(netresearch/git-workflow-skill) │
│  branching / commits / PR / CI / hooks       │
└─────────────────────────────────────────────┘

Workflow

  1. Determine the workflow model (Git Flow / GitHub Flow / Trunk-based).
  2. Create branch following naming conventions (Section: Branch Naming).
  3. Make atomic commits with Conventional Commits (Section: Commit Conventions).
  4. Push and open PR with proper description (Section: PR Workflow).
  5. Ensure CI green + all review threads resolved before merge.
  6. Merge with appropriate strategy — feature PR 默认 squash(见 §PR Workflow)。
  7. Release 打 tag:v{major}.{minor}.{patch}(见 §Release & Tag)。

Critical Rules (Non-Negotiable)

  1. No direct push to main — always open a PR.
  2. No merge before all threads resolved — see references/pull-request-workflow.md.
  3. Feature PR 默认 squash merge — 开发分支历史压缩为一个干净 commit;release/hotfix 保留完整历史。
  4. No "tested/verified" without pasted command output — else say so explicitly.
  5. Force-push only with --force-with-lease — never plain --force.
  6. Commit before rebase — add → commit → fetch → rebase → push. Dirty tree aborts rebase.
  7. No editorializing — state what changed, not how good it is.
  8. Gitea-firstgit clonegit remote 优先使用 Gitea 内网地址,避免直连 GitHub。
  9. 内网镜像优先git clone 时优先 Gitea 内网镜像 URL,减少公网流量和延迟。

Read the full file on GitHub · 257 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 257 lines · 75 tokens per session scan A 362789d6e4c1

Subscribe to this mod's changes

public-git-workflow-expert-base is a skill published in the GitHub repository seed-forge/harness-ai-kit (22 stars, last pushed 7d ago), licensed Apache-2.0. It adds 75 tokens to every session and 2,705 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

Git Commit Writer

Generates conventional commit messages from staged changes or a diff.

Notysoty/openagentskills · 16 tokens

conventional-commits

The Conventional Commits format — also called "semantic commits" / semantic commit messages — a type(scope): description header (feat, fix, …) plus an optional BREAKING CHANGE footer, and how it makes history machine-readable to drive automated version bumps and changelogs. Use when writing a commit message or PR…

stealth-factory/skills · 157 tokens

commit-message

Analyze git changes and generate conventional commit messages. Supports batch commits for multiple unrelated changes. Use when: (1) Creating git commits, (2) Reviewing staged changes, (3) Splitting large changesets into logical commits.

jiatastic/open-python-skills · 49 tokens

git-workflow-and-versioning

Structures git workflow practices. Use when making any code change. Use when committing, branching, resolving conflicts, opening or reviewing a pull request (PR), pushing to a remote, or when you need to organize work across multiple parallel streams. Use when cutting a release, choosing a semantic version bump…

addyosmani/agent-skills · 74 tokens

git-advanced-workflows

Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.

wshobson/agents · 54 tokens

workflow-patterns

Use this skill when implementing tasks according to Conductor's TDD workflow, handling phase checkpoints, managing git commits for tasks, or understanding the verification protocol.

wshobson/agents · 35 tokens