@@ -142,10 +142,6 @@ function tryLoadFile(filePath: string): string | null {
142
142
}
143
143
}
144
144
145
- function isAllStrings ( arr : unknown [ ] ) : boolean {
146
- return Array . isArray ( arr ) && arr . every ( ( item ) => typeof item === "string" ) ;
147
- }
148
-
149
145
export async function loadCharacters (
150
146
charactersArg : string
151
147
) : Promise < Character [ ] > {
@@ -231,16 +227,9 @@ export async function loadCharacters(
231
227
}
232
228
233
229
// Handle plugins
234
- if ( isAllStrings ( character . plugins ) ) {
235
- elizaLogger . info ( "Plugins are: " , character . plugins ) ;
236
- const importedPlugins = await Promise . all (
237
- character . plugins . map ( async ( plugin ) => {
238
- const importedPlugin = await import ( plugin ) ;
239
- return importedPlugin . default ;
240
- } )
241
- ) ;
242
- character . plugins = importedPlugins ;
243
- }
230
+ character . plugins = await handlePluginImporting (
231
+ character . plugins
232
+ ) ;
244
233
245
234
loadedCharacters . push ( character ) ;
246
235
elizaLogger . info (
@@ -263,6 +252,36 @@ export async function loadCharacters(
263
252
return loadedCharacters ;
264
253
}
265
254
255
+ async function handlePluginImporting ( plugins : string [ ] ) {
256
+ if ( plugins . length > 0 ) {
257
+ elizaLogger . info ( "Plugins are: " , plugins ) ;
258
+ const importedPlugins = await Promise . all (
259
+ plugins . map ( async ( plugin ) => {
260
+ try {
261
+ const importedPlugin = await import ( plugin ) ;
262
+ const functionName =
263
+ plugin
264
+ . replace ( "@elizaos/plugin-" , "" )
265
+ . replace ( / - ./ g, ( x ) => x [ 1 ] . toUpperCase ( ) ) +
266
+ "Plugin" ; // Assumes plugin function is camelCased with Plugin suffix
267
+ return (
268
+ importedPlugin . default || importedPlugin [ functionName ]
269
+ ) ;
270
+ } catch ( importError ) {
271
+ elizaLogger . error (
272
+ `Failed to import plugin: ${ plugin } ` ,
273
+ importError
274
+ ) ;
275
+ return [ ] ; // Return null for failed imports
276
+ }
277
+ } )
278
+ ) ;
279
+ return importedPlugins ;
280
+ } else {
281
+ return [ ] ;
282
+ }
283
+ }
284
+
266
285
export function getTokenForProvider (
267
286
provider : ModelProviderName ,
268
287
character : Character
@@ -921,7 +940,10 @@ const startAgents = async () => {
921
940
}
922
941
923
942
// upload some agent functionality into directClient
924
- directClient . startAgent = async ( character : Character ) => {
943
+ directClient . startAgent = async ( character ) => {
944
+ // Handle plugins
945
+ character . plugins = await handlePluginImporting ( character . plugins ) ;
946
+
925
947
// wrap it so we don't have to inject directClient later
926
948
return startAgent ( character , directClient ) ;
927
949
} ;
0 commit comments