文件内容
scripts/_const.py
#!/usr/bin/env python
"""
商家重点品圈选全局常量
"""
import os
from pathlib import Path
# Skill 版本
SKILL_VERSION = "1.0.0"
# ── OpenClaw 配置文件路径──────────────────────────────────────────────────────
# 优先读取 OPENCLAW_CONFIG_DIR 环境变量,默认 ~/.openclaw
OPENCLAW_CONFIG_PATH: Path = Path(
os.environ.get("OPENCLAW_CONFIG_DIR", Path.home() / ".openclaw")
) / "openclaw.json"