daymade/claude-code-skills

macos-cleaner

- Diagnoses and safely reclaims macOS disk space.

소스 보기
원본 Skill 문서

원본 저장소의 제목, 예시, 코드, 표, 링크, 이미지를 유지해 표시합니다.

macOS Cleaner

Diagnose the actual source of disk pressure, reclaim only approved space, and prove that the cleanup did not damage user data or co-resident services.

Entry router

Choose the narrowest path that can answer the request:

User signalRoute
Apple Content Caching, AssetCacheManagerUtil, CacheUsed, ActualCacheUsed, iCloud cache, or “Caching needs more space”Read references/apple_content_caching.md completely before probing or proposing commands
Docker, OrbStack, images, containers, or volumesRead references/docker_analysis.md; inspect every object and never use prune-family commands
Docker build cacheMeasure with docker builder du; this skill reports it but does not delete it because Docker exposes category-wide prune controls rather than per-record intent
Chrome, ChromeDriver, Playwright, Codex Computer Use, Edge, or Chromium has large *.code_sign_clone directoriesRead references/chromium_code_sign_clones.md completely; use the bundled analyzer to separate active, inactive, and unknown exact children and never equate du with physical release
A named cache, directory, application, or service is already the suspectInspect that target first and read the matching semantics in references/cleanup_targets.md; do not start a home-directory or whole-disk scan
The source is genuinely unknownUse the general analysis workflow below; Mole is optional, not the universal first step

User-provided scope exclusions override every generic scan suggestion. Do not inspect personal directories, credentials, databases, application state, or unrelated services when the user excludes them.

Safety and authorization contract

  1. Separate observation from mutation. Complete a read-only diagnosis first. Do not delete, stop a service, edit settings, install or upgrade tools, or run a cleanup preview that may mutate state during that phase.
  2. Confirm the exact target. On a remote Mac, record the current host identity before any other work. Never infer the machine from an IP, old PID, directory name, or prior report.
  3. Plan before asking. Before any state change, list every command, what it changes, expected physical space reclaimed, impact, recoverability, and postconditions. Then stop if the user requested a plan-only phase.
  4. Require explicit approval. If the user supplies an exact confirmation phrase, require that phrase. Otherwise ask for unmistakable approval of the listed commands and targets. Approval for one plan does not authorize a fallback or a wider cleanup.
  5. Use precise supported controls. Prefer an application's supported cache-management command or an exact object ID. If no supported control exists, an exact application-owned cache directory may be removed only after verifying its owner, confirming the application is stopped or the directory is otherwise inactive, explaining rebuild/redownload impact, and receiving approval. Never target a broad cache root or active application state.
  6. Never use Docker prune-family commands. This includes image, container, volume, system, builder, and buildx prune. Category-wide deletion cannot express per-object user intent.
  7. Avoid broad destructive shell forms. Do not recommend or execute broad rm -rf or glob deletion. For exact approved ordinary files, prefer Finder Trash. The bundled legacy helper permanently deletes and has only the limited guards documented below; never treat it as equivalent to Trash.
  8. Preserve valuable state. Never target user documents, credentials, SSH material, active databases, application configuration, or running-service state merely to increase the reported savings. Read references/safety_rules.md before any file deletion.
  9. Execution follows the user's authorization. If the user asks only for analysis or wants to run commands personally, hand off the commands. If the user asks the agent to fix the machine and explicitly confirms the scoped plan, execute the exact approved commands and verify them. Unattended recurring deletion logic needs separate approval before it is written or enabled.
  10. Fail fast. An unexpected non-zero command, a mismatched postcondition, an unexpected target, or a changed dependency stops the cleanup. Interpret documented probe statuses such as lsof exit 1 with empty output before deciding they are failures. Report the partial state; do not improvise a fallback.

Phase contract

Use this state machine for every cleanup:

  1. Observe — read-only. Capture identity, disk baseline, the suspected subsystem's status and configuration, physical allocation, and critical-service health.

1b. Authorize stateful inspection when unavoidable. If deeper evidence requires creating a temporary container, pulling an image, mounting a volume, or writing a snapshot, first finish the metadata-only observation, list the exact inspection commands and their side effects, and obtain separate approval. Inspection approval is not cleanup approval.

  1. Plan — no mutation. Explain findings, commands, impact, recovery, expected release, and success criteria. Stop at the confirmation gate.
  2. Execute — approved scope only. Re-read live state immediately before acting, then run each approved command separately and check its exit status and postcondition.
  3. Verify — independent readback. Measure disk space and subsystem state again, recheck protected services, and observe long enough to detect immediate refill.

