Files
market/skills/python-runtime/SKILL.zh-CN.md
xyx 4f7037a6b6 fix: replace hardcoded ~/.desirecore paths with ${DESIRECORE_ROOT} variable (#16)
## Summary

- 将所有技能文件中的硬编码 `~/.desirecore/` 和 `$HOME/.desirecore/` 路径替换为
`${DESIRECORE_ROOT}/` 变量
- 递增 manifest.json version 至 1.2.1

## Why

dev 模式下 `DESIRECORE_HOME=~/.desirecore-dev`,硬编码路径导致技能读取错误的端口文件和目录。主仓库的
`variable-substitutor.ts` 会在运行时将 `${DESIRECORE_ROOT}` 替换为实际根目录。

## Test plan

- [ ] `npm run dev` 启动后触发任意技能,确认端口路径解析为
`~/.desirecore-dev/agent-service.port`
- [ ] prod 模式确认路径为 `~/.desirecore/agent-service.port`

🤖 Generated with [Claude Code](https://claude.com/claude-code)
2026-05-29 15:36:19 +08:00

5.0 KiB
Raw Permalink Blame History

python-runtime 技能

L0一句话摘要

何时使用:用户需要 安装 Python / 升级 Python / 切换 Python 多版本 / 配置 pip / 创建虚拟环境venv / pipx / conda/ 排查 python: command not foundpip: command not found、PEP 668 "externally-managed"、SSL 证书、import 失败、 PATH 异常 等 Python 运行时问题,或其他 skilldocx / pdf / xlsx / pptx报告 "Python 不可用" 时。

怎么做:优先使用 DesireCore 内置 Hatch按四级降级HTTP API → Hatch CLI → 系统包管理器 brew/apt/dnf/winget → 社区方案 pyenv执行。

L1概述与使用场景

能力描述

procedural skill。每次执行 Python 环境操作前,先运行 scripts/probe-python.sh 取 JSON 快照,再按 references/decision-tree(→ ../dev-environment-setup/references/decision-tree.md)四级降级选择路径。

使用场景

  • "python not found" / "pip not found"
  • 用户要求安装/升级 Python
  • 用户要求多版本管理3.10/3.11/3.12 切换)
  • 创建/激活/调试虚拟环境venv/pipx/conda
  • "externally-managed-environment"PEP 668报错
  • import 失败、PATH 问题、SSL 证书错误
  • 其他 skilldocx/pdf/xlsx/pptx报告 Python 不可用

核心价值

  • DesireCore 优先Hatch + HTTP API 作为强制 L1/L2避免污染系统 Python
  • JSON 决策probe 脚本输出结构化数据Claude 可直接解析
  • 跨平台一致macOS / Linux / Windows 统一 4 级降级

L2详细规范

第一步:环境探测(必须)

bash skills/python-runtime/scripts/probe-python.sh > /tmp/py-probe.json
cat /tmp/py-probe.json | jq .

输出字段含义见 ../dev-environment-setup/references/probe-snapshot.md

第二步:选择执行路径

../dev-environment-setup/references/decision-tree.md 判断:

条件 路径
desirecore_api 非空 L1 HTTP API
desirecore_api 空,hatch_path 非空 L2 Hatch CLI
上述都不满足 L3 系统包管理器brew/apt/dnf/winget
L1L3 全部失败或用户明示 L4 社区方案pyenv

第三步:执行(仅展示主路径,详见各 references

L1HTTP APIreferences/hatch-desirecore.md

PORT=$(cat ${DESIRECORE_ROOT}/agent-service.port)
BASE="https://127.0.0.1:${PORT}/api/runtime"

# 列出可装版本
curl -sk "${BASE}/python/available"

# 触发安装(异步,订阅 runtime:terminal 看进度)
curl -sk -X POST "${BASE}/python/install" \
  -H "Content-Type: application/json" \
  -d '{"version":"3.12"}'

# 安装完成后强制刷新缓存
curl -sk -X POST "${BASE}/environment/refresh"

L2Hatch CLI 绝对路径(→ references/hatch-desirecore.md

HATCH=${DESIRECORE_ROOT}/runtime/hatch/hatch
export HATCH_HOME=${DESIRECORE_ROOT}/runtime/hatch

"$HATCH" python install 3.12
"$HATCH" python show           # 列出已安装/可装版本

# 直接使用 Hatch 安装的 Python
${DESIRECORE_ROOT}/runtime/hatch/local/3.12/python/bin/python3 -m venv .venv

Windows%USERPROFILE%\.desirecore\runtime\hatch\hatch.exe

L3系统包管理器

平台 命令
macOS brew install python3
Debian/Ubuntu sudo apt install python3 python3-pip python3-venv
Fedora/RHEL sudo dnf install python3 python3-pip
Arch sudo pacman -S python python-pip
Windows winget install Python.Python.3

L4pyenvreferences/pyenv-fallback.md

仅在用户明示或上述失败时启用。

第四步:虚拟环境

虚拟环境策略详见 references/virtualenv.md

  • venv推荐标准库
  • pipx全局 CLI 工具如 black/ruff/markitdown
  • conda / miniconda数据科学场景

第五步:故障排查

报错时按 references/troubleshooting.md 查表:

  • "python: command not found" / "pip: command not found"
  • PEP 668 "externally-managed-environment"
  • SSL/TLS 证书错误
  • import 失败(包名 vs import 名差异)
  • macOS xcrun / Xcode CLI 缺失
  • Windows PowerShell 执行策略阻止脚本
  • 代理环境配置

重要约束

  1. 绝不 sudo pip install:始终用虚拟环境或 pipx
  2. 修改了环境后必须刷新L1 调 POST /api/runtime/environment/refreshL2/L3/L4 重新跑 probe。
  3. 跨 skill 协作docx / pdf / xlsx / pptx 报"Python 不可用"时,进入 L1/L2 安装;办公依赖速查见 ../dev-environment-setup/references/office-deps.md
  4. 不污染系统 Python:项目级别一律使用 venv全局 CLI 用 pipx。

引用关系

  • 决策树:../dev-environment-setup/references/decision-tree.md
  • DesireCore 底座:../dev-environment-setup/references/desirecore-runtime.md
  • 探测协议:../dev-environment-setup/references/probe-snapshot.md
  • 办公依赖:../dev-environment-setup/references/office-deps.md
  • 系统工具:../dev-environment-setup/references/system-tools.md