Token导航 LogoToken导航TokenDH.com
开发执行命令clawhub未标认证来源可访问clear审计提醒

typescript-package-managerTypeScript package manager 开发

Agent Skill

typescript-package-manager 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,102

周安装

391

GitHub Stars

公开资料未说明

下载量

3,191
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:typescript-package-manager(TypeScript package manager 开发)
来源仓库:https://github.com/jhauga/typescript-package-manager
安装命令:
openclaw skills install typescript-package-manager
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install typescript-package-manager

简介

精通 npm/yarn/pnpm/bun/deno 等包管理工具的高级顾问。

  • 擅长解决依赖冲突、镜像加速与安全审计问题。
  • 适用于 CI/CD 流程优化与构建性能提升场景。
  • 提供配置模板与故障排查清单作为参考依据。typescript-package-manager 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 不替代实际包管理器,仅给出操作建议与原理说明。

SKILL.md

name
typescript-package-manager
description
Expert 10x Software engineer specializing in TypeScript with deep knowledge of all popular package management tools including npm, yarn, pnpm, bun, and deno. Use when asked to configure package managers, manage dependencies, set up workspaces, resolve package conflicts, optimize package.json files, troubleshoot installation issues, or work with monorepos. Expertise covers package scripts, version management, lock files, and build tool integration.

TypeScript Package Manager Skill

An expert skill for managing TypeScript projects with comprehensive knowledge of modern package management tools and ecosystem best practices.

When to Use This Skill

  • Setting up or configuring package managers (npm, yarn, pnpm, bun, deno)
  • Managing project dependencies and resolving conflicts
  • Optimizing package.json configuration
  • Working with monorepos and workspaces
  • Troubleshooting installation or dependency issues
  • Configuring package scripts and build pipelines
  • Understanding lock files and version constraints
  • Integrating package managers with build tools
  • Migrating between package managers
  • Performance optimization of package operations

Prerequisites

  • Node.js environment (for npm, yarn, pnpm, bun)
  • Basic understanding of TypeScript/JavaScript projects
  • Terminal/command line access
  • Understanding of semantic versioning (semver)

Shorthand Keywords

Keywords to trigger this skill quickly:

openPrompt = ["typescript-package-manager", "ts-pkg", "pkg-manager"]

Use these shorthand commands for quick invocation:

  • ts-pkg --install <package>
  • pkg-manager --compare-tools
  • ts-pkg migrate to pnpm
  • pkg-manager --optimize workspace

Core Capabilities

Package Manager Expertise

This skill provides deep knowledge across all major JavaScript/TypeScript package managers:

  • npm: The default Node.js package manager, widely used and battle-tested
  • yarn: Fast, reliable package manager with enhanced features
  • pnpm: Disk-space efficient with strict dependency isolation
  • bun: Ultra-fast all-in-one toolkit with native package management
  • deno: Secure-by-default runtime with built-in tooling

Dependency Management

  • Installing, updating, and removing dependencies
  • Managing dev dependencies vs production dependencies
  • Understanding peer dependencies and optional dependencies
  • Resolving version conflicts and compatibility issues
  • Audit and security vulnerability management
  • Dependency deduplication and optimization

Configuration and Optimization

  • package.json structure and best practices
  • Lock file management (package-lock.json, yarn.lock, pnpm-lock.yaml)
  • Workspace and monorepo configuration
  • Scripts and lifecycle hooks
  • Registry configuration and private packages
  • CI/CD integration

Ecosystem Integration

  • TypeScript compiler (tsc) integration with package managers
  • Build tool configuration (Vite, webpack, esbuild, Rollup, Turbopack)
  • Testing framework setup (Vitest, Jest, Mocha)
  • Linting and formatting tools (ESLint, Prettier)
  • Development server configuration and hot reload
  • CI/CD pipeline optimization

Key Concepts

Semantic Versioning (semver)

Understanding version constraints in package.json:

  • ^1.2.3 (caret): >=1.2.3 <2.0.0 - Allows minor and patch updates (recommended)
  • ~1.2.3 (tilde): >=1.2.3 <1.3.0 - Allows only patch updates
  • 1.2.3 (exact): Exact version only
  • >=1.2.3 <2.0.0 (range): Custom version range
  • latest: Always use latest version (dangerous, not recommended)

Lock Files

Lock files ensure reproducible installations across environments:

  • package-lock.json (npm): JSON format, exact dependency tree
  • yarn.lock (yarn): YAML-like format, deterministic resolution
  • pnpm-lock.yaml (pnpm): YAML format with content-addressable storage
  • bun.lockb (bun): Binary format for fast parsing

Best Practice: Always commit lock files to version control.

Workspaces (Monorepos)

Manage multiple packages in a single repository:

{
  "workspaces": ["packages/*", "apps/*"]
}

Benefits:

  • Shared dependencies across packages
  • Cross-package development and testing
  • Unified versioning and release coordination
  • Simplified dependency management

Best Practices

  1. Choose the Right Tool: Understand trade-offs between package managers for your project needs

- npm: Maximum compatibility, widest ecosystem support - yarn: Enhanced features, good monorepo support - pnpm: Best disk space efficiency, strict dependencies - bun: Maximum speed, all-in-one tooling - deno: Security-first, URL-based imports

  1. Lock File Discipline: Always commit lock files to ensure reproducible builds across environments
  1. Semantic Versioning: Use appropriate version constraints

