principles-disciple 1.7.2 → 1.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/openclaw.plugin.json +12 -13
- package/package.json +1 -1
package/openclaw.plugin.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
{
|
|
2
2
|
"id": "principles-disciple",
|
|
3
3
|
"name": "Principles Disciple",
|
|
4
4
|
"description": "Evolutionary programming agent framework with strategic guardrails and reflection loops.",
|
|
5
|
-
"version": "1.7.
|
|
5
|
+
"version": "1.7.3",
|
|
6
6
|
"skills": [
|
|
7
7
|
"./skills"
|
|
8
8
|
],
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"zh"
|
|
18
18
|
],
|
|
19
19
|
"default": "zh",
|
|
20
|
-
"description": "
|
|
20
|
+
"description": "系统提示词和交互语言 (默认推荐: zh)"
|
|
21
21
|
},
|
|
22
22
|
"auditLevel": {
|
|
23
23
|
"type": "string",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"high"
|
|
28
28
|
],
|
|
29
29
|
"default": "medium",
|
|
30
|
-
"description": "
|
|
30
|
+
"description": "安全防爆级别:\n- low: 极客模式,几乎不拦截,AI 可以自由飞翔。\n- medium (推荐): 平衡模式,允许 AI 大胆尝试,但拦截毁灭性操作。\n- high: 严格模式,所有大范围修改都需要你明确授权。"
|
|
31
31
|
},
|
|
32
32
|
"riskPaths": {
|
|
33
33
|
"type": "array",
|
|
@@ -35,17 +35,17 @@
|
|
|
35
35
|
"type": "string"
|
|
36
36
|
},
|
|
37
37
|
"default": [],
|
|
38
|
-
"description": "
|
|
38
|
+
"description": "自定义高危目录(例如 .git/, prod_db/)。AI 试图修改这些目录前,将被强制拦截并要求出具安全计划。"
|
|
39
39
|
},
|
|
40
40
|
"deep_reflection": {
|
|
41
41
|
"type": "object",
|
|
42
42
|
"additionalProperties": false,
|
|
43
|
-
"description": "
|
|
43
|
+
"description": "当 AI 遇到复杂问题或连续报错时,是否允许它停下来进行深度自我反思?",
|
|
44
44
|
"properties": {
|
|
45
45
|
"enabled": {
|
|
46
46
|
"type": "boolean",
|
|
47
47
|
"default": true,
|
|
48
|
-
"description": "
|
|
48
|
+
"description": "开启 AI 深度反思功能"
|
|
49
49
|
},
|
|
50
50
|
"mode": {
|
|
51
51
|
"type": "string",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"forced"
|
|
55
55
|
],
|
|
56
56
|
"default": "auto",
|
|
57
|
-
"description": "auto:
|
|
57
|
+
"description": "auto: 遇到困难自动触发; forced: 每次回答前都强制反思 (极耗时间,不推荐)"
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
60
|
}
|
|
@@ -62,18 +62,17 @@
|
|
|
62
62
|
},
|
|
63
63
|
"uiHints": {
|
|
64
64
|
"language": {
|
|
65
|
-
"label": "
|
|
65
|
+
"label": "交互语言"
|
|
66
66
|
},
|
|
67
67
|
"auditLevel": {
|
|
68
|
-
"label": "
|
|
68
|
+
"label": "防爆拦截级别",
|
|
69
69
|
"placeholder": "medium"
|
|
70
70
|
},
|
|
71
71
|
"riskPaths": {
|
|
72
|
-
"label": "
|
|
72
|
+
"label": "⚠️ 绝对高危目录 (空表示不设限)"
|
|
73
73
|
},
|
|
74
74
|
"deep_reflection": {
|
|
75
|
-
"label": "
|
|
75
|
+
"label": "💡 AI 深度反思功能"
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
|
-
|