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

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.91",
3
+ "version": "2.0.0-alpha.92",
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.91",
933
+ "@elizaos/core": "^2.0.0-alpha.92",
934
934
  "@elizaos/plugin-agent-orchestrator": "0.3.15",
935
935
  "@elizaos/plugin-agent-skills": "alpha",
936
936
  "@elizaos/plugin-anthropic": "alpha",
@@ -8,9 +8,6 @@
8
8
  import { AgentEventService } from "@elizaos/core";
9
9
  import { emoteAction } from "../actions/emote";
10
10
  import { restartAction } from "../actions/restart";
11
- import { sendMessageAction } from "../actions/send-message";
12
- import { goLiveAction, goOfflineAction, manageOverlayWidgetAction, setStreamDestinationAction, speakOnStreamAction, } from "../actions/stream-control";
13
- import { switchStreamSourceAction } from "../actions/switch-stream-source";
14
11
  import { terminalAction } from "../actions/terminal";
15
12
  import { adminTrustProvider } from "../providers/admin-trust";
16
13
  import { createSessionKeyProvider } from "../providers/session-bridge";
@@ -87,21 +84,21 @@ export function createElizaPlugin(config) {
87
84
  providers: [
88
85
  ...baseProviders,
89
86
  uiCatalogProvider,
90
- customActionsProvider,
87
+ // customActionsProvider,
91
88
  ],
92
89
  actions: [
93
90
  restartAction,
94
- sendMessageAction,
91
+ // sendMessageAction,
95
92
  terminalAction,
96
93
  createTriggerTaskAction,
97
94
  emoteAction,
98
- switchStreamSourceAction,
99
- goLiveAction,
100
- goOfflineAction,
101
- setStreamDestinationAction,
102
- speakOnStreamAction,
103
- manageOverlayWidgetAction,
104
- ...loadCustomActions(),
95
+ // switchStreamSourceAction,
96
+ // goLiveAction,
97
+ // goOfflineAction,
98
+ // setStreamDestinationAction,
99
+ // speakOnStreamAction,
100
+ // manageOverlayWidgetAction,
101
+ // ...loadCustomActions(),
105
102
  ],
106
103
  };
107
104
  return plugin;