feat: 添加积分查询插件,提供用户积分查询相关命令

- 新增积分查询插件,包含我的积分、积分查询、积分排行和积分历史查询命令
- 支持群组和私聊场景,排行榜功能仅限群组使用
- 实现用户显示名称优先级(群昵称 > 昵称 > 用户ID)
- 添加详细的帮助文档和使用说明
This commit is contained in:
2026-04-06 23:45:05 +08:00
parent 5979f0c501
commit 889cfc799b
4 changed files with 257 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
from pydantic import BaseModel
class Config(BaseModel):
"""Configuration for danding_points_query plugin."""
pass