Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计异常

up-deps向上部门

Agent Skill

up-deps 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

188

周安装

8

GitHub Stars

公开资料未说明

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:up-deps(向上部门)
来源仓库:https://github.com/curev/skills
仓库路径:skills/up-deps
安装命令:
npx skills add https://github.com/curev/skills --skill up-deps
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/curev/skills --skill up-deps

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • up-deps 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Update Dependencies Workflow

Complete workflow for updating project dependencies using taze, a modern CLI tool that keeps your dependencies fresh.

Quick Start

By default, taze safely updates versions within the ranges specified in package.json (same behavior as npm install).

npx taze

For monorepos, use recursive mode:

npx taze -r

Update Levels

Safe Updates (Default)

Only bump versions within allowed ranges:

npx taze

Major Updates

Check and bump to latest stable versions including major (breaking) changes:

npx taze major

Minor Updates

Bump to latest minor versions within the same major version:

npx taze minor

Patch Updates

Bump to latest patch versions within the same minor version:

npx taze patch

Workflow Steps

1. Check Current Dependencies

# Check package.json location
ls package.json

# For monorepos, identify all package.json files
find . -name "package.json" -not -path "*/node_modules/*"

2. Run Taze

Basic usage:

npx taze

With options:

# Monorepo support
npx taze -r

# Write changes to package.json
npx taze --write

# Auto-install after updating
npx taze --write --install

# Include peer dependencies
npx taze --peer

# Include locked versions (fixed versions without ^ or ~)
npx taze --include-locked
# or short form
npx taze -l

# Force fetch latest info (no cache)
npx taze --force

3. Review Changes

After running taze, review the proposed changes by checking the output. If --write was used, review the updated package.json files:

# View package.json to see updated versions
cat package.json
# or for monorepos, check each package.json
find . -name "package.json" -not -path "*/node_modules/*" -exec cat {} \;

Check for:

  • Breaking changes in major updates
  • Compatibility issues

4. Install Updated Dependencies

If --install wasn't used, install manually using @antfu/ni which automatically detects the package manager:

npx @antfu/ni

@antfu/ni automatically detects the package manager from package.json packageManager field or lock files (pnpm-lock.yaml, yarn.lock, etc.) and uses the appropriate command.

Advanced Configuration

Filter Packages

Include or exclude specific packages:

# Include specific packages
npx taze --include lodash,webpack

# Exclude packages
npx taze --exclude react-dom

# Use regex patterns
npx taze --include /react/ --exclude react-dom

Config File (Reference Only)

Note: Do not create taze.config.ts or taze.config.js automatically. Only use if the project already has one.

If a taze.config.ts or taze.config.js file exists in the project, it will be used for configuration.

For a complete example configuration, see references/taze.config.ts.

Important: Use command-line options instead of creating config files. Only reference existing config files if they are already present in the project.

Monorepo Support

Taze has first-class monorepo support:

# Recursive mode scans all subdirectories with package.json
npx taze -r

# Automatically handles local private packages

Monorepo workflow:

  1. Run npx taze -r to scan all packages
  2. Review taze output to see proposed changes
  3. Install dependencies at root level (or in each workspace)

Complete Example

Scenario: Updating dependencies in a monorepo with safe updates

# 1. Check package.json locations
find . -name "package.json" -not -path "*/node_modules/*"

# 2. Run taze in recursive mode to preview changes
npx taze -r

# 3. Review taze output for proposed changes

# 4. Write changes and install
npx taze -r --write --install

Scenario: Major version updates for specific packages

# Preview updates for TypeScript
npx taze major --include typescript

# Update only TypeScript to latest major
npx taze major --include typescript --write

# Review package.json for breaking changes
cat package.json | grep typescript

# Install dependencies
npx @antfu/ni

Important Notes

  • Safe by default: Taze only updates within version ranges unless explicitly told otherwise
  • Locked versions: Fixed versions (without ^ or ~) are skipped by default
  • Peer dependencies: Not included by default, use --peer flag
  • Monorepos: Use -r flag for recursive scanning
  • No installation required: Use npx taze without installing globally
  • Breaking changes: Always review major updates carefully

Error Handling

If taze fails:

  1. Check network connectivity
  2. Verify package.json syntax
  3. Try with --force to bypass cache
  4. Check for conflicting version ranges

If installation fails:

  1. Clear lock file and node_modules
  2. Try with different package manager
  3. Check for peer dependency conflicts
  4. Review package.json for syntax errors

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

windsurf

27.31%
按下载量换算18

OpenCode

23.33%
按下载量换算15

Cursor

17.34%
按下载量换算11

Codex

11.64%
按下载量换算8

Claude Code

6.88%
按下载量换算5

trae-cn

2.81%
按下载量换算2

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/curev/skills --skill up-deps;npx skills add curev/skills --skill "up-deps" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills