principles-disciple 1.70.0 → 1.71.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 +2 -2
- package/src/hooks/prompt.ts +2 -2
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.71.0",
|
|
6
6
|
"skills": [
|
|
7
7
|
"templates/langs/en/skills",
|
|
8
8
|
"templates/langs/zh/skills"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "principles-disciple",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.71.0",
|
|
4
4
|
"description": "Native OpenClaw plugin for Principles Disciple",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/bundle.js",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@typescript-eslint/parser": "^8.58.0",
|
|
54
54
|
"@vitest/coverage-v8": "^4.1.0",
|
|
55
55
|
"esbuild": "^0.28.0",
|
|
56
|
-
"eslint": "^10.1
|
|
56
|
+
"eslint": "^10.2.1",
|
|
57
57
|
"jsdom": "^29.0.1",
|
|
58
58
|
"typescript": "^6.0.3",
|
|
59
59
|
"vitest": "^4.1.0",
|
package/src/hooks/prompt.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
2
|
|
|
3
3
|
import * as fs from 'fs';
|
|
4
4
|
import * as path from 'path';
|
|
@@ -721,7 +721,7 @@ The empathy observer subagent handles pain detection independently.
|
|
|
721
721
|
prependContext += `<heartbeat_checklist>
|
|
722
722
|
${heartbeatChecklist}
|
|
723
723
|
|
|
724
|
-
|
|
724
|
+
// HEARTBEAT_OK removed - tasks must always be processed
|
|
725
725
|
</heartbeat_checklist>\n`;
|
|
726
726
|
} catch (e) {
|
|
727
727
|
logger?.error(`[PD:Prompt] Failed to read HEARTBEAT: ${String(e)}`);
|