smithery.ai

add-python-package

**[src/api専用]** バックエンド(Python/FastAPI)にパッケージを追加する際に使用します。 開発用と、プロダクト用途問わずこれを使います。

First seen Apr 28, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,167 B
  • docs SUMMARY.md 212 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

パッケージ追加スキル

このスキルは、uvを使ってプロジェクトにパッケージを追加する正しい方法を提供します。

Instructions

  1. まず、カレントディレクトリがsrc/apiであることを確認します。
  2. uv add <package-name> コマンドでパッケージを追加する

- 通常の依存パッケージ: uv add <package-name> - 開発用依存パッケージ: uv add -D <package-name>

  1. パッケージ追加後、pyproject.toml にパッケージが追加されていることを確認する
  2. uv.lock が更新されていることを確認する

注意事項

⚠️ pyproject.tomlを直接編集しないでください

パッケージを追加する際は、必ず uv add コマンドを使用してください。pyproject.tomlを直接編集すると、uv.lockが更新されず、依存関係の整合性が失われます。