@stackbilt/aegis-core 0.6.0 → 0.6.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.6.0",
3
+ "version": "0.6.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": {
@@ -36,8 +36,10 @@ const EXECUTOR_ATTACHMENTS: Record<Executor, readonly BlockId[]> = {
36
36
  gpt_oss: ['identity', 'operator_profile', 'operating_rules'],
37
37
  groq: CORE_BLOCKS,
38
38
  workers_ai: MINIMAL_BLOCKS,
39
- direct: [],
40
- tarotscript: [],
39
+ direct: [],
40
+ tarotscript: [],
41
+ cerebras_mid: CORE_BLOCKS,
42
+ cerebras_reasoning: CORE_BLOCKS,
41
43
  };
42
44
 
43
45
  // ─── CRUD ────────────────────────────────────────────────────
@@ -88,7 +88,7 @@ export interface MemoryEntry {
88
88
 
89
89
  // ─── Execution Plan ──────────────────────────────────────────
90
90
 
91
- export type Executor = 'claude' | 'groq' | 'direct' | 'claude_code' | 'workers_ai' | 'claude_opus' | 'gpt_oss' | 'composite' | 'tarotscript';
91
+ export type Executor = 'claude' | 'groq' | 'direct' | 'claude_code' | 'workers_ai' | 'claude_opus' | 'gpt_oss' | 'composite' | 'tarotscript' | 'cerebras_mid' | 'cerebras_reasoning';
92
92
 
93
93
  export interface ExecutionPlan {
94
94
  executor: Executor;