10 lines
454 B
Python
10 lines
454 B
Python
"""技能级常量。本地 CLI 默认值见 jiangchang_skill_core.runtime_env(main.py 最早调用 apply_cli_local_defaults)。"""
|
||
import os
|
||
|
||
# scripts/util/constants.py -> skill root = parents[2]
|
||
_BASE = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
||
BASE_DIR = _BASE
|
||
SKILL_SLUG = "account-manager"
|
||
# 与其它 OpenClaw 技能对齐:openclaw.skill.<slug_下划线>
|
||
LOG_LOGGER_NAME = "openclaw.skill.account_manager"
|