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.
npx skills add seed-forge/harness-ai-kit --skill public-git-workflow-expert-basegit clone --depth 1 https://github.com/seed-forge/harness-ai-kitWrote 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.
[](https://agentmods.dev/skills/seed-forge/harness-ai-kit/public-git-workflow-expert-base)<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>- NVIDIA SkillSpector warn
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.
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.
| Model | Per session | Once 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 |
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.
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
- Determine the workflow model (Git Flow / GitHub Flow / Trunk-based).
- Create branch following naming conventions (Section: Branch Naming).
- Make atomic commits with Conventional Commits (Section: Commit Conventions).
- Push and open PR with proper description (Section: PR Workflow).
- Ensure CI green + all review threads resolved before merge.
- Merge with appropriate strategy — feature PR 默认 squash(见 §PR Workflow)。
- Release 打 tag:
v{major}.{minor}.{patch}(见 §Release & Tag)。
Critical Rules (Non-Negotiable)
- No direct push to main — always open a PR.
- No merge before all threads resolved — see references/pull-request-workflow.md.
- Feature PR 默认 squash merge — 开发分支历史压缩为一个干净 commit;release/hotfix 保留完整历史。
- No "tested/verified" without pasted command output — else say so explicitly.
- Force-push only with
--force-with-lease— never plain--force. - Commit before rebase — add → commit → fetch → rebase → push. Dirty tree aborts rebase.
- No editorializing — state what changed, not how good it is.
- Gitea-first —
git clone和git remote优先使用 Gitea 内网地址,避免直连 GitHub。 - 内网镜像优先 —
git clone时优先 Gitea 内网镜像 URL,减少公网流量和延迟。
What ships with it
12 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- CHANGELOG.md 1.8 KB
- README.md 161 B
- references/REFERENCE-ADVANCED-GIT.md 1.9 KB
- references/REFERENCE-MULTI-REPO.md 3.7 KB
- references/REFERENCE-README.md 493 B
- references/REFERENCE-TEAM-BRANCH-STRATEGY.md 2.9 KB
- references/REFERENCE-TEAM-CI-CD.md 3.1 KB
- references/REFERENCE-TEAM-COMMIT-CONVENTIONS.md 1.5 KB
- references/REFERENCE-TEAM-GITEA-WORKFLOW.md 1.7 KB
- references/REFERENCE-TEAM-PR-WORKFLOW.md 1.5 KB
- skill.json 1.8 KB
- USAGE.md 1.7 KB
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.
- 8d ago First seen · 257 lines · 75 tokens per session scan A 362789d6e4c1
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.
Other skills, from other repositories
Git Commit Writer
Generates conventional commit messages from staged changes or a diff.
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…
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.
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…
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.
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.