principles-disciple 1.239.0 → 1.241.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/dist/bundle.js +595 -586
- package/dist/governance-audit.js +116 -116
- package/dist/openclaw.plugin.json +1 -1
- package/dist/rulehost-evidence.js +177 -177
- package/dist/types.d.ts +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export type { PluginCommandContext, PluginCommandResult } from './openclaw-sdk.js';
|
|
2
|
-
export type { ContextInjectionConfig,
|
|
2
|
+
export type { ContextInjectionConfig, ProjectFocusMode, } from '@principles/core';
|
|
3
3
|
/**
|
|
4
4
|
* Default context injection configuration
|
|
5
5
|
* Based on MVP-first strategy (ADR-0014):
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "principles-disciple",
|
|
3
3
|
"name": "Principles Disciple",
|
|
4
4
|
"description": "Principles Disciple is an AI Agent Governance System. Stop correcting the same AI behavior across sessions. Turn repeated Agent corrections into Owner-approved, observable, reversible behavior principles.",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.241.0",
|
|
6
6
|
"activation": {
|
|
7
7
|
"onStartup": true,
|
|
8
8
|
"onCapabilities": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "principles-disciple",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.241.0",
|
|
4
4
|
"description": "Principles Disciple is an AI Agent Governance System. Stop correcting the same AI behavior across sessions. Turn repeated Agent corrections into Owner-approved, observable, reversible behavior principles.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"build:types": "tsc --emitDeclarationOnly",
|
|
64
64
|
"prepack": "npm run build:production && npm run build:types",
|
|
65
65
|
"test": "vitest run",
|
|
66
|
-
"test:unit": "vitest run --config vitest.unit.config.ts tests/core tests/service tests/hooks tests/commands tests/utils tests/scripts
|
|
66
|
+
"test:unit": "vitest run --config vitest.unit.config.ts tests/core tests/service tests/hooks tests/commands tests/utils tests/scripts",
|
|
67
67
|
"test:integration": "vitest run tests/integration/",
|
|
68
68
|
"test:host-runtime-parity": "vitest run --config vitest.parity.config.ts tests/bdd/openclaw-shared-host-runtime-parity.steps.test.ts tests/package/published-host-runtime-bundle.test.ts",
|
|
69
69
|
"test:coverage": "vitest run --coverage",
|