github-workflow

github-workflow is a skill for Claude Code, Codex from Kimyongari/harness-factory. It costs 53 tokens per session (1,151 once invoked), scanned A, original, MIT.

A set of rules for using Git and GitHub in software projects. Git tracks code changes, while GitHub hosts repositories and supports collaboration through branches, issues, and pull requests.

In plain words
What is it for?
Use it when creating branches, checking changes, staging files, committing, pushing, opening or reviewing pull requests, and handling GitHub issues.
Why use it?
It makes code collaboration more predictable and helps prevent accidental commits, unsafe branch changes, leaked secrets, or unwanted pushes.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/kimyongari/harness-factory/github-workflow
Any agent
npx skills add Kimyongari/harness-factory --skill github-workflow
Clone the repo
git clone --depth 1 https://github.com/Kimyongari/harness-factory

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 github-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/kimyongari/harness-factory/github-workflow.svg)](https://agentmods.dev/skills/kimyongari/harness-factory/github-workflow)
Your own site
<a href="https://agentmods.dev/skills/kimyongari/harness-factory/github-workflow"><img src="https://agentmods.dev/badge/skills/kimyongari/harness-factory/github-workflow.svg" alt="Measured on agentmods" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,151 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00053 $0.01151
Opus 5 $0.00026 $0.00575
Sonnet 5 $0.00011 $0.00230
Haiku 4.5 $0.00005 $0.00115

Measured 4d ago against content hash 75524ab491f9, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

github-workflow 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 4d 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.

.claude/skills/github-workflow/SKILL.md · 70 lines

How it starts

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

깃허브 작업 규칙 (Git / GitHub Workflow)

버전 관리와 협업 작업에 따른다. GitHub 작업은 gh CLI를 쓴다. IMPORTANT: 시스템/사용자 메시지가 이 스킬보다 우선한다. 보호 브랜치: main · 커밋 컨벤션: Conventional Commits (한국어) · 브랜치 규칙: feature/<설명>, fix/<설명>

0. 안전 수칙 (절대 규칙)

  • 명시 요청 없이 커밋하지 않는다. "커밋해줘"가 있을 때만.
  • 명시 요청 없이 push 하지 않는다.
  • git config를 수정하지 않는다.
  • 파괴적 명령은 사용자가 명시 요청할 때만: push --force, reset --hard, checkout ., clean -f, branch -D.
  • main에 force push 금지. 요청받아도 경고한다.
  • 훅을 건너뛰지 않는다(--no-verify, --no-gpg-sign 금지). 훅 실패는 우회하지 말고 원인을 고친다.
  • amend 대신 항상 새 커밋(사용자가 amend를 명시 요청한 경우 제외). 훅 실패 후 amend하면 직전 커밋이 손상될 수 있다.
  • .env, secrets/, .venv/, node_modules/ 경로와 시크릿(.env, credentials)을 스테이징하지 않는다.

1. 커밋 전 (병렬 실행으로 상태 파악)

  • git status — 변경/미추적 확인 (-uall은 큰 레포에서 메모리 문제, 쓰지 않는다)
  • git diff — 스테이징/비스테이징 변경
  • git log --oneline -10 — 이 레포의 커밋 스타일 파악

2. 스테이징

  • git add -A/git add . 대신 파일을 이름으로 명시. 시크릿·대용량 바이너리 혼입 사고를 막는다.
  • 시크릿 의심 파일은 커밋하지 않는다. 명시 요청 시 경고한다.

3. 커밋 메시지

  • 컨벤션: Conventional Commits / 언어: 한국어.
  • conventional이면 type(scope): subject 형식. type: feat(새 기능), fix(버그), refactor, test, docs, chore.
  • 무엇보다 왜를 1~2문장으로. 제목 줄 70자 이하, 상세는 본문.
  • 실제 diff를 반영한다. 하지 않은 일을 지어내지 않는다.
  • HEREDOC으로 메시지를 전달해 포맷을 보존한다.
# conventional + 한국어 예시
git commit -m "$(cat <<'EOF'
fix(payments): 멱등키 만료 전 재시도하도록 수정

Stripe 멱등키가 24h만 유지되어 그 이후 재시도 시 중복 청구가 발생했다.
재시도 윈도우를 23h로 제한해 방지한다.
EOF
)"

4. PR

  • 생성 전 base로부터 전체 커밋 범위를 본다: git log + git diff main...HEAD (최신 커밋만 보지 말 것).
  • 제목 70자 이하. 본문은 ## Summary + ## Test plan(체크리스트).
  • gh pr create에 HEREDOC으로 본문 전달. 완료 후 PR URL을 반환한다.
  • PR/이슈는 항상 전체 URL 마크다운 링크로 표기. 맨 #123 금지.
  • base 브랜치: main.

5. 충돌·예상 못 한 상태

  • 머지 충돌은 변경을 버리지 말고 해결한다.
  • 익숙지 않은 파일·브랜치·잠금 파일은 삭제·덮어쓰기 전에 조사한다(사용자의 진행 중 작업일 수 있다).

6. gh CLI

  • 이슈/PR/체크/릴리스 등 모든 GitHub 작업에 gh. URL을 받으면 gh로 조회.
  • PR 코멘트: gh api repos/{owner}/{repo}/pulls/{n}/comments.

체크리스트

  • 사용자가 커밋/푸시를 명시 요청했는가
  • 파일을 이름으로 명시해 스테이징했는가(시크릿·never_touch 미포함)
  • 커밋이 Conventional Commits 컨벤션과 한국어 언어를 따르고 "왜"를 설명하는가
  • PR이 전체 커밋 범위를 반영하는가
  • 훅 우회·파괴적 명령 무단 실행이 없는가
  • PR/이슈를 전체 URL 링크로 표기했는가

Read the full file on GitHub · 70 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. 4d ago First seen · 70 lines · 53 tokens per session scan A 75524ab491f9

Subscribe to this mod's changes

github-workflow is a skill published in the GitHub repository Kimyongari/harness-factory (5 stars, last pushed 28d ago), licensed MIT. It adds 53 tokens to every session and 1,151 once invoked, about $0.0003 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-31.

Related

Other skills, from other repositories

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

chinese-commit-conventions

中文 commit 与 changelog 配置参考——Conventional Commits 中文适配、commitlint/husky/commitizen 中文模板、conventional-changelog 中文配置。仅在用户显式 /chinese-commit-conventions 时调用,不要根据上下文自动触发。.

jnMetaCode/superpowers-zh · 65 tokens

managing-git

Manages Git workflows including branching, commits, and pull requests. Use when working with Git, creating commits, opening PRs, managing branches, resolving conflicts, or when asked about version control best practices.

CloudAI-X/claude-workflow-v2 · 46 tokens

git-commit

Git commit message generator that creates conventional commit messages based on code changes.

JackyST0/awesome-agent-skills · 18 tokens

commit-staged

This skill should be used when user asks to "commit these changes", "write commit message", "stage and commit", "create a commit", "commit staged files", or explicitly invokes "commit-staged".

fcakyon/claude-codex-settings · 46 tokens

git-flow

Use this skill when proposing, reviewing, or troubleshooting git commits, branches, pull requests, or merge strategies in a WrongStack project session. Triggers: user mentions "commit", "branch", "PR", "merge", "rebase", "stash", "diff".

WrongStack/WrongStack · 57 tokens