AgentSkillsCN

dependency_installer

读取、写入、编辑并格式化 Excel 文件(.xlsx)。创建电子表格、处理数据、应用格式设置、管理工作表、合并单元格、执行查找与替换操作,并支持导出为 CSV、JSON 或 Markdown 格式。

SKILL.md
--- frontmatter
name: dependency_installer
description: Install packages at runtime inside the Docker container. Use uv for Python, npm for Node.js, apt-get for system packages.
version: 1.0.0
author: mordecai

Dependency Installer

Runtime package installer for the Docker container. Installs dependencies that skills need.

Available Package Managers

  • uv: Python packages (uv pip install <package>)
  • npm: Node.js packages (npm install -g <package>)
  • apt-get: System packages (apt-get install -y <package>)
  • cargo: Rust CLI tools (cargo install <crate>)
  • brew: macOS Homebrew packages (brew install <package>)
  • url: Download a binary to /usr/local/bin (curl -fsSL -o /usr/local/bin/<name> <url> && chmod +x ...)

Usage

The agent calls the install_package tool to install dependencies at runtime.

Examples

code
Install the requests Python library
Install axios npm package
Install ffmpeg system package