スキル一覧に戻る
pa-y-kunimoto

lookup-npm-dependencies-version

by pa-y-kunimoto

Realization of Vector Database Application on MySQL 9

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

SKILL.md


name: lookup-npm-dependencies-version description: Look up the latest stable versions of NPM packages using npm view command. Use when planning a project, updating dependencies, or when the user asks about current package versions for Node.js/TypeScript projects. allowed-tools: Bash(npm view:*)

NPM Dependencies Version Lookup

Look up the latest stable versions of NPM packages using npm view command to get accurate, real-time version information.

Instructions

  1. Identify packages to look up:

    • Use packages specified by the user
    • Or check the current feature's plan.md for technology stack and dependencies
  2. Run npm view for each package:

    npm view <package-name> version
    
    • For multiple packages, run commands in parallel:
    npm view express version
    npm view mysql2 version
    npm view typescript version
    
    • To see more details (description, dependencies, etc.):
    npm view <package-name>
    
  3. Check peer dependencies if needed:

    npm view <package-name> peerDependencies
    
  4. Generate version report as a markdown table:

    ## NPM Dependencies Version Report
    
    **Generated**: [DATE]
    
    ### Runtime Dependencies
    
    | Package | Latest Version |
    |---------|----------------|
    | express | 5.0.1 |
    | mysql2 | 3.11.0 |
    
    ### Development Dependencies
    
    | Package | Latest Version |
    |---------|----------------|
    | typescript | 5.7.2 |
    | vitest | 2.1.8 |
    
  5. Provide installation command:

    # Runtime dependencies
    aikido-npm install express@^5.0.1 mysql2@^3.11.0
    
    # Development dependencies
    aikido-npm install -D typescript@^5.7.2 vitest@^2.1.8
    

Useful npm view Commands

CommandDescription
npm view <pkg> versionLatest stable version
npm view <pkg> versionsAll available versions
npm view <pkg> dist-tagsTagged versions (latest, next, beta)
npm view <pkg> peerDependenciesPeer dependency requirements
npm view <pkg> enginesNode.js version requirements
npm view <pkg> deprecatedCheck if deprecated

Version Notation

NotationUsageExample
^ (caret)Most packages - allows minor/patch updates^1.2.3
~ (tilde)Packages with frequent breaking changes~1.2.3
ExactCritical dependencies requiring stability1.2.3

Example Workflow

# 1. Check latest versions
npm view express version        # => 5.0.1
npm view mysql2 version         # => 3.11.0
npm view zod version            # => 3.24.1
npm view typescript version     # => 5.7.2
npm view vitest version         # => 2.1.8

# 2. Check Node.js requirements
npm view express engines
npm view mysql2 engines

# 3. Install with specific versions
aikido-npm install express@^5.0.1 mysql2@^3.11.0 zod@^3.24.1
aikido-npm install -D typescript@^5.7.2 vitest@^2.1.8

スコア

総合スコア

60/100

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

SKILL.md

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

+20
LICENSE

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

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

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

0/5
Issue管理

オープンIssueが50未満

+5
言語

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

+5
タグ

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

0/5

レビュー

💬

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