Borrowing it
Nothing to install: this file belongs to LionelHuanSi/awesome-ai-agent-skills. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/LionelHuanSi/awesome-ai-agent-skills/main/.agents/skills/git-workflow/SKILL.mdgit clone --depth 1 https://github.com/LionelHuanSi/awesome-ai-agent-skillsWrote 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/lionelhuansi/awesome-ai-agent-skills/git-workflow)<a href="https://agentmods.dev/skills/lionelhuansi/awesome-ai-agent-skills/git-workflow"><img src="https://agentmods.dev/badge/skills/lionelhuansi/awesome-ai-agent-skills/git-workflow/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/lionelhuansi/awesome-ai-agent-skills/git-workflow"><img src="https://agentmods.dev/badge/skills/lionelhuansi/awesome-ai-agent-skills/git-workflow.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00043 | $0.01033 |
| Opus 5 | $0.00022 | $0.00517 |
| Sonnet 5 | $0.00009 | $0.00207 |
| Haiku 4.5 | $0.00004 | $0.00103 |
Grade A, and why
git-workflow scanned grade A with 1 finding 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 11d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- `docs`: Documentation (`docs(api): add curl examples to /agents [PROJ-202]`) How it starts
The opening of the file, as written. The whole thing — 75 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Git Workflow & Jira Integration Skill
Team standard Git workflow guide for branch naming, commit formatting, interactive rebase, cherry-pick operations, branch protection, and Jira integration.
1. Branch Naming Conventions
Syntax Structure
<type>/<jira-id>-<slug>
Example: feature/PROJ-123-user-export-csv
Branch Classification Table
| Type | When to Use | Jira Task Example | Branch Example |
|---|---|---|---|
feature/ |
New features, user stories in sprint. | "As a user I can export CSV" | feature/PROJ-123-export-csv |
fix/ |
Bug fixes in dev/staging environment. | "Login fails on empty password" | fix/PROJ-456-login-empty-pass |
hotfix/ |
Production emergency bug fixes. Created from main. |
"Payment crashes for VN users" | hotfix/PROJ-789-payment-crash |
chore/ |
Dependency updates, CI/CD, config, scripts. | "Upgrade FastAPI to 0.111" | chore/PROJ-101-upgrade-fastapi |
release/ |
Release prep (version bump, changelog). Created from develop. |
"Release sprint 12" | release/v1.4.0 |
docs/ |
Documentation, README, API docs, comments. | "Document agent API endpoints" | docs/PROJ-202-agent-api-ref |
spike/ |
Technical POC, benchmark, research. Code is not merged directly. | "Evaluate LLM providers for cost" | spike/PROJ-303-llm-cost-eval |
refactor/ |
Code refactoring without behavior change. | "Decouple agent router from executor" | refactor/PROJ-404-agent-router |
test/ |
Adding or fixing test coverage. | "Add E2E tests for export flow" | test/PROJ-505-e2e-export |
wip/ |
Work-in-progress, temporary backup push. No PR, no merge. | — | wip/PROJ-606-new-dashboard |
No-Ticket Guidelines
- Rule: If no Jira ticket exists, create a placeholder task first (
feature/PROJ-999-temp-slug). - If push is urgent without a ticket, use
no-ticketprefix:chore/no-ticket-critical-dep-fix. Un-tracked branches require manual Team Lead approval to merge.
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.
- 11d ago First seen · 75 lines · 43 tokens per session scan A d16f9634f64b
git-workflow is a skill published in the GitHub repository LionelHuanSi/awesome-ai-agent-skills (3 stars, last pushed 1mo ago), licensed MIT. It adds 43 tokens to every session and 1,033 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
prowler-commit
Creates professional git commits following conventional-commits format. Trigger: When creating commits, after completing code changes, when user asks to commit.
gh-auth-isolation
Safely manage multiple GitHub identities (EMU + personal) in agent workflows.
comet-github
A routing guide for Comet-related GitHub work. It directs requests about pull requests, issues, CI failures, ideas, and fixes to the appropriate review or implementation process.
github-skill
Work with GitHub via the gh CLI — clone repositories, create/list/merge pull requests, create/list issues, and run any other gh command (API calls, workflow runs, releases, repo administration). List operations return parsed JSON.
changelog-composer
Generates structured changelogs and release notes from git history and PRs, classifying breaking changes, features, fixes, performance, docs. Triggers on: "generate changelog", "write release notes", "what changed since", "prepare release", "release notes for", "diff since tag".
re0-merge
Review and land an external contribution the way this suite does: gate it against the thesis, land it with the author's credit intact, complete a new skill rather than merging it raw, then approve, credit, and explain before closing. Use when reviewing a pull request, as any collaborator or maintainer, not only the…