Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计提醒

migrate-to-uv迁移到紫外线

Agent Skill

migrate-to-uv 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

312

周安装

13

GitHub Stars

10

下载量

104
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/keboola/ai-kit --skill migrate-to-uv

简介

migrate-to-uv 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围和维护状态,注意是否触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Migrate to uv Build System

Migrate a Keboola component (Docker-based, ECR-deployed) from requirements.txt + pip to pyproject.toml + uv with ruff linting.

Execute all steps yourself using the tools available to you. Do NOT delegate to or invoke any other agent (component-builder, develop-component, or similar) — except component-developer:component-defaults in Phase 6.

You MUST complete every step below. Do not skip any step — if a file doesn't exist, move on silently.


Step 0: Read the current state

cat requirements.txt
grep "FROM python:" Dockerfile
cat .github/workflows/push.yml

Commit 1: migrate to pyproject.toml 📦

Create pyproject.toml

Create a minimal pyproject.toml with metadata and ruff config but no dependencies yet — you'll populate those with uv add next:

  • Always use requires-python = "~=3.13.0" and target-version = "py313"
  • Leave dependencies = [] empty for now

Then populate dependencies from requirements.txt using uv:

# Add all main deps at once
uv add -r requirements.txt

# Move test-only deps to the dev group (common ones: pytest, mock, freezegun, responses)
# For each test dep found in requirements.txt:
uv remove <test-dep>
uv add --group dev <test-dep>

uv add auto-converts pinned versions to >= ranges and updates uv.lock in place — no manual conversion needed.

Delete files

rm -f requirements.txt
rm -f .flake8 flake8.cfg
rm -f scripts/build_n_run.ps1 scripts/run.bat scripts/run_kbc_tests.ps1
rm -f scripts/update_dev_portal_properties.sh
rm -rf docs/imgs/
rm -f component_config/configuration_description.md component_config/stack_parameters.json

