principles-disciple 1.154.0 → 1.156.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.
Files changed (29) hide show
  1. package/dist/core/control-ui-db.d.ts +11 -0
  2. package/dist/core/control-ui-db.js +40 -16
  3. package/dist/core/trajectory.d.ts +16 -0
  4. package/dist/core/trajectory.js +343 -254
  5. package/dist/index.d.ts +2 -0
  6. package/dist/index.js +5 -0
  7. package/dist/service/subagent-workflow/workflow-store.d.ts +14 -0
  8. package/dist/service/subagent-workflow/workflow-store.js +91 -2
  9. package/openclaw.plugin.json +1 -1
  10. package/package.json +7 -3
  11. package/dist/core/schema/db-types.d.ts +0 -11
  12. package/dist/core/schema/db-types.js +0 -5
  13. package/dist/core/schema/index.d.ts +0 -17
  14. package/dist/core/schema/index.js +0 -15
  15. package/dist/core/schema/migration-runner.d.ts +0 -53
  16. package/dist/core/schema/migration-runner.js +0 -170
  17. package/dist/core/schema/migrations/001-init-trajectory.d.ts +0 -6
  18. package/dist/core/schema/migrations/001-init-trajectory.js +0 -190
  19. package/dist/core/schema/migrations/002-init-central.d.ts +0 -5
  20. package/dist/core/schema/migrations/002-init-central.js +0 -108
  21. package/dist/core/schema/migrations/003-init-workflow.d.ts +0 -5
  22. package/dist/core/schema/migrations/003-init-workflow.js +0 -50
  23. package/dist/core/schema/migrations/004-add-thinking-and-gfi.d.ts +0 -8
  24. package/dist/core/schema/migrations/004-add-thinking-and-gfi.js +0 -66
  25. package/dist/core/schema/migrations/index.d.ts +0 -16
  26. package/dist/core/schema/migrations/index.js +0 -27
  27. package/dist/core/schema/schema-definitions.d.ts +0 -46
  28. package/dist/core/schema/schema-definitions.js +0 -599
  29. package/scripts/db-migrate.mjs +0 -170
