Agent Skills
› Shape-Machine/tusk-macos
› tusk-make-clean
tusk-make-clean
GitHub用于清理 Tusk macOS 项目的 Xcode 构建产物。执行 make clean 并捕获输出,若成功则报告;若失败则分析根因(如权限、路径错误)并提供具体修复建议,不自动修复。
Trigger Scenarios
用户要求运行 make clean
清理 Xcode 构建产物时诊断失败
Install
npx skills add Shape-Machine/tusk-macos --skill tusk-make-clean -g -y
SKILL.md
Frontmatter
{
"name": "tusk-make-clean",
"description": "Use when the user asks to run `make clean` for the Tusk macOS project or diagnose failures while cleaning Xcode build artifacts."
}
Tusk Make Clean
Run make clean to remove Xcode build artifacts for the Tusk project.
Steps
1. Run Clean
make clean
Capture the full output.
2. Evaluate Result
If the command exits successfully and ** CLEAN SUCCEEDED ** appears, report success concisely.
If the command fails or produces errors:
- Read the error output carefully.
- Identify the root cause, such as a missing project file, unavailable
xcodebuild, scheme mismatch, or DerivedData permission issue. - Present the user with a one-line summary, the specific error line or lines, and concrete recommended actions.
Do not auto-fix clean failures unless the user explicitly asks for repairs.
Version History
- c3e7592 Current 2026-08-16 15:43


