Dependency Audit Weekly
Weekly loop to check outdated dependencies, propose safe upgrades, and open a summary.
Kickoff prompt
/loop 7d Start the "Dependency Audit Weekly" loop.
Goal: deliver a weekly dependency audit summary.
Between iterations run: npm outdated || true
Exit when: summary is posted with recommended upgrades.
Step 1: Run npm outdated, categorize updates, and propose a safe upgrade plan.Basic information
Category
Maintenance
Goal
deliver a weekly dependency audit summary.
Check command
npm outdated || true
Exit when
summary is posted with recommended upgrades.
Supported agents
Claude Code
Steps
- 1
List outdated packages
Run npm outdated and summarize major vs patch updates.
npm outdated || true - 2
Propose upgrades
Recommend safe upgrades. Flag breaking changes and required code changes.
More Maintenance loops
Docs Sync After Edits
After code changes, find affected docs and update README, API references, and inline comments to match.
Security Audit Weekly
Weekly npm audit scan, triage vulnerabilities by severity, and propose or apply safe patches.
Dependency Upgrade One-by-One
Upgrade a single outdated package per iteration, fix breakages, and commit — safer than bulk npm update.
Knip Until Clean
Find and remove dead exports, unused files, and orphan dependencies — loop until knip reports clean.