@elizaos/agent 2.0.0-alpha.90 → 2.0.0-alpha.91

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": "@elizaos/agent",
3
- "version": "2.0.0-alpha.90",
3
+ "version": "2.0.0-alpha.91",
4
4
  "description": "Standalone elizaOS-based agent and backend server package.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -930,7 +930,7 @@
930
930
  },
931
931
  "dependencies": {
932
932
  "@clack/prompts": "^1.0.0",
933
- "@elizaos/core": "^2.0.0-alpha.90",
933
+ "@elizaos/core": "^2.0.0-alpha.91",
934
934
  "@elizaos/plugin-agent-orchestrator": "0.3.15",
935
935
  "@elizaos/plugin-agent-skills": "alpha",
936
936
  "@elizaos/plugin-anthropic": "alpha",
@@ -8,20 +8,20 @@
8
8
  export const CORE_PLUGINS = [
9
9
  "@elizaos/plugin-sql", // database adapter — required
10
10
  "@elizaos/plugin-local-embedding", // local embeddings — required for memory
11
- "@elizaos/plugin-secrets-manager", // secrets management — load early, other plugins depend on it
12
11
  "@elizaos/plugin-form", // form handling for guided user journeys
13
12
  "@elizaos/plugin-knowledge", // RAG knowledge management — required for knowledge tab
14
- "@elizaos/plugin-rolodex", // contact graph and relationship/social memory
15
13
  "@elizaos/plugin-trajectory-logger", // trajectory logging for debugging and RL training
16
14
  "@elizaos/plugin-agent-orchestrator", // multi-agent orchestration (PTY, SwarmCoordinator, workspace provisioning)
17
15
  "@elizaos/plugin-cron", // scheduled jobs and automation
18
16
  "@elizaos/plugin-shell", // shell command execution
19
- "@elizaos/plugin-plugin-manager", // dynamic plugin management
20
17
  "@elizaos/plugin-agent-skills", // skill execution and marketplace runtime
21
- "@elizaos/plugin-trust", // trust scoring and policy signals
22
- "@elizaos/plugin-todo", // todo/task management
23
- "@elizaos/plugin-personality", // personality coherence
24
- "@elizaos/plugin-experience", // learning from interactions
18
+ // "@elizaos/plugin-secrets-manager", // secrets management load early, other plugins depend on it
19
+ // "@elizaos/plugin-rolodex", // contact graph and relationship/social memory
20
+ // "@elizaos/plugin-plugin-manager", // dynamic plugin management
21
+ // "@elizaos/plugin-trust", // trust scoring and policy signals
22
+ // "@elizaos/plugin-todo", // todo/task management
23
+ // "@elizaos/plugin-personality", // personality coherence
24
+ // "@elizaos/plugin-experience", // learning from interactions
25
25
  ];
26
26
  /**
27
27
  * Plugins that can be enabled from the admin panel.