principles-disciple 1.105.0 → 1.106.0
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 +1 -1
- package/package.json +1 -1
- package/src/core/init.ts +1 -1
- package/src/core/thinking-models.ts +1 -1
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
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.
|
|
5
|
+
"version": "1.106.0",
|
|
6
6
|
"activation": {
|
|
7
7
|
"onCapabilities": [
|
|
8
8
|
"hook"
|
package/package.json
CHANGED
package/src/core/init.ts
CHANGED
|
@@ -209,7 +209,7 @@ function getFallbackName(id: string): string {
|
|
|
209
209
|
|
|
210
210
|
function getFallbackDescription(id: string): string {
|
|
211
211
|
const entry = CORE_PRINCIPLES.find(p => p.id === id);
|
|
212
|
-
return entry?.
|
|
212
|
+
return entry?.statement ?? '';
|
|
213
213
|
}
|
|
214
214
|
|
|
215
215
|
// ---------------------------------------------------------------------------
|