一键导入
build-install
Build the macOS app bundle with cargo bundle --release and install it to /Applications. Use when the user wants to build, bundle, or install the app.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Build the macOS app bundle with cargo bundle --release and install it to /Applications. Use when the user wants to build, bundle, or install the app.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | build-install |
| description | Build the macOS app bundle with cargo bundle --release and install it to /Applications. Use when the user wants to build, bundle, or install the app. |
| disable-model-invocation | true |
| user-invocable | true |
| allowed-tools | Bash |
Build the macOS release bundle and install it to /Applications by running these steps in sequence from the repository root:
pkill -x "Something in the Background" || true./scripts/bundle-macos.sh — compiles and packages the app into target/release/bundle/osx/Something in the Background.appcp -r "target/release/bundle/osx/Something in the Background.app" /Applications/ — installs the bundleStream the output so the user can see build progress. If bundle-macos.sh fails, stop and report the error without attempting the install step.