1013 B
1013 B
id, title, workspaceRoot, schedule, tools, mode, enabled, modelSelection, timeoutSeconds, maxIterations, tags, metadata
| id | title | workspaceRoot | schedule | tools | mode | enabled | modelSelection | timeoutSeconds | maxIterations | tags | metadata | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| dependency-check | Weekly Dependency Health Check | /absolute/path/to/repo | 0 10 * * MON | run_commands,read_files | act | false |
|
1800 | 15 |
|
|
Run a comprehensive dependency health check:
- Check for outdated packages:
npm outdated(or yarn/pnpm equivalent) - Check for security vulnerabilities:
npm audit - List packages with available major version upgrades
- Identify unused dependencies (if possible)
- Check for dependency conflicts or duplicate packages
Provide a summary report covering:
- Critical security vulnerabilities (if any)
- Count of outdated packages by severity (minor, patch, major)
- Recommended immediate actions
- Packages safe to update to latest versions
Focus on actionable insights. Ignore known false positives and dev-only dependencies.