Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 08:27:52 +08:00
commit 9f3154ea51
4 changed files with 81 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{
"name": "python-dev",
"description": "Python Development Assistant",
"version": "0.1.0",
"author": {
"name": "Jean-Marc Fontaine"
},
"skills": [
"./skills"
]
}

3
README.md Normal file
View File

@@ -0,0 +1,3 @@
# python-dev
Python Development Assistant

45
plugin.lock.json Normal file
View File

@@ -0,0 +1,45 @@
{
"$schema": "internal://schemas/plugin.lock.v1.json",
"pluginId": "gh:jmfontaine/jmf-claude-code-plugins:python-dev",
"normalized": {
"repo": null,
"ref": "refs/tags/v20251128.0",
"commit": "5406ed8b724262bb24c7d7f05829b6b68bff6198",
"treeHash": "178a46b8d065fadd94bb41de49ddc0ae5041c419208d2768b0ceccd528d6ca9d",
"generatedAt": "2025-11-28T10:19:16.798657Z",
"toolVersion": "publish_plugins.py@0.2.0"
},
"origin": {
"remote": "git@github.com:zhongweili/42plugin-data.git",
"branch": "master",
"commit": "aa1497ed0949fd50e99e70d6324a29c5b34f9390",
"repoRoot": "/Users/zhongweili/projects/openmind/42plugin-data"
},
"manifest": {
"name": "python-dev",
"description": "Python Development Assistant",
"version": "0.1.0"
},
"content": {
"files": [
{
"path": "README.md",
"sha256": "f43d8b560c7ab628d9ba72f2588803d75726c0083cca280451609eb69abce8e7"
},
{
"path": ".claude-plugin/plugin.json",
"sha256": "c625d3dc5b6dd9a1fca3e61a4451c2ed3a5ccf0719421e9aeedd321f54597b49"
},
{
"path": "skills/managing-packages-with-uv/SKILL.md",
"sha256": "58fd1d583f47ad75755d414643eb18bab5eaadd2a659e16abc737932e9621d50"
}
],
"dirSha256": "178a46b8d065fadd94bb41de49ddc0ae5041c419208d2768b0ceccd528d6ca9d"
},
"security": {
"scannedAt": null,
"scannerVersion": null,
"flags": []
}
}

View File

@@ -0,0 +1,22 @@
---
description: Manages Python packages with uv. Use when you need to add or remove, or set the version of a Python package.
name: Managing Python packages with uv
---
# Managing Python Packages with uv
Always use the `uv` command to manage Python packages:
```shell
uv add <package name> # Add package to the project and install it
uv remove <package name> # Remove package from the project
uv sync --upgrade # Upgrade all packages to their latest acceptable versions
uv sync --upgrade-package <package name> # Upgrade specific package to its latest acceptable version
```
All the commands above accept the optional `--group <group>` option to specify a group (e.g., dev, test).
If `uv` is not available, mention that it is required, share the
[link to the documentation](https://docs.astral.sh/uv/#installation), and stop.
Do not modify the `pyproject.toml` file directly. Use `uv` instead.