workspace-organization
Automated workspace health checks and entropy prevention for OpenClaw. Detects broken symlinks, empty dirs, large files, malformed names. Maintenance audit script with cron support. Keeps deployments clean and structured.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/donovanpankratz-del/workspace-organizationWorkspace Organization
Standards and automated maintenance for clean OpenClaw deployments.
Files Included
SKILL.md— Agent instructionsREADME.md— Setup guidemaintenance-audit.sh— Run to audit workspace healthsetup.sh— Run once to initialize standard structure
Note: Scripts auto-detect your workspace. Pass a path as argument to override: ./maintenance-audit.sh /custom/path
Problem Solved
Workspaces degrade over time:
- Broken symlinks from moved files
- Empty directories from deleted projects
- Large files eating disk space
- Malformed names breaking scripts
- No visibility into workspace health
This skill provides automated audits + cleanup guidance to prevent entropy.
When to Use
- New workspace setup — Initialize standard directory structure
- Periodic maintenance — Weekly/monthly health checks (cron recommended)
- Pre-deployment cleanup — Remove cruft before backups
- Debugging workspace issues — Find broken symlinks, malformed names
- Disk space review — Identify large files and bloat
What It Provides
1. maintenance-audit.sh
Automated health check script that detects:
- ✅ Broken symlinks
- ✅ Empty directories (excluding node_modules, .git)
- ✅ Large files (>10MB)
- ✅ Malformed file/directory names (spaces, special chars)
- ✅ Disk usage by top-level directory
- ✅ File/directory counts
- ✅ Recent changes (last 24 hours)
2. setup.sh
Initializes standard workspace structure:
~/.openclaw/workspace/
├── projects/ # Active work
│ ├── writing/ # Writing projects
│ └── code/ # Code projects
├── notes/ # Organized notes
│ ├── daily-reviews/
│ ├── decisions/
│ └── cost-tracking.md
├── memory/ # Long-term memory
│ ├── owner/ # Cross-channel user memory
│ └── sessions/ # Per-session isolated memory
├── skills/ # Custom skills
├── subagents/ # Permanent specialists
│ └── _archived/ # Old/deprecated subagents
├── docs/ # Documentation
└── scripts/ # Utility scripts
3. Organization Standards (docs/)
Best practices for:
- File naming conventions (kebab-case, no spaces)
- Directory structure guidelines
- Cleanup policies (what to keep/delete)
- Git integration patterns
Setup
- Install skill:
cd ~/.openclaw/workspace/skills
clawhub install workspace-organization
# Or: download from ClawHub and extract
- Initialize workspace (optional, if starting fresh):
cd ~/.openclaw/workspace/skills/workspace-organization
./setup.sh
- Run first audit:
cd ~/.openclaw/workspace/skills/workspace-organization
./maintenance-audit.sh
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-donovanpankratz-del-workspace-organization": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
cost-governor
Pre-flight cost estimation for subagent spawns and approval gates. Prevents API overspend and surprise billing. Budget control for sessions_spawn calls. Daily spend tracking. Essential for multi-agent OpenClaw deployments.
skill-vetter
Security vetting protocol before installing any AI agent skill. Red flag detection for credential theft, obfuscated code, exfiltration. Risk classification LOW/MEDIUM/HIGH/EXTREME. Produces structured vetting reports. Never install untrusted skills without running this first.
correction-memory
Makes agent corrections persistent and reusable. When you override, reject, or correct an agent's output, this skill logs the correction and automatically injects it into future spawns of the same agent type. Solves "agent keeps making the same mistake across sessions." Installs correction-tracker lib + injection hook into agent-context-loader. Works standalone or alongside intent-engineering skill.
Agent Stability Framework
Skill by donovanpankratz-del
subagent-architecture
Advanced patterns for specialized subagent orchestration with production-ready reference implementations. Security isolation, phased implementation, peer collaboration, and cost-aware spawning.