obsidian-wechat-converter: Skill for Claude Code

.agents/skills/project-release/SKILL.md

project-release is a skill for Claude Code, Codex from DavidLam-oss/obsidian-wechat-converter. It costs 23 tokens per session (951 once invoked), scanned A, original, MIT.

A release workflow for the Obsidian WeChat Converter project. It covers version changes, release notes, safety checks, Git tags, and publishing.

In plain words
What is it for?
Use it to prepare release notes, update project version references, run release checks, merge to the main branch, and create and push a Git tag.
Why use it?
It reduces missed version files or release steps when turning a completed change into a published version.

Skill for Claude CodeCodex

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

This is DavidLam-oss/obsidian-wechat-converter's own configuration. It tells Claude Code and Codex how to work on obsidian-wechat-converter 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 obsidian-wechat-converter configures →

Reuse

Borrowing it

Nothing to install: this file belongs to DavidLam-oss/obsidian-wechat-converter. 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/DavidLam-oss/obsidian-wechat-converter/main/.agents/skills/project-release/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/DavidLam-oss/obsidian-wechat-converter

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 project-release

README.md
[![agentmods](https://agentmods.dev/badge/skills/davidlam-oss/obsidian-wechat-converter/project-release/github.svg)](https://agentmods.dev/skills/davidlam-oss/obsidian-wechat-converter/project-release)
Your own site
<a href="https://agentmods.dev/skills/davidlam-oss/obsidian-wechat-converter/project-release"><img src="https://agentmods.dev/badge/skills/davidlam-oss/obsidian-wechat-converter/project-release/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 project-release

Your own site · 80×15
<a href="https://agentmods.dev/skills/davidlam-oss/obsidian-wechat-converter/project-release"><img src="https://agentmods.dev/badge/skills/davidlam-oss/obsidian-wechat-converter/project-release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 951 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.00023 $0.00951
Opus 5 $0.00012 $0.00476
Sonnet 5 $0.00005 $0.00190
Haiku 4.5 $0.00002 $0.00095

Measured 3d ago against content hash d5e3fab12f02, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

project-release 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 3d 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/project-release/SKILL.md · 122 lines

How it starts

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

Obsidian WeChat Converter Release Skill

发布新版本的完整流程。

版本号更新

发布新版本(如 2.5.6 -> 2.6.0)时,确保以下文件都已更新:

  1. package.json: 更新 "version": "..."
  2. manifest.json: 更新 "version": "..."
  3. versions.json: 添加新版本映射,如 "2.6.0": "0.15.0"
  4. README.md: 更新 Badge 中的版本号 ![Version](https://img.shields.io/badge/version-X.X.X-blue)

提示:插件设置面板的「关于」页面(views/settings/about-tab.js)会自动读取 manifest.json 中的 version 动态呈现标题版本号,无需手动修改代码。若本次发版包含新增赞助者,可顺带在 services/sponsors-data.js 中追加赞助鸣谢记录。

开发期门禁

在做 feature / enhancement 时,先跑快速自检:

npm run scan:guard

它用于尽早发现新的 Obsidian scan 风险模式,但不替代最终发布前检查。

Release Notes

RELEASE_NOTES/ 目录下创建对应版本的文件:

RELEASE_NOTES/v{version}.md

文件格式:

---
title: 简短标题(会显示为 "v{version} - 标题")
---

## 更新内容

### 🚀 重大更新
- ...

### 🐛 问题修复
- ...

### ✨ 功能优化
- ...

发布流程

情况 A:当前在 feature 分支

  1. 准备阶段(在 feature 分支完成)

    • 更新版本号文件
    • 创建 RELEASE_NOTES/v{version}.md
    • 先运行 npm run scan:guard 做快速自检
    • 确保 Obsidian scan readiness guard 通过:npm run review:guard
  2. 合并 PR

    • 将 feature 分支合并到 main 分支
  3. 触发发布

    git checkout main
    git pull
    git tag {version}
    git push origin {version}
    

情况 B:当前已在 main 分支

  1. 准备阶段

    • 更新版本号文件
    • 创建 RELEASE_NOTES/v{version}.md
    • 先运行 npm run scan:guard 做快速自检
    • 确保 Obsidian scan readiness guard 通过:npm run review:guard
  2. 提交并触发发布

    git add .
    git commit -m "chore: bump version to {version}"
    git push
    git tag {version}
    git push origin {version}
    

自动化流程

无论哪种情况,推送无前缀版本 tag 后 GitHub Actions 会自动执行:

  • 校验 versions.jsonmanifest.json.minAppVersion 映射
  • 校验 tag 与 manifest.json.version 一致,且不使用 v 前缀
  • 运行 npm run review:guard,其中包含:
    • scan-risk guard
    • ESLint
    • 生产构建
    • generated build artifact 一致性检查
    • Vitest 全量测试
    • release zip 打包
    • release artifact 校验
  • 创建 GitHub Release(从 release notes 文件读取内容)
  • 上传 release 文件

Obsidian 社区插件注意事项

  • Git tag 必须与 manifest.json.version 完全一致,例如 2.6.6
  • 不要使用 v2.6.6 这样的前缀 tag
  • RELEASE_NOTES 文件仍然沿用 RELEASE_NOTES/v{version}.md
  • GitHub Release assets 需要至少包含:
    • main.js
    • manifest.json
    • styles.css
  • 如果 scan:guard 失败,不要直接进入 release 流程

Read the full file on GitHub · 122 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. 3d ago Changed · +2 lines d5e3fab12f02
  2. 5d ago First seen · 120 lines · 23 tokens per session scan A 3356e1400377

Subscribe to this mod's changes

project-release is a skill published in the GitHub repository DavidLam-oss/obsidian-wechat-converter (307 stars, last pushed yesterday), licensed MIT. It adds 23 tokens to every session and 951 once invoked, about $0.0001 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-09-04.