siyuan-plugins-mcp-sisyphus: Skill for Claude Code

.agents/skills/git-workflow-cn/SKILL.md

git-workflow-cn is a skill for Claude Code, Codex from yangtaihong59/siyuan-plugins-mcp-sisyphus. It costs 71 tokens per session (1,751 once invoked), scanned A, original, MIT.

A set of Chinese-language rules for Git, the version-control system used to track code changes. It covers commit messages, merges, branches, and related workflow output.

In plain words
What is it for?
Use it to inspect staged changes, choose a commit type and scope, write Chinese commit messages, and follow the specified branch or merge conventions.
Why use it?
It gives teams a consistent format and language for describing changes. This makes commits and merge work easier to review and understand.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents); mentions AGENTS.md.

This is yangtaihong59/siyuan-plugins-mcp-sisyphus's own configuration. It tells Claude Code and Codex how to work on siyuan-plugins-mcp-sisyphus itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything siyuan-plugins-mcp-sisyphus configures →

Reuse

Borrowing it

Nothing to install: this file belongs to yangtaihong59/siyuan-plugins-mcp-sisyphus. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/yangtaihong59/siyuan-plugins-mcp-sisyphus/main/.agents/skills/git-workflow-cn/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/yangtaihong59/siyuan-plugins-mcp-sisyphus

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 git-workflow-cn

README.md
[![agentmods](https://agentmods.dev/badge/skills/yangtaihong59/siyuan-plugins-mcp-sisyphus/git-workflow-cn/github.svg)](https://agentmods.dev/skills/yangtaihong59/siyuan-plugins-mcp-sisyphus/git-workflow-cn)
Your own site
<a href="https://agentmods.dev/skills/yangtaihong59/siyuan-plugins-mcp-sisyphus/git-workflow-cn"><img src="https://agentmods.dev/badge/skills/yangtaihong59/siyuan-plugins-mcp-sisyphus/git-workflow-cn/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.

agentmods 80×15 button for git-workflow-cn

Your own site · 80×15
<a href="https://agentmods.dev/skills/yangtaihong59/siyuan-plugins-mcp-sisyphus/git-workflow-cn"><img src="https://agentmods.dev/badge/skills/yangtaihong59/siyuan-plugins-mcp-sisyphus/git-workflow-cn.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,751 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 pass 7 Sept 2026
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.00071 $0.01751
Opus 5 $0.00036 $0.00875
Sonnet 5 $0.00014 $0.00350
Haiku 4.5 $0.00007 $0.00175

Measured 12d ago against content hash 553b98ca0b5c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

git-workflow-cn 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 12d 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.

.agents/skills/git-workflow-cn/SKILL.md · 158 lines

How it starts

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

中文 Git 工作流规范

本 skill 规范项目中所有与 Git 相关的中文输出与操作习惯,包括提交信息撰写与分支合并策略。


一、中文 Commit Message 生成

根据当前暂存区的改动,生成符合标准格式的中文 commit message。

工作流

  1. 查看改动范围:执行 git statusgit diff --stat --staged,快速了解修改了哪些文件、增删行数。
  2. 阅读关键 Diff:对新增文件、核心逻辑改动执行 git diff --staged -- <file>,提取功能点;如果改动很多,优先阅读业务核心文件,忽略格式化、lock 文件等噪音。
  3. 确定类型与范围:根据改动性质选择 <type><scope>
  4. 撰写消息:按下方格式输出;若用户偏好更详细版本,提供完整版与精简版两个选项。

格式规范

<type>emoji(<scope>): <subject>

- <动词> <改动点1>
- <动词> <改动点2>
- ...
type(必填)
类型 Emoji 含义
feat 新功能
fix 🐛 修复问题
docs 📝 文档、注释、README 等
style 💄 代码格式、分号、空行等无逻辑改动
refactor ♻️ 重构(既非新功能也非修复)
perf 性能优化
test 测试相关
chore 🔧 构建、依赖、工具链、杂项
revert 回滚提交

Emoji 放在 <type>(<scope>) 之间(无 scope 时紧跟 type),例如 feat✨(scope): subjectdocs📝: subject

scope(可选)
  • 使用模块名、包名或目录名,如 terrain_yolo_matchingprojectiondocs
  • 若改动跨多个大模块,可省略 scope
subject(必填)
  • 简短概括,不超过 50 个汉字
  • 句末不加句号
  • 使用祈使语气/动宾结构,如 "重构采样逻辑"、"修复内存泄漏"
body(可选但推荐)
  • 每条以动词开头:新增修复重构移除优化补全更新调整统一引入升级降级
  • 每条控制在 30 字以内,聚焦单一改动点
  • 技术名词保留英文(函数名、类名、配置项、文件扩展名等),不强行翻译
  • 按重要性排序,最重要的放在最前面
  • 总条数建议 3~7 条;若改动极小(如单行修复),可省略 body,只保留 subject
注意事项
  • 不要猜测:只根据实际 diff 内容描述,不脑补未发生的改动
  • 区分主要与次要:核心逻辑改动放在前面,格式化、依赖升级、配置文件调整放在后面或省略
  • 中英混排:中文与英文单词之间留一个空格,如 单 ping 地形 patch
  • 多文件同功能:若多个文件服务于同一功能,合并为一条描述,不逐文件罗列
  • 数据/配置文件:YAML、JSON、Notebook 等配置更新用 更新配置同步调整实验配置
示例
feat✨(terrain_yolo_matching): 重构投影采样与向量索引特征工程

- 新增足迹感知的单 ping 地形 patch 采样逻辑
- 向量索引支持 compact_stats_v1 / enhanced_profile_v1 特征
- 匹配评分由 cosine 相似度升级为 enhanced_profile_similarity_score
- 样本构建流程增加分阶段耗时统计
- 补全项目级 AGENTS.md 开发文档

Read the full file on GitHub · 158 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. 12d ago First seen · 158 lines · 71 tokens per session scan A 553b98ca0b5c

Subscribe to this mod's changes

git-workflow-cn is a skill published in the GitHub repository yangtaihong59/siyuan-plugins-mcp-sisyphus (104 stars, last pushed yesterday), licensed MIT. It adds 71 tokens to every session and 1,751 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.