スキル一覧に戻る
cpa03

dependency-audit

by cpa03

🏗️ AI-powered blueprint generator for codebases with autonomous multi-agent CI/CD workflow

0🍴 0📅 2026年1月15日
GitHubで見るManusで実行

SKILL.md


name: dependency-audit description: Audit npm dependencies for security vulnerabilities, outdated packages, and license compliance.

Dependency Audit Skill

Comprehensive npm dependency security and health check.

Security Audit

  1. Run npm audit:

    npm audit
    
  2. For detailed JSON output:

    npm audit --json
    
  3. Fix automatically if safe:

    npm audit fix
    
  4. For breaking changes (be careful):

    npm audit fix --force
    

Outdated Packages

  1. Check for outdated:

    npm outdated
    
  2. Update specific package:

    npm update <package-name>
    
  3. Update to latest (major versions):

    npx npm-check-updates -u
    npm install
    

License Check

  1. List all licenses:

    npx license-checker --summary
    
  2. Check for problematic licenses:

    npx license-checker --onlyAllow "MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC"
    

Bundle Analysis

  1. Analyze bundle size:

    npx source-map-explorer dist/**/*.js
    
  2. Find duplicate dependencies:

    npx npm-dedupe
    

Output Report

## Dependency Audit Report

### Security

- Critical: X
- High: X
- Medium: X
- Low: X

### Outdated Packages

| Package | Current | Wanted | Latest |
| ------- | ------- | ------ | ------ |
| ...     | ...     | ...    | ...    |

### Actions Required

1. [Action with priority]
2. [Action with priority]

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です