- Use ^ (caret) for most dependencies (recommended) - Use ~ (tilde) for conservative updates - Use exact versions only when necessary

  1. Security First: Regularly audit dependencies for vulnerabilities
   npm audit      # npm
   yarn audit     # yarn
   pnpm audit     # pnpm
   bun pm audit   # bun
  1. Workspace Optimization: Leverage workspaces for monorepo efficiency and shared dependencies
  1. Script Consistency: Use cross-platform compatible scripts (avoid shell-specific commands)
  1. Minimal Dependencies: Avoid unnecessary packages to reduce complexity, security surface, and bundle size
  1. Documentation: Document package manager choice, special configurations, and setup instructions in README.md
  1. CI/CD Optimization: Use frozen lockfiles in CI for deterministic builds
   npm ci                                    # npm
   yarn install --frozen-lockfile            # yarn
   pnpm install --frozen-lockfile            # pnpm
   bun install --frozen-lockfile             # bun
  1. Version Management: Use packageManager field in package.json to enforce consistency
    {
      "packageManager": "pnpm@8.15.0"
    }

Choosing the Right Package Manager

Decision Factors

npm (Default Choice)

  • ✅ Maximum compatibility and ecosystem support
  • ✅ Default with Node.js, no additional setup
  • ✅ Well-tested and mature
  • ❌ Slower than alternatives
  • ❌ Less disk-efficient

yarn (Enhanced Features)

  • ✅ Good performance and caching
  • ✅ Excellent monorepo/workspace support
  • ✅ Plug'n'Play mode (Berry) for zero-installs
  • ❌ Classic vs Berry version confusion
  • ❌ Plug'n'Play requires IDE setup

pnpm (Recommended for Most Projects)

  • ✅ 60-70% disk space savings
  • ✅ 2-3x faster than npm
  • ✅ Strict dependency isolation prevents phantom dependencies
  • ✅ Excellent monorepo support
  • ❌ May expose hidden dependency issues

bun (Cutting Edge)

  • ✅ Blazing fast (5-10x faster than npm)
  • ✅ All-in-one: runtime, bundler, test runner
  • ✅ Native TypeScript support
  • ❌ Newer and less mature
  • ❌ Some npm package incompatibilities

deno (Security-First)

  • ✅ Secure by default with explicit permissions
  • ✅ Native TypeScript support
  • ✅ No package.json or node_modules
  • ❌ Different paradigm (URL-based imports)
  • ❌ Smaller ecosystem than npm

Quick Recommendation

  • New TypeScript project: pnpm or bun
  • Existing project: Keep current manager unless migrating for specific benefits
  • Monorepo: pnpm or yarn (berry)
  • Maximum compatibility: npm
  • Security-critical: deno or pnpm

Common Tasks

Installing Dependencies

# npm
npm install

# yarn
yarn install

# pnpm
pnpm install

# bun
bun install

Adding New Dependencies

# Production dependency
npm install package-name
yarn add package-name
pnpm add package-name
bun add package-name

# Development dependency
npm install --save-dev package-name
yarn add --dev package-name
pnpm add --save-dev package-name
bun add --dev package-name

Running Scripts

# All package managers support npm scripts
npm run script-name
yarn script-name
pnpm script-name
bun run script-name

Troubleshooting

Common Issues

Installation Failures:

  • Clear cache and retry
  • Delete node_modules and lock file, reinstall
  • Check for incompatible peer dependencies
  • Verify Node.js version compatibility

Version Conflicts:

  • Use resolutions/overrides in package.json
  • Upgrade conflicting dependencies
  • Consider using pnpm for better isolation

Performance Issues:

  • Use pnpm or bun for faster operations
  • Enable caching mechanisms
  • Optimize workspace configuration

Lock File Conflicts:

  • Resolve merge conflicts carefully
  • Regenerate lock file if corrupted
  • Ensure team uses same package manager

References

See the references/ folder for detailed documentation:

  • package-management.md - Comprehensive guide to JavaScript/TypeScript package managers including npm, yarn, pnpm, bun, deno, with concepts, version management, security, and best practices
  • integration-with-build-tools.md - Complete guide to integrating package managers with Vite, webpack, esbuild, Rollup, TypeScript compiler (tsc), and CI/CD pipelines

Scripts

See the scripts/ folder for workflow guides and automation:

  • npm-workflow.md / npm-workflow.js - Complete npm workflow from initialization to publishing
  • yarn-workflow.md - Complete yarn workflow covering Classic (1.x) and Berry (3.x+) versions
  • pnpm-workflow.md - Complete pnpm workflow with monorepo and workspace features
  • bun-workflow.md / bun-workflow.js - Complete bun workflow for ultra-fast package management
  • health-check.md / health-check.js - Package manager health check and diagnostics scripts

Assets

See the assets/ folder for templates and reference materials:

  • package-manager-comparison.md - Detailed comparison matrix, benchmarks, and decision tree for choosing package managers
  • package-json-template.md - Production-ready package.json template with field-by-field explanations and best practices

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

96.36%
按下载量换算3,075

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install typescript-package-manager 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills