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.