Agent Skills
› Shape-Machine/tusk-macos
› tusk-make-clean
tusk-make-clean
GitHub用于执行 Tusk macOS 项目的 make clean 命令以清理 Xcode 构建产物,并诊断和报告清理过程中的失败原因及建议。
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