(rm -f silently does nothing if a file doesn't exist — no errors, no stopping.)

Populate component_config/ URLs (if the files are currently empty)

component_config/documentationUrl.md  → https://github.com/keboola/REPO/blob/master/README.md
component_config/licenseUrl.md        → https://github.com/keboola/REPO/blob/master/LICENSE.md
component_config/sourceCodeUrl.md     → https://github.com/keboola/REPO

Update .gitignore

Add these lines if not present:

*.egg-info/
.venv/
.DS_Store
/data

Replace bare data/ with /data. Remove duplicate .vscode/ entries.

Commit

git add -u                                          # stages all deletions
git add pyproject.toml uv.lock .gitignore component_config/
git commit -m "migrate to pyproject.toml 📦"

Commit 2: uv 💜

Update Dockerfile

Use the multi-stage build pattern. The base stage is shared by both test and production — keeping the production image lean (no dev deps, no test files).

FROM python:3.13-slim AS base
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/

# apt-get installs MUST come before uv sync
# RUN apt-get update && apt-get install -y <packages>  ← keep if already present

WORKDIR /code/
COPY pyproject.toml uv.lock ./
ENV UV_PROJECT_ENVIRONMENT="/usr/local/"
RUN uv sync --no-dev --frozen

COPY src/ src/
COPY scripts/ scripts/
COPY deploy.sh .

FROM base AS test
RUN uv sync --all-groups --frozen
COPY tests/ tests/
RUN uv run ruff check src/ tests/
CMD ["uv", "run", "pytest", "tests/", "-v"]

FROM base AS production
CMD ["python", "-u", "/code/src/component.py"]

Notes:

  • base installs only production deps (--no-dev); test adds dev deps on top
  • Ruff check runs at image build time in the test stage — failing fast
  • ENV KEY="value" syntax (not old ENV KEY value)
  • No pip install anywhere
  • Any apt-get blocks must stay before RUN uv sync

Update scripts/build_n_test.sh

#!/bin/sh
set -e

ruff check
python -m pytest tests/ --tb=short -q

Update tests/__init__.py

Replace old os.path pattern:

import sys
from pathlib import Path
sys.path.append(str(Path(__file__).resolve().parent.parent / "src"))

Update .github/workflows/push.yml

The canonical push.yml uses a multi-job pipeline that matches the multi-stage Dockerfile. Rather than patching individual steps, replace the file entirely with the canonical template (from Phase 6 / component-defaults) and update only the env: block for this component:

env:
  KBC_DEVELOPERPORTAL_APP: "vendor.component-id"   # full component ID from Developer Portal
  KBC_DEVELOPERPORTAL_VENDOR: "vendor"              # your vendor name
  DOCKERHUB_USER: ${{ secrets.DOCKERHUB_USER }}
  KBC_DEVELOPERPORTAL_USERNAME: ${{ vars.KBC_DEVELOPERPORTAL_USERNAME }}
  DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
  KBC_DEVELOPERPORTAL_PASSWORD: ${{ secrets.KBC_DEVELOPERPORTAL_PASSWORD }}
  KBC_TEST_PROJECT_CONFIGS: ""
  KBC_STORAGE_TOKEN: ${{ secrets.KBC_STORAGE_TOKEN }}

The new pipeline structure (keep as-is from the canonical template):

  • push_event_info — branch/tag detection, is_deploy_ready output (requires default branch + semantic tag)
  • build-test — builds --target test stage, uploads as *-test.tar artifact
  • tests — downloads test artifact, runs container (default CMD = pytest; ruff already ran at build time)
  • tests-kbc — runs KBC integration tests if KBC_TEST_PROJECT_CONFIGS and token are set
  • build-production — builds --target production stage after all tests pass, uploads as *.tar artifact
  • push — loads production artifact, pushes to ECR
  • deploy — sets tag in Developer Portal, only if is_deploy_ready == true
  • update_developer_portal_properties — runs scripts/developer_portal/update_properties.sh

Generate / verify lock file

uv add already updated uv.lock during Commit 1. Run this to ensure it's fully consistent:

uv sync --all-groups

Commit

git add Dockerfile scripts/ tests/ .github/workflows/
git commit -m "uv 💜"

Commit 3: ruff linting baseline 🎨

ruff format .
ruff check --fix .

Commit if any files changed:

git add src/ tests/
git commit -m "ruff linting baseline 🎨"

Phase 6: Cookiecutter Alignment Check

Use the Task tool to load the canonical template files:

  • subagent_type: component-developer:component-defaults
  • prompt: "Return the canonical Keboola component template files."

Then compare each of the following against the returned canonical versions:

Component fileCanonical
Dockerfilefrom component-defaults
.github/workflows/push.ymlfrom component-defaults
scripts/build_n_test.shfrom component-defaults
docker-compose.ymlfrom component-defaults
.pre-commit-config.yamlfrom component-defaults

Fix structural differences. Keep component-specific additions (custom apt packages, SSL certs, etc.). Create missing files from the canonical version (.pre-commit-config.yaml is often absent in old components).

git add Dockerfile scripts/ .github/workflows/ docker-compose.yml .pre-commit-config.yaml
git commit -m "align with cookiecutter template 🍪"

Verify

# Build and run tests (ruff runs at build time inside the test stage)
docker build --target test -t test-component .
docker run test-component

# Optionally verify the production image builds cleanly
docker build --target production -t prod-component .

Common Patterns

Dependency conversion:

requirements.txt          pyproject.toml
keboola.component==1.4.4  "keboola-component>=1.4.4"
mock                      "mock>=5.2.0"  (in dev group)

Ruff config (always use "UP" for pyupgrade):

[tool.ruff]
line-length = 120
target-version = "py313"

[tool.ruff.lint]
extend-select = ["I", "UP"]

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.08%
按下载量换算35

Claude

30.94%
按下载量换算32

Cursor

20.92%
按下载量换算22

Gemini CLI

9.01%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills