Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Copy this template to your Claude Desktop scheduled-tasks directory:
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-03 | ✗→✓ | ▲ Improved | -16% | 0% |
| case-05 | ✗→✓ | ▲ Improved | -10% | 0% |
| case-07 | ✗→✓ | ▲ Improved | -6% | 0% |
| case-08 | ✗→✓ | ▲ Improved | -2% | 0% |
| case-09 | ✗→✓ | ▲ Improved | -12% | 0% |
Copy this template to your Claude Desktop scheduled-tasks directory:
bashmkdir -p ~/.claude/scheduled-tasks/dependency-audit cp /path/to/claude-ide-bridge/templates/scheduled-tasks/dependency-audit/SKILL.md \ ~/.claude/scheduled-tasks/dependency-audit/SKILL.md
Then restart Claude Desktop to detect the new scheduled task. Configure the schedule in Claude Desktop settings under "Scheduled Tasks".
> The bridge must be running when this task fires. Start it with claude-ide-bridge --watch or npm run start-all.
> Emergency stop: Set CLAUDE_CODE_DISABLE_CRON=1 in your environment to immediately halt all scheduled cron jobs mid-session. Useful if a task runs amok or you need to suppress scheduled runs temporarily.
name: dependency-audit description: Scan dependencies for security vulnerabilities and outdated packages. Run weekly via Claude Desktop scheduled tasks.
Scan all project dependencies for known security vulnerabilities.
getProjectInfo to detect the project type and package managergetSecurityAdvisories to check for known CVEs in dependenciesauditDependencies to run the package manager's native audit (npm audit, cargo audit, pip-audit, etc.)getDependencyTree to understand the full dependency graph for any flagged packages# Dependency Audit — <date>
## Package Manager: <npm|cargo|pip|go>
## Vulnerabilities Found: <N total>
### Critical (N)
<package@version — CVE-XXXX-XXXXX — description>
Fix: upgrade to <version> | No fix available
### High (N)
<package@version — CVE-XXXX-XXXXX — description>
Fix: upgrade to <version> | No fix available
### Moderate (N)
<package@version — description>
## Outdated Packages
<package — current → latest> (only packages ≥1 major version OR ≥3 minor versions behind)
Direct: listed in package.json. Transitive: pulled in by direct dependencies.
## Recommended Actions
1. <specific upgrade command or action>
2. <specific upgrade command or action>
## Overall: SECURE | REVIEW NEEDED | ACTION REQUIREDnpm install package@version)Other measured skills in the registry, with their headline benchmark lift.