用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vamseeachanta/workspace-hub --skill repo-cleanup-folders-to-delete-confirmed-safe命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | repo-cleanup-folders-to-delete-confirmed-safe |
| description | Sub-skill of repo-cleanup: Folders to DELETE (Confirmed Safe) (+3). |
| version | 2.2.0 |
| category | _internal |
| type | reference |
| scripts_exempt | true |
| Folder | Reason | Verification |
|---|---|---|
.drcode/ | Legacy AI config (Dr. Code) | Not referenced in any scripts or CI |
.benchmarks/ | Empty benchmark folder | ls .benchmarks/ returns empty or missing |
.agent-runtime/ | Dead symlinks only | find .agent-runtime -type l ! -exec test -e {} \; |
.common/ | Orphaned utilities | No imports reference this folder |
.specify/ | Stale specification templates | Specs moved to specs/templates/ |
| Source | Destination | Command |
|---|---|---|
.slash-commands/ | .Codex/docs/commands/ | git mv .slash-commands/* .Codex/docs/commands/ |
.git-commands/ | scripts/git/ | git mv .git-commands/* scripts/git/ |
.agent-os/ | .Codex/ | See module-based-refactor skill |
.ai/ | .Codex/ | See module-based-refactor skill |
| Folder | Reason |
|---|---|
.githooks/ | Standard location for git hooks |
.github/ | GitHub workflows and templates |
.Codex/ | Authoritative AI configuration |
.vscode/ | Team VS Code settings (if tracked) |
# Delete legacy config folders
rm -rf .drcode/
rm -rf .benchmarks/
# Consolidate slash-commands to docs
mkdir -p .Codex/docs/commands
git mv .slash-commands/* .Codex/docs/commands/ 2>/dev/null
rm -rf .slash-commands/
*See sub-skills for full details.*