principles-disciple 1.17.0 → 1.18.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/nocturnal-compliance.ts +1 -0
- package/src/core/nocturnal-trinity.ts +463 -140
- package/src/service/evolution-worker.ts +13 -6
- package/src/service/nocturnal-target-selector.ts +9 -2
- package/templates/langs/zh/skills/ai-sprint-orchestration/references/specs/nocturnal-trinity-quality-enhancement.json +111 -0
- package/templates/langs/zh/skills/ai-sprint-orchestration/scripts/lib/task-specs.mjs +1 -1
- package/templates/langs/zh/skills/ai-sprint-orchestration/scripts/run.mjs +1 -1
- package/tests/service/evolution-worker.nocturnal.test.ts +0 -547
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -558,6 +558,7 @@ export function detectViolation(principleId: string, session: SessionEvents): Vi
|
|
|
558
558
|
case 'T-09':
|
|
559
559
|
return detectT09Violation(session);
|
|
560
560
|
default:
|
|
561
|
+
console.warn(`[PD:Compliance] Unknown principle ID: ${principleId} — treating as no violation. Check for typos (P-001 vs P_001).`);
|
|
561
562
|
return { violated: false, reason: `Unknown principle: ${principleId}` };
|
|
562
563
|
}
|
|
563
564
|
}
|