- Rename: 00→80 claude-settings-optimizer, 88→79 dintel-skill-update, 92→81 mac-optimizer, 93→82 tui-design-template - Rename: dintel-shared → _dintel-shared (consistent with _ourdigital-shared) - Remove: 61-gtm-manager, 62-gtm-guardian (obsolete), 99_archive - Update all dintel-* skill refs (114 occurrences across 31 files) - Sync README.md, CLAUDE.md, AGENTS.md with new structure Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
33 lines
973 B
Markdown
33 lines
973 B
Markdown
---
|
|
allowed-tools: Bash(bash *audit_packages.sh*), Bash(brew *), Bash(npm *), Bash(pip *), Bash(nvm *), Bash(pyenv *)
|
|
description: Audit package managers (Homebrew, npm, pip, pyenv) for outdated packages and issues
|
|
---
|
|
|
|
## Your task
|
|
|
|
Audit all package managers on this Mac.
|
|
|
|
### Step 1 — Run the audit
|
|
|
|
```bash
|
|
bash $CLAUDE_PLUGIN_ROOT/skills/mac-optimizer/scripts/audit_packages.sh
|
|
```
|
|
|
|
### Step 2 — Report
|
|
|
|
Parse JSON output and present as a severity-ranked markdown table:
|
|
|
|
| Severity | Finding | Recommended Action | Details |
|
|
|---|---|---|---|
|
|
|
|
### Step 3 — Ask for consent
|
|
|
|
List available update actions grouped by risk. Ask which actions to perform.
|
|
|
|
### Safety notes
|
|
|
|
- `brew upgrade` is generally safe but can break projects pinned to specific versions
|
|
- Global npm packages are version-independent from project dependencies
|
|
- pip upgrades can break dependency chains — suggest `--dry-run` first
|
|
- Only audit pyenv-managed environments (not system Python)
|