-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_manifest.json
More file actions
98 lines (98 loc) · 2.83 KB
/
_manifest.json
File metadata and controls
98 lines (98 loc) · 2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"manifest_version": 1,
"name": "Mai-Soul-Engine",
"version": "1.3.3",
"description": "Mai-Soul-Engine - 通过问卷初始化意识形态光谱,根据聊天内容动态演化,影响MaiBot的回复风格",
"author": {
"name": "CharTyr ",
"url": "https://github.com/CharTyr/Mai-Soul-Engine"
},
"host_application": {
"min_version": "0.12.0"
},
"license": "GPL-3.0-or-later",
"plugin_info": {
"components": [
{
"type": "command",
"name": "soul_setup",
"description": "初始化灵魂光谱问卷(管理员私聊)"
},
{
"type": "command",
"name": "soul_answer",
"description": "问卷答题:/soul_answer <1-5>(仅在问卷会话中生效)"
},
{
"type": "command",
"name": "soul_status",
"description": "查看当前意识形态光谱状态"
},
{
"type": "command",
"name": "soul_reset",
"description": "重置意识形态光谱"
},
{
"type": "command",
"name": "soul_seeds",
"description": "查看待审核的思维种子(管理员)"
},
{
"type": "command",
"name": "soul_approve",
"description": "批准思维种子内化(管理员)"
},
{
"type": "command",
"name": "soul_reject",
"description": "拒绝并删除思维种子(管理员)"
},
{
"type": "command",
"name": "soul_traits",
"description": "查看已固化的 traits(管理员,可按群过滤)"
},
{
"type": "command",
"name": "soul_trait_set_tags",
"description": "设置指定 trait 的 tags(管理员)"
},
{
"type": "command",
"name": "soul_trait_merge",
"description": "合并两个 trait(管理员)"
},
{
"type": "command",
"name": "soul_trait_disable",
"description": "禁用指定 trait(管理员)"
},
{
"type": "command",
"name": "soul_trait_enable",
"description": "启用指定 trait(管理员)"
},
{
"type": "command",
"name": "soul_trait_delete",
"description": "删除指定 trait(管理员,软删除)"
},
{
"type": "event_handler",
"name": "ideology_injector",
"description": "POST_LLM 事件处理器:把意识形态提示词注入到 prompt"
},
{
"type": "event_handler",
"name": "evolution_task",
"description": "周期性演化任务,分析聊天内容更新光谱"
},
{
"type": "event_handler",
"name": "notion_frontend_sync",
"description": "可选:同步 traits 与意识形态光谱到 Notion 数据库(公共展示前端)"
}
]
}
}