Install
openclaw skills install @agentricai-owner/workspace-optimizerAudit, optimize, and maintain your OpenClaw agent workspace. Use when workspace needs health check, skill audit, memory cleanup, or performance tuning.
openclaw skills install @agentricai-owner/workspace-optimizerComprehensive workspace audit and optimization skill for OpenClaw agents. Identifies issues, suggests improvements, and provides actionable remediation steps.
| Situation | Action |
|---|---|
| Workspace health check | Run full audit |
| Skill audit | Check installed vs available skills |
| Memory bloat | Cleanup and prune old files |
| Performance tuning | Optimize cron jobs and heartbeats |
Agent workspaces drift over time — stale cron jobs, orphaned memory files, unused skills, bloated context. This skill provides systematic audit and remediation to keep your workspace lean and performant.
# Verify required files exist
$files = @("AGENTS.md","SOUL.md","IDENTITY.md","USER.md","TOOLS.md","MEMORY.md","HEARTBEAT.md")
foreach($f in $files) {
$path = Join-Path $env:USERPROFILE ".openclaw\workspace\$f"
if (Test-Path $path) { Write-Host "✅ $f" -ForegroundColor Green }
else { Write-Host "❌ $f MISSING" -ForegroundColor Red }
}
# List installed skills with status
clawhub list
# Check for updates
clawhub outdated
# Check memory directory structure
Get-ChildItem "$env:USERPROFILE\.openclaw\workspace\memory" -Recurse |
Where-Object { $_.LastWriteTime -lt (Get-Date).AddDays(-30) } |
Select-Object FullName, LastWriteTime, Length
# List all cron jobs including disabled
openclaw cron list --include-disabled
# Check for orphaned or failed jobs
openclaw cron list --include-disabled | grep -i "disabled\|failed"
clawhub uninstall <skill-name>openclaw cron update <jobId> --enabled false