release — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited release (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
cat CHANGELOG.md
git describe --tags --abbrev=0git log --oneline --decorate --graph $(git describe --tags --abbrev=0)..HEAD确定新版本号(遵循语义化版本),添加新版本条目:
## [X.Y.Z] - YYYY-MM-DD
### 核心亮点
简要描述本版本的重要特性或改进
### Added
- 新功能列表
### Changed
- 修改的功能列表
### Fixed
- 修复的问题列表遵循 readme-images skill 规则:
./docs/screenshots/xx.avif)遵循 image-compress skill 规则:
# 检查图片大小
bash .windsurf/skills/image-compress/scripts/check_compress.shgit add .
git commit -m "release: v[版本号] 发布"
# 推送到 GitHub
git push github main
# 推送到 Gitee
git push gitee main注意:由于 README 使用相对路径,两个平台共用同一份,无需分别处理。
git tag -a v[版本号] -m "Release v[版本号]"
git push github v[版本号]
git push gitee v[版本号]如果项目包含多个子项目(如 frontend、backend 等):
# 查看远程仓库配置
git remote -v
# 添加远程仓库(如果不存在)
git remote add github https://github.com/[username]/[repository].git
git remote add gitee https://gitee.com/[username]/[repository].git发版时额外需要:
package.json → "version"src-tauri/tauri.conf.json → "version"src-tauri/Cargo.toml → versionnpm run tauri:build跳过 Gitee 相关步骤,仅推送到 GitHub。
git describe --tags --abbrev=0 # 查看最新标签
git tag --sort=-version:refname # 查看所有标签
git tag -d v[版本号] # 删除本地标签
git push github --delete v[版本号] # 删除远程标签~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.