pypi-upload-dist
dist 配下の配布物(wheel / sdist)を PYPI_TOKEN で PyPI へアップロードするための手順を規定化したスキル。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
dist 配下の配布物(wheel / sdist)を PYPI_TOKEN で PyPI へアップロードするための手順を規定化したスキル。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
日本郵便の郵便料金(手紙・はがき・定形外・ゆうメール・速達・書留)を検索できるスキル。2025年11月改訂版データを組み込み。
uag 同梱の「プロンプトテンプレート集」を Agent Skills 形式で提供するスキル。 - 本スキルはツール実行スキルではなく、テンプレ文章(Markdown)を参照するための“ライブラリ”です。 - 旧 src/uagent/prompts 配下のテンプレートを移設しています。
新規ツール(Python + JSON)を生成し、i18n翻訳(全34ロケール)・ruff/black整形・py_compile検証まで一貫実行する。
Browser automation CLI for AI agents — Chrome/Chromium via CDP with accessibility-tree snapshots. Navigate, interact, extract, crawl, swarm, and loop. Covers every CLI command with decision trees and copy-paste templates.
batch_state を使う反復作業で、順番の崩れ・脱線・処理漏れを防ぐための実行用スキル。 状態を load/update しながら、1ステップずつ着実に処理する。
指定された地域のダミーの天気を返します。
| name | pypi-upload-dist |
| description | dist 配下の配布物(wheel / sdist)を PYPI_TOKEN で PyPI へアップロードするための手順を規定化したスキル。 |
| license | Apache-2.0 |
dist/ の配布物を PyPI にアップロードする。必須:
PYPI_TOKEN任意:
distdist/*.whl と dist/*.tar.gzdist/ にアップロード対象の成果物があることpython と twine が利用可能であることこのスキルは PyPI へ公開します。実行前に必ずユーザーへ確認し、 「実行して」 と返答された場合のみ続行する。
確認文(固定):
dist/ の成果物を PyPI にアップロードしますPYPI_TOKEN を使って公開しますdist/ に *.whl / *.tar.gz があることを確認する。Windows では進捗表示の文字化け回避のため、次を使う。
$env:TWINE_USERNAME='__token__'
$env:TWINE_PASSWORD=$env:PYPI_TOKEN
python -m twine upload --non-interactive --disable-progress-bar dist\*.whl dist\*.tar.gz
PYPI_TOKEN 未設定、または期限切れdist/ に成果物がないtwine の表示が Windows コンソールと合わない