From agi-super-team
Maintains cleanliness of ~/.openclaw/ and ~/clawd/ directories: runs health checks, cleans tmp/logs, detects duplicate skills, reports disk usage, and visualizes directory structure.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agi-super-team:workspace-directory-managerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- "整理目录"、"清理文件夹"、"目录结构"
维护 ~/.openclaw/ 和 ~/clawd/ 两个目录的整洁和秩序。
专属 agent: 小ops — CEO 指定的小ops专用 skill。
~/.openclaw/
├── openclaw.json # 主配置(唯一真相源)
├── .env # 运行时环境变量(由 rebuild-env.sh 生成,chmod 600)
├── agents/
│ └── <agent-id>/agent/
│ ├── agent.json # Agent 身份+模型+workspace
│ ├── models.json # 模型缓存(自动生成)
│ ├── SOUL.md # Agent 灵魂文件
│ └── AGENTS.md # Agent 行为规则
├── skills/ # 全局安装的 Skill
├── logs/ # 运行日志
└── memory/ # 记忆文件
~/clawd/
├── MEMORY.md # 长期记忆(main session 维护,只读)
├── SOUL.md # CEO 灵魂文件
├── AGENTS.md # 团队规则
├── USER.md # 用户画像
├── TOOLS.md # 工具手册
├── IDENTITY.md # 身份文件
├── HEARTBEAT.md # 心跳规则
├── memory/ # 日记忆 YYYY-MM-DD.md
├── projects/ # 独立项目
├── reports/ # 研究报告
├── skills/ # 自研 Skill
├── scripts/ # 全局脚本
├── docs/ # 文档
├── tmp/ # 临时文件(可定期清理)
└── repos/ # 代码仓库
python3 ~/clawd/skills/workspace-directory-manager/scripts/health-check.py
python3 ~/clawd/skills/workspace-directory-manager/scripts/cleanup-tmp.py --dry-run # 预览
python3 ~/clawd/skills/workspace-directory-manager/scripts/cleanup-tmp.py # 执行
python3 ~/clawd/skills/workspace-directory-manager/scripts/detect-duplicates.py
python3 ~/clawd/skills/workspace-directory-manager/scripts/disk-usage.py
python3 ~/clawd/skills/workspace-directory-manager/scripts/tree-view.py --path ~/clawd --depth 2
python3 ~/clawd/skills/workspace-directory-manager/scripts/tree-view.py --path ~/.openclaw --depth 2
~/clawd/tmp/ 中超过 7 天的文件自动标记删除~/.openclaw/logs/ 中超过 30 天的日志自动清理~/.openclaw/skills/ 和 ~/clawd/skills/~/.openclaw/skills/ 为准MEMORY.md、SOUL.md、AGENTS.md、USER.md、TOOLS.mdtrash 而非 rm(可恢复)openclaw.json(除非 CEO 明确指示)npx claudepluginhub aaaaqwq/agi-super-team --plugin agi-super-teamInstalls, tracks versions, updates, and initializes Agent skills for Claude Code, Codex, OpenClaw, and QoderWork. Supports local symlinks and GitHub installs with automatic target directory detection.
Imports an OpenClaw agent workspace (SOUL.md, IDENTITY.md, MEMORY.md, etc.) into the current project. Useful when migrating or referencing an agent's identity and memory.
Scans ~/.claude for redundant, orphaned, or stale config items (skills, memory, hooks, permissions, MCP servers, caches) and prompts user to confirm each cleanup. Activates on config audit requests.