@minus-ai/create-skill 0.1.0-beta.12 → 0.1.0-beta.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minus-ai/create-skill",
3
- "version": "0.1.0-beta.12",
3
+ "version": "0.1.0-beta.13",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "create-skill": "index.mjs"
@@ -45,7 +45,7 @@ pnpm install
45
45
  ```bash
46
46
  uv venv .venv
47
47
  source .venv/bin/activate # Windows: .venv\Scripts\activate
48
- uv pip install -e .
48
+ uv pip install -e . --reinstall-package minus-ai-sdk-python
49
49
  ```
50
50
 
51
51
  ## 配置
@@ -11,3 +11,7 @@ dependencies = [
11
11
 
12
12
  [tool.setuptools]
13
13
  py-modules = ["pipeline", "server"]
14
+
15
+ [tool.uv]
16
+ # SDK wheel 可能在同一版本号下更新过,安装时绕过本地缓存强制重新下载
17
+ reinstall-package = ["minus-ai-sdk-python"]