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.
curl -O https://raw.githubusercontent.com/DavidLam-oss/obsidian-wechat-converter/main/.agents/skills/project-release/SKILL.mdgit clone --depth 1 https://github.com/DavidLam-oss/obsidian-wechat-converterWrote 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/davidlam-oss/obsidian-wechat-converter/project-release)<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.
<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>- NVIDIA SkillSpector pass
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.00023 | $0.00951 |
| Opus 5 | $0.00012 | $0.00476 |
| Sonnet 5 | $0.00005 | $0.00190 |
| Haiku 4.5 | $0.00002 | $0.00095 |
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.
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)时,确保以下文件都已更新:
package.json: 更新"version": "..."manifest.json: 更新"version": "..."versions.json: 添加新版本映射,如"2.6.0": "0.15.0"README.md: 更新 Badge 中的版本号
提示:插件设置面板的「关于」页面(
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 分支
-
准备阶段(在 feature 分支完成)
- 更新版本号文件
- 创建
RELEASE_NOTES/v{version}.md - 先运行
npm run scan:guard做快速自检 - 确保 Obsidian scan readiness guard 通过:
npm run review:guard
-
合并 PR
- 将 feature 分支合并到
main分支
- 将 feature 分支合并到
-
触发发布
git checkout main git pull git tag {version} git push origin {version}
情况 B:当前已在 main 分支
-
准备阶段
- 更新版本号文件
- 创建
RELEASE_NOTES/v{version}.md - 先运行
npm run scan:guard做快速自检 - 确保 Obsidian scan readiness guard 通过:
npm run review:guard
-
提交并触发发布
git add . git commit -m "chore: bump version to {version}" git push git tag {version} git push origin {version}
自动化流程
无论哪种情况,推送无前缀版本 tag 后 GitHub Actions 会自动执行:
- 校验
versions.json与manifest.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.jsmanifest.jsonstyles.css
- 如果
scan:guard失败,不要直接进入 release 流程
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.
- 3d ago Changed · +2 lines d5e3fab12f02
- 5d ago First seen · 120 lines · 23 tokens per session scan A 3356e1400377
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.
Other skills, from other repositories
release-announcement
Write a release announcement — changelog, blog post, in-app note, or social post — that leads with user impact, names the audience, and includes upgrade/migration steps without filler.
multi-agent-release-manager
Cleans up the workspace, formats code, runs presubmit checks, and uploads CLs to Gerrit.
release-notes
Generate user-facing release notes from tickets, PRDs, or changelogs. Creates clear, engaging summaries organized by category (new features, improvements, fixes). Use when writing release notes, creating changelogs, announcing product updates, or summarizing what shipped.
pack-submit
Package one of this agent's own skills as a standalone community pack and submit it to the aeon registry as a PR.
updater_guide
Guidance for checking for and installing Row-Bot updates.
nvca-chart-release
Release NVCA Operator chart changes from the native monorepo source to the vendored Helm chart. Use when updating the vendored NVCA Operator chart, changing NVCA image refs, publishing helm-nvca-operator, or validating the chart against a self-managed control plane.