用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/lis186/SourceAtlas --skill reset命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | reset |
| description | Clear saved SourceAtlas analysis results |
Target: $ARGUMENTS (default: all)
Help user clear saved analysis results from .sourceatlas/ directory.
ls -la .sourceatlas/ 2>/dev/null || echo "No .sourceatlas/ directory found"
Also check subdirectories:
# Count files in each subdirectory
for dir in patterns flows impact deps; do
if [ -d ".sourceatlas/$dir" ]; then
count=$(ls -1 ".sourceatlas/$dir" 2>/dev/null | wc -l)
echo "$dir/: $count files"
fi
done
List what will be deleted based on target:
Example output:
Found the following saved analyses:
- overview.yaml (2025-12-12)
- patterns/ (3 files)
- history.md (2025-12-11)
Are you sure you want to delete?
Ask user to confirm. Do NOT proceed without explicit confirmation.
Acceptable confirmations:
Based on target:
# All (default, no argument)
rm -rf .sourceatlas/*
# Specific targets
rm -f .sourceatlas/overview.yaml # for "overview"
rm -rf .sourceatlas/patterns/ # for "patterns"
rm -rf .sourceatlas/flows/ # for "flows"
rm -f .sourceatlas/history.md # for "history"
rm -rf .sourceatlas/impact/ # for "impact"
rm -rf .sourceatlas/deps/ # for "deps"
✅ Cleared [target or ".sourceatlas/"]
.sourceatlas/ directory does not exist or is already empty
| Target | Path | Description |
|---|---|---|
overview | .sourceatlas/overview.yaml | Project overview |
patterns | .sourceatlas/patterns/ | Pattern analysis |
flows | .sourceatlas/flows/ | Flow analysis |
history | .sourceatlas/history.md | Temporal analysis |
impact | .sourceatlas/impact/ | Impact analysis |
deps | .sourceatlas/deps/ | Dependency analysis |
| (no argument) | .sourceatlas/* | Clear all |