Do not compress phases 2 and 3 into one message. A plan printed beside a cleanup command is not a confirmation gate.

Phase 1: read-only diagnosis

Establish the baseline

At minimum, capture:

bash
/bin/date "+%F %T %Z %z"
/usr/sbin/scutil --get ComputerName
/usr/sbin/scutil --get LocalHostName
/usr/bin/sw_vers
/bin/df -k /System/Volumes/Data
/bin/df -h /System/Volumes/Data

Use df -k for calculations and df -h for the human-readable report. Treat an extension, label, or old report as a hint until the live command confirms it.

Establish the success target before an unknown-source scan. Copy a user-supplied free-space or capacity target exactly. If the user supplied none, report the current values and ask for a target in GiB, capacity percentage, or both; do not invent one. A named-suspect diagnosis may continue without a cleanup target, but the ordered unknown-source scan cannot claim a stop condition until the target is explicit.

Keep this first phase read-only. Do not run scripts/cleanup_report.py yet: it creates a local state directory and snapshot file. Preserve the command output in the report instead. On a remote target, always run the direct df commands on that host; the local helper must not measure the controller Mac by mistake.

Follow the named suspect before broad scans

  • Query the subsystem's own status and settings.
  • Measure physical allocation with a bounded du on the exact data path only when permissions and user scope allow it.
  • Distinguish logical content size, sparse-file apparent size, purgeable space, and physically allocated bytes.
  • For APFS clones, label du as path-accounted or nominal rather than physical: shared extents can be attributed to every path, so actual release remains unknown until deletion and df readback.
  • For a suspected growing log, record exact file sizes at two or more timestamps. One large file or one recent mtime does not prove sustained growth.
  • Capture the current process, listeners, launch mechanism, and supported health probe of any co-resident service the user marks as critical. Re-resolve PIDs at each checkpoint.

If the known suspect alone can meet the user's free-space target, do not scan unrelated personal or development directories “just in case.”

General analysis when the source is unknown

Run the smallest ordered sequence that can identify enough physical space to meet the target. Stop only when candidates with supported exact actions and defensible expected physical release can meet it. Raw allocation totals, logical cache sizes, shared Docker layers, Trash moves, and unverified “potential savings” do not satisfy the stop condition.

Do not make the physical-confidence ranking hide the user's largest visible hotspot. When a nominal/path-accounted candidate is larger than the recommended action, show both numbers and explain why its physical release is uncertain. Rank by defensible physical release, safety, and effort; report nominal size as a separate column instead of silently treating it as either zero or fully reclaimable.

Order / signalRead-only actionStop or continue
1. AlwaysCapture identity and df -k/-h; inventory user exclusionsStop on target mismatch
2. Cache/log pressure, and ~/Library/Caches plus ~/Library/Logs are approved read scopesuv run scripts/analyze_caches.py --user-onlyStop when measured candidates can meet the target
3. Developer tools are present and the script's fixed scope is approveduv run scripts/analyze_dev_env.py reads Docker/package managers plus existing ~/Projects, ~/workspace, ~/dev, ~/src, and ~/code rootsRoute Docker/OrbStack findings to their dedicated reference; skip this helper when any fixed root is out of scope
4. Uninstalled-app residue is plausible and its fixed roots are approveduv run scripts/find_app_remnants.py reads /Applications, ~/Applications, and four documented ~/Library application-state rootsTreat every result as a candidate, never proof of abandonment; skip when that scope is not approved
5. A content-bearing path is explicitly approveduv run scripts/analyze_large_files.py --threshold 100MB --path "<approved-path>"Do not substitute ~, Downloads, Documents, or the data-volume root when no path was approved
6. Still unknown after bounded checks, and the user explicitly approves Mole's fixed broad scan rootsRead references/mole_integration.md and use mo analyze through a TTYMole cannot accept an arbitrary path scope; skip it when approval is narrower than its documented roots

An <approved-path> is an exact path the user named or explicitly accepted after its scope was described. If none exists, skip large-file and duplicate-content scanning, state that this evidence branch was not authorized, and continue with non-content-bearing evidence. Do not install or upgrade Mole during a read-only phase unless the user separately authorizes that change.

Mole's analyzer scans a fixed set that includes the home directory, application data, system libraries, applications, and volumes. Navigation inside the results does not make the underlying scan path-scoped. If that broad read scope is not approved, do not run Mole; stop with the bounded evidence already collected or ask for the missing scan authorization in the plan.

For an explicitly approved duplicate-file investigation, read the “Optional duplicate files” section in references/cleanup_targets.md. It is read-only and never uses an automatic-delete option.

Docker and OrbStack

