Agent Skills
› Shape-Machine/tusk-macos
› tusk-make-clean
tusk-make-clean
GitHub用于在Tusk macOS项目中执行make clean清理Xcode构建产物,并诊断失败原因。
触发场景
用户请求运行 make clean
清理 Xcode 构建产物时失败需要诊断
安装
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.
版本历史
- c3e7592 当前 2026-08-16 15:43


