원클릭으로
housekeeping
Run local cleanup and maintenance scripts for backups, logs, disk usage, and connection hygiene in the ~/clawd workspace.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run local cleanup and maintenance scripts for backups, logs, disk usage, and connection hygiene in the ~/clawd workspace.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Thin shell wrapper over the Linear GraphQL API for use from agent directives. Reads Linear projects + issues, creates/updates issues, resolves viewers/cycles/labels/project IDs. Replaces the legacy src/linear/*.ts; orchestration logic now lives in vault directives (linear-import.md, linear-uplink.md), this skill only owns the HTTP boundary.
Multi-reference image composition via fal-ai/nano-banana/edit. Use when a directive needs to combine 2+ reference images into a single composed output (character + location, brand sigil + character, multi-character ensemble shot, etc.). Sister tool: bible-to-prompt assembles a canonical prompt from a character/location bible MD before calling nano-compose.
Fire a single openclaw notification per runtime contract (notifications). Always echoes to stdout in §15.4 format; also dispatches via openclaw CLI if OPENCLAW_NOTIFY_TARGET is set. Replaces src/notify/notify.ts (99 LOC); batching responsibility shifts to callers.
Fetch project-scoped context from Notion using the official REST API for use in <workplace>ProjectSync and other orchestrators.
Read, write, and search Obsidian vault markdown files
Spawn a Claude Code or Cursor agent in non-interactive mode (`--print` style) with a prompt + repo workspace. Replaces src/agents/{claudeCodeSpawn,cursorSpawn,spawnAgent}.ts (179 LOC).
| name | housekeeping |
| description | Run local cleanup and maintenance scripts for backups, logs, disk usage, and connection hygiene in the ~/clawd workspace. |
This skill wraps the local maintenance scripts under ~/clawd/scripts/ so they can be treated as first‑class tools instead of random one‑offs.
Use this skill when you want to:
It only operates inside ~/clawd and does not modify system‑wide packages or services.
All commands are run from the workspace root:
cd ~/clawd
Removes old backup artifacts (tarballs, dated backup folders) according to the policy encoded in the script.
Run:
cd ~/clawd && bash scripts/cleanup-backups.sh
Use when:
~/clawd/backups is growingRotates or deletes old log files under ~/clawd (cron logs, project health reports, etc.).
Run:
cd ~/clawd && bash scripts/cleanup-logs.sh
Use when:
*.log files have grown large/var/logProvides a human‑readable breakdown of disk usage within the clawd workspace.
Run:
cd ~/clawd && bash scripts/analyze-disk-usage.sh
Use when:
If you see issues related to duplicated OpenClaw gateway/node connections, use the helper:
Run:
cd ~/clawd && bash scripts/fix-duplicate-connections.sh
Only use when:
diagnose-gateway).End‑to‑end sanity check for cron wiring and PATH usage.
Run:
cd ~/clawd && bash scripts/run-cron-path-e2e.sh
Use when:
Use the Starter healer/graph maintainer:
onyx heal
And for a read-only state snapshot:
onyx status --json
Use when:
phase-activeSee skills/vault-health/SKILL.md for the full reference.
ONYX writes logs inside each project bundle under Logs/.
If you have legacy .onyx-runs/ folders from older runtimes, treat them as legacy artifacts and clean them manually only after confirming they’re not in use.
analyze-disk-usage.sh and vault dry-run before destructive cleanups.~/clawd/backups and log files as ephemeral.onyx-runs/ entries older than 30 days as safe to GCWhen in doubt, run analyzers first and only then run cleanup scripts.