Read references/docker_analysis.md before reporting Docker savings. List every image, container, and volume individually; inspect references and database-like contents; use actual sparse-file allocation rather than apparent size. A resource reported as dangling is not proof that its data is worthless. Build-cache measurement is supported, but build-cache deletion is deliberately out of scope because the available Docker controls are prune-family operations.

Phase 2: report and stop at the gate

Report observed values rather than inferred properties. Use references/report_templates.md for the long-form layout and include these fields for every proposed action:

FieldRequired content
Current stateTimestamp, target identity, disk used/free/capacity, and subsystem status
EvidenceThe command and observed value; state whether the number is logical or physical
Exact commandThe command that would change state, with the exact target or object ID
ChangeWhat the command modifies or removes
RecoverabilityReversible command, Trash recovery, backup restore, or redownload-only
Expected releasePhysical-space estimate with unit and assumptions
Service impactUser-visible effects and protected-service invariants
PostconditionsValues that must be true before the action is called successful

Classify findings by consequence, not by how tempting the number is:

  • Rebuildable cache: deletion loses only a local copy, but state the redownload or rebuild cost.
  • User decision required: value depends on the user's workflow or ownership knowledge.
  • Preserve: user data, credentials, database state, active configuration, or anything whose role is uncertain.

Do not call a cache “absolutely safe” merely because software can regenerate it. Regeneration time, bandwidth, authentication, and offline availability are real costs.

Phase 3: execute the confirmed plan

Immediately before the first state-changing command:

  1. Reconfirm the target identity and current disk state.
  2. Re-query the objects or subsystem status; cleanup plans expire when live state changes.
  3. Recheck protected-service health.
  4. Compare the approved commands and exact target set with the commands about to run. Any wider or different target set requires new approval. A separately preserved item becoming inactive does not invalidate the plan when it remains explicitly excluded and the approved target-set hash still matches.

If the approved plan includes creation of a local before/after report artifact, capture the before snapshot now, after approval and before the first cleanup command:

bash
uv run scripts/cleanup_report.py --snapshot before

This writes under ~/.macos-cleaner, so list it in the plan. It is optional and local-target only; direct df -k/-h readings remain the source of truth. Never run it on the controller Mac as a substitute for measuring a remote target.

Run one state-changing command at a time. Read the result before sending the next command. After each command, run the postcondition that can distinguish success from partial success.

For an exact ordinary file that is not user data, application state, a database, or a protected path, prefer a recoverable Finder Trash move after the user confirms the exact path:

bash
/usr/bin/osascript \
  -e 'on run argv' \
  -e 'tell application "Finder" to delete (POSIX file (item 1 of argv))' \
  -e 'end run' -- "<exact-path>"

Moving to Trash usually releases no physical space until Trash is emptied; state that in the plan. scripts/safe_delete.py is a legacy permanent-deletion helper with an interactive prompt and a limited system/credential denylist. It does not move to Trash, check every user-data root, detect open files, or independently prove reclaimed bytes. Use it only when the exact non-user-data target and irreversible deletion were explicitly approved:

bash
uv run scripts/safe_delete.py <exact-path> [<exact-path> ...]

Do not use this helper for user documents, application-managed caches such as Apple Content Caching, databases, credentials, or any target whose role is uncertain.

Two narrow Finder-Trash branches remain available without weakening those exclusions:

  • For an exact inactive application cache with no verified supported management control, follow the named-cache discovery/in-use protocol in references/cleanup_targets.md, explain the rebuild cost, and obtain explicit approval for that exact cache path.
  • For duplicate files inside an exact approved user-data root, first show each duplicate set's size/hash and every path. The user must name the copy to keep and each copy to remove. Move only those confirmed files to Finder Trash; never use the permanent helper, an automatic duplicate-selection flag, all, a glob, or a directory-level target. Verify the source paths moved to Trash, and state that physical space is not released until Trash is separately reviewed and emptied.

Phase 4: verify and observe

Verification must cover all clauses of the approved plan:

  • Re-read df -k and df -h; calculate reclaimed space from before/after readings rather than from the deletion tool's claim.
  • Re-query the cleaned subsystem's activation, configuration, and physical usage.
  • Re-resolve each protected service's PID, listeners, launch mechanism, and health probe. A healthy disk does not prove the service survived.
  • Observe at bounded intervals when APFS accounting can lag or the source may refill. Record each timestamp and value.
  • If the free-space target is missed, stop all deletion. Begin a second read-only analysis and rank remaining sources by measured physical allocation.

Never report “fixed” when only the command exit code is known. A successful cleanup requires both the intended state and the protected invariants.

For a local target whose before snapshot was captured by the helper, generate the comparison with:

