@stackbilt/aegis-core 0.5.0 → 0.5.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackbilt/aegis-core",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Persistent AI agent framework for Cloudflare Workers. Multi-tier memory, autonomous goals, dreaming cycles, MCP native.",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
package/schema.sql CHANGED
@@ -65,7 +65,6 @@ CREATE TABLE IF NOT EXISTS episodic_memory (
65
65
  reclassified INTEGER NOT NULL DEFAULT 0,
66
66
  thread_id TEXT, -- conversation thread for dreaming cycle
67
67
  executor TEXT, -- which executor handled this
68
- court_card TEXT, -- composite court card (king/queen/knight/page)
69
68
  complexity_tier TEXT, -- aegis#563: procedureKey complement (low|mid|high); NULL for non-dispatcher producers
70
69
  executor_config TEXT, -- aegis#563: config snapshot at emit time (evaluator-replay fidelity)
71
70
  created_at TEXT NOT NULL DEFAULT (datetime('now'))
@@ -38,7 +38,6 @@ export interface EpisodicEntry {
38
38
  reclassified?: boolean;
39
39
  thread_id?: string | null;
40
40
  executor?: string | null;
41
- court_card?: string | null;
42
41
  complexity_tier?: string | null;
43
42
  executor_config?: string | null;
44
43
  created_at?: string;