一键导入
release
Create a new version release — triggers deployment to all targets (HuggingFace Spaces, desktop app, model weights). Use when releasing a new version.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a new version release — triggers deployment to all targets (HuggingFace Spaces, desktop app, model weights). Use when releasing a new version.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
Scan the codebase and update the codemap in .claude/rules/codemap.md. Use when files are added, removed, renamed, or significantly restructured.
Build and release Tauri v2 desktop app (macOS + Linux installers). Use when building desktop installers, checking desktop release status, or troubleshooting Tauri builds.
Deploy web app to HuggingFace Spaces, check deployment status, verify HF Space logs. Use when deploying the web app, checking HF logs, or troubleshooting HuggingFace Spaces.
Upload ML model weights to GitHub Releases. Use when managing model files, re-uploading weights, or setting up model hosting on GitHub Releases.
Show project status including git, dependencies, and environment
| name | release |
| description | Create a new version release — triggers deployment to all targets (HuggingFace Spaces, desktop app, model weights). Use when releasing a new version. |
| allowed-tools | Bash, Read |
| argument-hint | <version> |
| disable-model-invocation | true |
Create a new version release that deploys to all targets.
$ARGUMENTS - Version number (e.g., "1.0.0" or "v1.0.0")git status --shortgit branch --show-currentgit tag --sort=-v:refname | head -5git diff --stat | tail -3A single v*.*.* tag triggers all deployment pipelines simultaneously:
| Pipeline | Workflow | Target | Output |
|---|---|---|---|
| CI | ci.yml | — | Lint, build, Docker validation |
| Web Deploy | deploy-huggingface.yml | HuggingFace Spaces | 2 Spaces (public + admin) |
| Desktop Build | build-desktop-tauri.yml | GitHub Releases | macOS .dmg + Linux .deb/.AppImage |
Note: Model weight upload (upload-model-weights.yml) is manual-only and not triggered by version tags. Use /upload-model-weights for that.
Ensure the version follows semver format (major.minor.patch). Strip leading "v" if present for validation.
Run /verify to ensure all checks pass (code quality, frontend build, Docker build + health check).
# Create annotated tag
git tag -a v$ARGUMENTS -m "Release version $ARGUMENTS"
# Push tag to trigger ALL deployment pipelines
git push origin v$ARGUMENTS
After pushing the tag, monitor all pipelines:
Web (HuggingFace Spaces):
/deploy-huggingfaceDesktop (Tauri):
CI:
HF_TOKEN, HF_USERNAME/verify before creating a releasebackend/app/core/config.py during HF deployment