dependency-update
星标0
分支0
更新时间2026年2月21日 16:59
Run this to update project dependencies
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Run this to update project dependencies
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | dependency-update |
| description | Run this to update project dependencies |
| disable-model-invocation | true |
I need you to update the dependencies in pyproject.toml. The process to go through is:
dependencies or [dependency-groups]>=1.05,<2.0, but on Pypi the latest version is 1.11, change the dependency to >=1.11,<2.0
>=1.11,<2.0 not >=1.11.3,<2.0.== (e.g. markitdown==0.1.5) or have stricter version requirements. Do not update those.uv run ruff format && uv run ruff check --fix && uv run ty check from the root.uv sync --all-extras --all-groups to update the lock file.