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.