bash
uv run scripts/cleanup_report.py --snapshot after --compare

Resources

Load only the branch relevant to the current task:

  • references/apple_content_caching.md — Apple Content Caching diagnosis, unit interpretation, supported remote controls, confirmation plan, and post-cleanup verification.
  • references/chromium_code_sign_clones.md — Chrome/Chromium/Edge code-sign-clone semantics, nominal-versus-physical reporting, exact inactive-target manifests, cleanup verification, and recurrence prevention.
  • references/cleanup_targets.md — cache, log, application, developer, large-file, and Time Machine target semantics.
  • references/docker_analysis.md — per-object Docker and OrbStack analysis, database-volume safeguards, and refill root-cause diagnosis.
  • references/mole_integration.md — TTY workflow for interactive Mole analysis and preview.
  • references/report_templates.md — long-form general and Docker report templates.
  • references/safety_rules.md — blocked paths, confirmation, recovery, and file-deletion safety checks.
  • scripts/analyze_caches.py — bounded cache inventory.
  • scripts/analyze_code_sign_clones.py — read-only current-user code-sign-clone inventory; after approval it can revalidate an exact candidate SHA and write a non-overwriting batch manifest.
  • scripts/find_app_remnants.py — application-remnant candidates; reads its fixed Applications and ~/Library roots, so require that scope first.
  • scripts/analyze_large_files.py — large-file discovery inside an approved path.
  • scripts/analyze_dev_env.py — Docker/package-manager inventory plus fixed common-project-root .git sizing; require that full read scope first.
  • scripts/safe_delete.py — legacy guarded permanent deletion for exact approved non-user-data targets; it is not a Trash or recovery tool.
  • scripts/cleanup_report.py — local-target before/after reporting for /System/Volumes/Data by default, with an explicit --volume override.

Do not use this skill when

  • The target is Windows or Linux.
  • The requested action requires disabling SIP or bypassing macOS protections.
  • The user asks for silent or automatic deletion without an auditable scope and confirmation gate.
  • The task is only to tune application behavior and has no disk-space diagnosis or recovery goal.
같은 저장소의 Skills

더 많은 Skills

모든 Skills
daymade
커뮤니티

i18n-expert

This skill should be used when setting up, auditing, or enforcing internationalization/localization in UI codebases (React/TS, i18next or similar, JSON locales), including installing/configuring the i18n framework, replacing hard-coded strings, ensuring en-US/zh-CN coverage, mapping error codes to localized messages, and validating key parity, pluralization, and formatting.

설치 수
1
GitHub Stars
1.4천
업데이트
9월 22일
daymade
커뮤니티

frontend-visual-qa

- Audits already-rendered web, landing-page, HTML deck/slide, browser tool/game, dashboard/admin, design-system, and desktop UIs using real-browser or native-app journeys, inspected screenshots, DOM geometry, responsive or projection viewports, and a bundled Playwright sweep. Use after UI implementation to find typography, wrapping, overlap, overflow, responsive, route, overlay, map, transient-state, data-visualization, browser-output, file-dialog, PDF/print, or Electron-shell defects, or to compare a rendered artifact with a visual reference. Do not use for greenfield UI design, extracting a design system from screenshots, general QA-program setup, or nonvisual code debugging.

설치 수
2
GitHub Stars
1.4천
업데이트
9월 21일
daymade
커뮤니티

github-ops

- Operates GitHub through gh CLI and the REST/GraphQL APIs with explicit target, authorization, impact preview, and independent readback. Use for pull requests, issues, Actions, repositories, collaborators, teams, organization member privileges, base permissions, 2FA enforcement, repository settings, API automation, parallel or superseded PR convergence, and public or enterprise GitHub. Also use when a GitHub write returned success but the requested state did not change, or when deciding whether a setting is writable through CLI, REST, GraphQL, or only the GitHub UI.

설치 수
1
GitHub Stars
1.4천
업데이트
9월 20일
daymade
커뮤니티

ashare-news-fetcher

- 抓取 A 股消息面情报:从财联社、华尔街见闻、金十、新浪 7x24、东财快讯、 证监会/央行/上交所/财政部政策公告、东方财富股吧等公开来源抓取与股票相关的 新闻、政策、情绪,输出结构化 JSON 或 Markdown。 当用户提到“A 股消息面”、“抓新闻”、“个股消息”、“政策监管”、“股吧情绪”、 “财联社”、“东财快讯”、“市场情绪”或需要把某只股票相关的公开情报聚合出来时 触发。也适用于“帮我看看 000001 最近有什么消息”这类口语化请求。

설치 수
1
GitHub Stars
1.4천
업데이트
9월 16일