mirror of
https://git.openapi.site/https://github.com/desirecore/market.git
synced 2026-06-06 10:10:45 +08:00
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)
This commit is contained in:
@@ -31,7 +31,7 @@ esac
|
||||
|
||||
# ── DesireCore API ──────────────────────
|
||||
DESIRECORE_API=""
|
||||
PORT_FILE="$HOME/.desirecore/agent-service.port"
|
||||
PORT_FILE="${DESIRECORE_ROOT}/agent-service.port"
|
||||
if [ -r "$PORT_FILE" ]; then
|
||||
PORT=$(cat "$PORT_FILE" 2>/dev/null | tr -d '[:space:]')
|
||||
if [ -n "$PORT" ]; then
|
||||
@@ -46,7 +46,7 @@ SYS_NODE=$(detect_tool node)
|
||||
SYS_NPM=$(detect_tool npm)
|
||||
|
||||
# ── DesireCore Volta ────────────────────
|
||||
VOLTA_BIN="$HOME/.desirecore/runtime/volta/volta"
|
||||
VOLTA_BIN="${DESIRECORE_ROOT}/runtime/volta/volta"
|
||||
VOLTA_PATH=""
|
||||
VOLTA_VERSION=""
|
||||
if [ -x "$VOLTA_BIN" ]; then
|
||||
@@ -55,7 +55,7 @@ if [ -x "$VOLTA_BIN" ]; then
|
||||
fi
|
||||
|
||||
# Volta 已装工具(直接读 image 目录最稳)
|
||||
VOLTA_IMG="$HOME/.desirecore/runtime/volta/tools/image"
|
||||
VOLTA_IMG="${DESIRECORE_ROOT}/runtime/volta/tools/image"
|
||||
list_dir() {
|
||||
local dir="$1"
|
||||
if [ -d "$dir" ]; then
|
||||
|
||||
Reference in New Issue
Block a user