用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bobmatnyc/claude-mpm --skill mpm-organize命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | mpm-organize |
| description | Organize project files with intelligent consolidation |
| user-invocable | true |
| version | 1.0.0 |
| category | mpm-command |
| tags | ["mpm-command","system","pm-optional"] |
Organize ALL project files with intelligent detection, consolidation, and pruning.
/mpm-organize [--dry-run] [--force] [options]
Delegates to Project Organizer agent for comprehensive file organization.
Default: Organizes ALL project files
Protected files (never moved): README.md, package.json, pyproject.toml, Makefile, .gitignore, etc.
Safety:
--dry-run: Preview without changes (recommended first run)--force: Proceed with uncommitted changes--no-backup: Skip backup (not recommended)Scope:
--docs-only: Only documentation (legacy behavior)--code-only / --tests-only / --scripts-only: Specific file typesOperations:
--consolidate-only: Merge duplicates only--prune-only: Remove stale files only--no-prune: Keep all files (no deletions)git mv to preserve historydocs/
├── research/ # Spikes, analysis, notes
├── user/ # Guides, tutorials, FAQs
└── developer/ # API docs, architecture, contributing
src/<package>/ # Proper module structure
tests/ # Mirrored source structure
scripts/ # Automation tools
config/ # Configuration (if needed)
# Preview changes (recommended first)
/mpm-organize --dry-run
# Organize everything with backup
/mpm-organize
# Documentation only
/mpm-organize --docs-only --dry-run
# Consolidate without pruning
/mpm-organize --consolidate-only --no-prune
# Save report
/mpm-organize --report /tmp/organize-report.md
🔍 Analyzing project structure...
✓ Detected PROJECT_ORGANIZATION.md - using project standards
✓ Found 23 documentation files, 15 test files, 8 scripts
📁 Proposed Changes:
Consolidate:
→ Merge README_OLD.md + README_BACKUP.md → docs/user/README.md
Organize:
docs/research/ ← spike-oauth.md (from root)
tests/unit/ ← test_auth.py (from root)
scripts/ ← deploy.sh (from root)
Prune:
✂ Remove TODO_2023.md (stale 18 months)
📊 Summary: 8 to move, 2 to merge, 3 to prune
See docs/commands/organize.md for full documentation.