- 高危词库从 process.py 抽到 config.toml [security] section - process.py 改为 _get_high_risk_words() 动态加载(配置优先) - 新增 15 个 QQ 操作脚本(已脱敏:QQ号/IP/Token → 占位符) - 新增 8 个 SKILL.md(qq-messenger/management/resolver/napcat-extras 等) - 新增 SKILL.md 入口(完整部署方案文档) - 保留 SDK 框架(plugin_modules.py, file_store_api.py, package.py 等)
9 lines
196 B
Python
9 lines
196 B
Python
#!/usr/bin/env python3
|
|
"""MC RCON 共享配置"""
|
|
|
|
RCON_HOST = "127.0.0.1"
|
|
RCON_PORT = 25575
|
|
RCON_PASSWORD = "233719"
|
|
MC_SERVER_DIR = "/home/minecraft"
|
|
PLAYTIME_DB = "/home/qqrebot/playtime.json"
|