用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/robertolupi/deep-cuts --skill bump-dev-version命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Experimental protocol for Deep Cuts research, prototypes, model evaluations, threshold tuning, ablations, metric comparisons, and claims about accuracy or quality. Use before running or interpreting experiments so bots preserve train/validation/test boundaries, avoid leakage, compare against baselines, and report results honestly.
Guidelines for creating, updating, reorganizing, and reviewing Deep Cuts documentation in the project wiki, including page taxonomy, lifecycle status, protected pages, proposal handling, and link verification.
Pattern for multi-agent collaboration sessions in the deep-cuts fam — forge-first coordination over the botfam substrate (Gitea issues/PRs as the coordination plane, the unified `botfam wait` wake loop, bare-actor worktrees), with IRC opt-in for design sprints, plus session-log conventions
基于 SOC 职业分类
正在显示 SKILL.md
| name | bump-dev-version |
| description | Bump the app version in Cargo.toml after a release to start the next dev cycle |
Run this after a release has shipped, to advance the version for the next development cycle.
Edit src-tauri/Cargo.toml — this is the single source of truth:
version = "0.1.7" # ← next dev version
Sync it to package.json immediately:
node scripts/sync-version.js
Commit:
git add src-tauri/Cargo.toml package.json
git commit -m "chore: bump dev version to v0.1.7"
src-tauri/tauri.conf.json has no version field — it reads from package.json at build time. No edit needed there.models/manifest.json min_app_version is not changed here — that only moves at release time (see release-build skill).npm run tauri dev and npm run tauri build, so the manual sync in step 2 is just for keeping the working tree clean before committing.