@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 +1 -1
- package/schema.sql +0 -1
- package/src/kernel/types.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stackbilt/aegis-core",
|
|
3
|
-
"version": "0.5.
|
|
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'))
|
package/src/kernel/types.ts
CHANGED