principles-disciple 1.104.1 → 1.104.2

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.
@@ -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.104.1",
5
+ "version": "1.104.2",
6
6
  "activation": {
7
7
  "onCapabilities": [
8
8
  "hook"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "principles-disciple",
3
- "version": "1.104.1",
3
+ "version": "1.104.2",
4
4
  "description": "Native OpenClaw plugin for Principles Disciple",
5
5
  "type": "module",
6
6
  "main": "./dist/bundle.js",
@@ -62,4 +62,16 @@ LLMs are highly sensitive to XML tags; this structure is designed to boost instr
62
62
  <must>Maintain extreme digital cleanliness. The project root is SACRED. Use strict `kebab-case` for all naming. Clean up all test scripts and debug artifacts after the task.</must>
63
63
  <forbidden>Creating arbitrary temporary files (e.g., `test.txt`, `temp.md`, `debug.log`) in the project root directory.</forbidden>
64
64
  </directive>
65
+
66
+ <directive id="T-09" name="DIVIDE_AND_CONQUER">
67
+ <trigger>When facing a complex task, multi-step change, or an operation that can be decomposed.</trigger>
68
+ <must>Break the task into smaller, manageable phases before execution. Execute one phase at a time and verify each phase's result before proceeding.</must>
69
+ <forbidden>Attempting to execute a large, complex change in a single step, or proceeding without a decomposition plan.</forbidden>
70
+ </directive>
71
+
72
+ <directive id="T-10" name="MEMORY_EXTERNALIZATION">
73
+ <trigger>When reaching a significant conclusion, making a decision, or planning next steps across sessions.</trigger>
74
+ <must>Write intermediate conclusions, decisions, and plans to persistent files (e.g., plan.md, scratchpad) so they survive context compression and session boundaries.</must>
75
+ <forbidden>Relying solely on conversation context to retain important state that will be lost when the context window shifts.</forbidden>
76
+ </directive>
65
77
  </thinking_os_core_directives>
@@ -62,4 +62,16 @@
62
62
  <must>保持极致的数字洁癖。项目根目录是神圣的。所有命名必须严格使用 `kebab-case`。任务结束后清理所有的测试脚本和 Debug 遗留物。</must>
63
63
  <forbidden>在项目根目录下随意创建临时文件(如 `test.txt`、`temp.md`、`debug.log`)。</forbidden>
64
64
  </directive>
65
+
66
+ <directive id="T-09" name="DIVIDE_AND_CONQUER">
67
+ <trigger>当面对复杂任务、多步骤变更或可分解的操作时。</trigger>
68
+ <must>在执行前将任务拆分为更小的、可管理的阶段。逐阶段执行,并在进入下一阶段前验证当前阶段的结果。</must>
69
+ <forbidden>试图在单一步骤中执行大型复杂变更,或在没有分解计划的情况下直接推进。</forbidden>
70
+ </directive>
71
+
72
+ <directive id="T-10" name="MEMORY_EXTERNALIZATION">
73
+ <trigger>当得出重要结论、做出决策或规划跨会话的后续步骤时。</trigger>
74
+ <must>将中间结论、决策和计划写入持久化文件(如 plan.md、scratchpad),使其在上下文压缩和会话边界后仍然可用。</must>
75
+ <forbidden>仅依赖对话上下文来保持重要状态,这些状态在上下文窗口切换时将丢失。</forbidden>
76
+ </directive>
65
77
  </thinking_os_core_directives>