@@ -1,170 +0,0 @@
1
- #!/usr/bin/env node
2
-
3
- /**
4
- * Database Migration CLI
5
- *
6
- * Usage:
7
- * node scripts/db-migrate.mjs status # Show migration status
8
- * node scripts/db-migrate.mjs run [--db trajectory.db|central.db|workflow.db]
9
- * node scripts/db-migrate.mjs rollback [--db trajectory.db|central.db|workflow.db]
10
- */
11
-
12
- import { Database } from 'better-sqlite3';
13
- import { join } from 'path';
14
- import { fileURLToPath } from 'url';
15
- import { dirname } from 'path';
16
-
17
- const __filename = fileURLToPath(import.meta.url);
18
- const __dirname = dirname(__filename);
19
-
20
- // Resolve paths
21
- const PROJECT_ROOT = join(__dirname, '..');
22
- const STATE_DIR = process.env.STATE_DIR || join(PROJECT_ROOT, '..', '.state');
23
-
24
- // We need to dynamically import the schema module since it's TypeScript
25
- // For CLI, we'll use the compiled JS version
26
- async function run() {
27
- let SchemaModule;
28
- try {
29
- SchemaModule = await import('../dist/core/schema/index.js');
30
- } catch {
31
- // Try running from source with tsx
32
- console.error('Schema module not found in dist/. Running from source...');
33
- console.error('Please build the plugin first: node esbuild.config.js --production');
34
- process.exit(1);
35
- }
36
-
37
- const { MigrationRunner, ensureDatabaseSchema, ALL_MIGRATIONS, DB_TYPES } = SchemaModule;
38
-
39
- const args = process.argv.slice(2);
40
- const command = args[0];
41
-
42
- if (!command || command === '--help' || command === '-h') {
43
- console.log(`
44
- Database Migration CLI
45
-
46
- Usage:
47
- node scripts/db-migrate.mjs status Show migration status for all databases
48
- node scripts/db-migrate.mjs run [--db <db>] Run pending migrations
49
- node scripts/db-migrate.mjs rollback [--db <db>] Rollback latest migration
50
-
51
- Options:
52
- --db <db> Target database: trajectory.db, central.db, or workflow.db
53
- (default: all databases)
54
- --state-dir Override state directory (default: .state/)
55
-
56
- Examples:
57
- node scripts/db-migrate.mjs status
58
- node scripts/db-migrate.mjs run --db trajectory.db
59
- node scripts/db-migrate.mjs rollback --db central.db
60
- `);
61
- return;
62
- }
63
-
64
- const dbFlag = args.indexOf('--db');
65
- const targetDb = dbFlag >= 0 ? args[dbFlag + 1] : null;
66
-
67
- const dbs = targetDb ? [targetDb] : DB_TYPES;
68
-
69
- for (const dbType of dbs) {
70
- if (!DB_TYPES.includes(dbType)) {
71
- console.error(`Unknown database: ${dbType}. Valid options: ${DB_TYPES.join(', ')}`);
72
- continue;
73
- }
74
-
75
- const dbPath = getDbPath(dbType);
76
- const db = new Database(dbPath);
77
-
78
- console.log(`\n=== ${dbType} (${dbPath}) ===`);
79
-
80
- switch (command) {
81
- case 'status':
82
- showStatus(db, dbType, ALL_MIGRATIONS, MigrationRunner);
83
- break;
84
- case 'run':
85
- runMigrations(db, dbType, ALL_MIGRATIONS, MigrationRunner);
86
- break;
87
- case 'rollback':
88
- rollbackMigration(db, dbType, ALL_MIGRATIONS, MigrationRunner);
89
- break;
90
- case 'ensure':
91
- console.log('Ensuring schema...');
92
- ensureDatabaseSchema(db, dbType);
93
- console.log('Schema ensured.');
94
- break;
95
- default:
96
- console.error(`Unknown command: ${command}`);
97
- }
98
-
99
- db.close();
100
- }
101
- }
102
-
103
- function getDbPath(dbType) {
104
- switch (dbType) {
105
- case 'trajectory.db':
106
- return join(STATE_DIR, 'trajectory.db');
107
- case 'central.db':
108
- return join(process.env.HOME, '.openclaw', '.central', 'aggregated.db');
109
- case 'workflow.db':
110
- return join(STATE_DIR, 'subagent_workflows.db');
111
- default:
112
- throw new Error(`Unknown database type: ${dbType}`);
113
- }
114
- }
115
-
116
- function showStatus(db, dbType, migrations, Runner) {
117
- const runner = new Runner(db);
118
- const current = runner.getCurrentVersion();
119
- const info = runner.getMigrationInfo(migrations, dbType);
120
-
121
- console.log(`Current version: ${current}`);
122
- console.log('');
123
-
124
- for (const m of info) {
125
- const status = m.applied ? '✅' : '⏳';
126
- console.log(` ${status} ${m.id}-${m.name}`);
127
- }
128
-
129
- if (info.length === 0) {
130
- console.log(' No migrations defined for this database.');
131
- }
132
- }
133
-
134
- function runMigrations(db, dbType, migrations, Runner) {
135
- const runner = new Runner(db);
136
-
137
- // First ensure base schema
138
- console.log('Applying schema catalog...');
139
- runner.applySchemaCatalog(dbType);
140
-
141
- // Then run any additional migrations
142
- const dbMigrations = migrations.filter(m => m.db === dbType);
143
- if (dbMigrations.length > 0) {
144
- const applied = runner.runMigrations(dbMigrations, dbType);
145
- if (applied.length === 0) {
146
- console.log('All migrations already applied.');
147
- }
148
- }
149
-
150
- showStatus(db, dbType, migrations, Runner);
151
- }
152
-
153
- function rollbackMigration(db, dbType, migrations, Runner) {
154
- const runner = new Runner(db);
155
- const dbMigrations = migrations.filter(m => m.db === dbType);
156
- const rolledBack = runner.rollback(dbMigrations, dbType);
157
-
158
- if (rolledBack) {
159
- console.log(`Rolled back migration ${rolledBack}`);
160
- } else {
161
- console.log('No migrations to roll back.');
162
- }
163
-
164
- showStatus(db, dbType, migrations, Runner);
165
- }
166
-
167
- run().catch(err => {
168
- console.error('Migration CLI error:', err);
169
- process.exit(1);
170
- });