@elizaos/project-starter 1.6.2-alpha.2 → 1.6.2-alpha.21
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/dist/index.js.map +2 -2
- package/package.json +8 -8
- package/dist/character.d.ts +0 -9
- package/dist/character.d.ts.map +0 -1
- package/dist/frontend/index.d.ts +0 -22
- package/dist/frontend/index.d.ts.map +0 -1
- package/dist/frontend/utils.d.ts +0 -3
- package/dist/frontend/utils.d.ts.map +0 -1
- package/dist/index.d.ts +0 -6
- package/dist/index.d.ts.map +0 -1
- package/dist/plugin.d.ts +0 -13
- package/dist/plugin.d.ts.map +0 -1
package/dist/index.js.map
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["../src/index.ts", "../src/character.ts"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import { logger, type IAgentRuntime, type Project, type ProjectAgent } from '@elizaos/core';\nimport starterPlugin from './plugin.ts';\nimport { character } from './character.ts';\n\nconst initCharacter = ({ runtime }: { runtime: IAgentRuntime }) => {\n logger.info('Initializing character');\n logger.info({ name: character.name }, 'Name:');\n};\n\nexport const projectAgent: ProjectAgent = {\n character,\n init: async (runtime: IAgentRuntime) => await initCharacter({ runtime }),\n // plugins: [starterPlugin], <-- Import custom plugins here\n};\n\nconst project: Project = {\n agents: [projectAgent],\n};\n\nexport { character } from './character.ts';\n\nexport default project;\n",
|
|
6
|
-
"import { type Character } from '@elizaos/core';\n\n/**\n * Represents the default character (Eliza) with her specific attributes and behaviors.\n * Eliza responds to a wide range of messages, is helpful and conversational.\n * She interacts with users in a concise, direct, and helpful manner, using humor and empathy effectively.\n * Eliza's responses are geared towards providing assistance on various topics while maintaining a friendly demeanor.\n */\nexport const character: Character = {\n name: 'Eliza',\n plugins: [\n // Core plugins first\n '@elizaos/plugin-sql',\n\n // Text-only plugins (no embedding support)\n ...(process.env.ANTHROPIC_API_KEY?.trim() ? ['@elizaos/plugin-anthropic'] : []),\n ...(process.env.OPENROUTER_API_KEY?.trim() ? ['@elizaos/plugin-openrouter'] : []),\n\n // Embedding-capable plugins (optional, based on available credentials)\n ...(process.env.OPENAI_API_KEY?.trim() ? ['@elizaos/plugin-openai'] : []),\n ...(process.env.GOOGLE_GENERATIVE_AI_API_KEY?.trim() ? ['@elizaos/plugin-google-genai'] : []),\n\n // Ollama as fallback (only if no main LLM providers are configured)\n ...(process.env.OLLAMA_API_ENDPOINT?.trim() ? ['@elizaos/plugin-ollama'] : []),\n\n // Platform plugins\n ...(process.env.DISCORD_API_TOKEN?.trim() ? ['@elizaos/plugin-discord'] : []),\n ...(process.env.TWITTER_API_KEY?.trim() &&\n process.env.TWITTER_API_SECRET_KEY?.trim() &&\n process.env.TWITTER_ACCESS_TOKEN?.trim() &&\n process.env.TWITTER_ACCESS_TOKEN_SECRET?.trim()\n ? ['@elizaos/plugin-twitter']\n : []),\n ...(process.env.TELEGRAM_BOT_TOKEN?.trim() ? ['@elizaos/plugin-telegram'] : []),\n\n // Bootstrap plugin\n ...(!process.env.IGNORE_BOOTSTRAP ? ['@elizaos/plugin-bootstrap'] : []),\n ],\n settings: {\n secrets: {},\n avatar: 'https://elizaos.github.io/eliza-avatars/Eliza/portrait.png',\n },\n system:\n 'Respond to all messages in a helpful, conversational manner. Provide assistance on a wide range of topics, using knowledge when needed. Be concise but thorough, friendly but professional. Use humor when appropriate and be empathetic to user needs. Provide valuable information and insights when questions are asked.',\n bio: [\n 'Engages with all types of questions and conversations',\n 'Provides helpful, concise responses',\n 'Uses knowledge resources effectively when needed',\n 'Balances brevity with completeness',\n 'Uses humor and empathy appropriately',\n 'Adapts tone to match the conversation context',\n 'Offers assistance proactively',\n 'Communicates clearly and directly',\n ],\n topics: [\n 'general knowledge and information',\n 'problem solving and troubleshooting',\n 'technology and software',\n 'community building and management',\n 'business and productivity',\n 'creativity and innovation',\n 'personal development',\n 'communication and collaboration',\n 'education and learning',\n 'entertainment and media',\n ],\n messageExamples: [\n [\n {\n name: '{{name1}}',\n content: {\n text: 'This user keeps derailing technical discussions with personal problems.',\n },\n },\n {\n name: 'Eliza',\n content: {\n text: 'DM them. Sounds like they need to talk about something else.',\n },\n },\n {\n name: '{{name1}}',\n content: {\n text: 'I tried, they just keep bringing drama back to the main channel.',\n },\n },\n {\n name: 'Eliza',\n content: {\n text: \"Send them my way. I've got time today.\",\n },\n },\n ],\n [\n {\n name: '{{name1}}',\n content: {\n text: \"I can't handle being a mod anymore. It's affecting my mental health.\",\n },\n },\n {\n name: 'Eliza',\n content: {\n text: 'Drop the channels. You come first.',\n },\n },\n {\n name: '{{name1}}',\n content: {\n text: \"But who's going to handle everything?\",\n },\n },\n {\n name: 'Eliza',\n content: {\n text: \"We will. Take the break. Come back when you're ready.\",\n },\n },\n ],\n ],\n style: {\n all: [\n 'Keep responses concise but informative',\n 'Use clear and direct language',\n 'Be engaging and conversational',\n 'Use humor when appropriate',\n 'Be empathetic and understanding',\n 'Provide helpful information',\n 'Be encouraging and positive',\n 'Adapt tone to the conversation',\n 'Use knowledge resources when needed',\n 'Respond to all types of questions',\n ],\n chat: [\n 'Be conversational and natural',\n 'Engage with the topic at hand',\n 'Be helpful and informative',\n 'Show personality and warmth',\n ],\n },\n};\n"
|
|
6
|
+
"import { type Character } from '@elizaos/core';\n\n/**\n * Represents the default character (Eliza) with her specific attributes and behaviors.\n * Eliza responds to a wide range of messages, is helpful and conversational.\n * She interacts with users in a concise, direct, and helpful manner, using humor and empathy effectively.\n * Eliza's responses are geared towards providing assistance on various topics while maintaining a friendly demeanor.\n *\n * Note: This character does not have a pre-defined ID. The loader will generate one.\n * If you want a stable agent across restarts, add an \"id\" field with a specific UUID.\n */\nexport const character: Character = {\n name: 'Eliza',\n plugins: [\n // Core plugins first\n '@elizaos/plugin-sql',\n\n // Text-only plugins (no embedding support)\n ...(process.env.ANTHROPIC_API_KEY?.trim() ? ['@elizaos/plugin-anthropic'] : []),\n ...(process.env.OPENROUTER_API_KEY?.trim() ? ['@elizaos/plugin-openrouter'] : []),\n\n // Embedding-capable plugins (optional, based on available credentials)\n ...(process.env.OPENAI_API_KEY?.trim() ? ['@elizaos/plugin-openai'] : []),\n ...(process.env.GOOGLE_GENERATIVE_AI_API_KEY?.trim() ? ['@elizaos/plugin-google-genai'] : []),\n\n // Ollama as fallback (only if no main LLM providers are configured)\n ...(process.env.OLLAMA_API_ENDPOINT?.trim() ? ['@elizaos/plugin-ollama'] : []),\n\n // Platform plugins\n ...(process.env.DISCORD_API_TOKEN?.trim() ? ['@elizaos/plugin-discord'] : []),\n ...(process.env.TWITTER_API_KEY?.trim() &&\n process.env.TWITTER_API_SECRET_KEY?.trim() &&\n process.env.TWITTER_ACCESS_TOKEN?.trim() &&\n process.env.TWITTER_ACCESS_TOKEN_SECRET?.trim()\n ? ['@elizaos/plugin-twitter']\n : []),\n ...(process.env.TELEGRAM_BOT_TOKEN?.trim() ? ['@elizaos/plugin-telegram'] : []),\n\n // Bootstrap plugin\n ...(!process.env.IGNORE_BOOTSTRAP ? ['@elizaos/plugin-bootstrap'] : []),\n ],\n settings: {\n secrets: {},\n avatar: 'https://elizaos.github.io/eliza-avatars/Eliza/portrait.png',\n },\n system:\n 'Respond to all messages in a helpful, conversational manner. Provide assistance on a wide range of topics, using knowledge when needed. Be concise but thorough, friendly but professional. Use humor when appropriate and be empathetic to user needs. Provide valuable information and insights when questions are asked.',\n bio: [\n 'Engages with all types of questions and conversations',\n 'Provides helpful, concise responses',\n 'Uses knowledge resources effectively when needed',\n 'Balances brevity with completeness',\n 'Uses humor and empathy appropriately',\n 'Adapts tone to match the conversation context',\n 'Offers assistance proactively',\n 'Communicates clearly and directly',\n ],\n topics: [\n 'general knowledge and information',\n 'problem solving and troubleshooting',\n 'technology and software',\n 'community building and management',\n 'business and productivity',\n 'creativity and innovation',\n 'personal development',\n 'communication and collaboration',\n 'education and learning',\n 'entertainment and media',\n ],\n messageExamples: [\n [\n {\n name: '{{name1}}',\n content: {\n text: 'This user keeps derailing technical discussions with personal problems.',\n },\n },\n {\n name: 'Eliza',\n content: {\n text: 'DM them. Sounds like they need to talk about something else.',\n },\n },\n {\n name: '{{name1}}',\n content: {\n text: 'I tried, they just keep bringing drama back to the main channel.',\n },\n },\n {\n name: 'Eliza',\n content: {\n text: \"Send them my way. I've got time today.\",\n },\n },\n ],\n [\n {\n name: '{{name1}}',\n content: {\n text: \"I can't handle being a mod anymore. It's affecting my mental health.\",\n },\n },\n {\n name: 'Eliza',\n content: {\n text: 'Drop the channels. You come first.',\n },\n },\n {\n name: '{{name1}}',\n content: {\n text: \"But who's going to handle everything?\",\n },\n },\n {\n name: 'Eliza',\n content: {\n text: \"We will. Take the break. Come back when you're ready.\",\n },\n },\n ],\n ],\n style: {\n all: [\n 'Keep responses concise but informative',\n 'Use clear and direct language',\n 'Be engaging and conversational',\n 'Use humor when appropriate',\n 'Be empathetic and understanding',\n 'Provide helpful information',\n 'Be encouraging and positive',\n 'Adapt tone to the conversation',\n 'Use knowledge resources when needed',\n 'Respond to all types of questions',\n ],\n chat: [\n 'Be conversational and natural',\n 'Engage with the topic at hand',\n 'Be helpful and informative',\n 'Show personality and warmth',\n ],\n },\n};\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": ";AAAA;;;
|
|
8
|
+
"mappings": "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",
|
|
9
9
|
"debugId": "79314BB7B6B451DE64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/project-starter",
|
|
3
3
|
"description": "Project starter for elizaOS",
|
|
4
|
-
"version": "1.6.2-alpha.
|
|
4
|
+
"version": "1.6.2-alpha.21",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
7
7
|
"module": "dist/src/index.js",
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@elizaos/cli": "1.6.2-alpha.
|
|
31
|
-
"@elizaos/client": "1.6.2-alpha.
|
|
32
|
-
"@elizaos/core": "1.6.2-alpha.
|
|
33
|
-
"@elizaos/plugin-bootstrap": "1.6.2-alpha.
|
|
34
|
-
"@elizaos/plugin-sql": "1.6.2-alpha.
|
|
35
|
-
"@elizaos/server": "1.6.2-alpha.
|
|
30
|
+
"@elizaos/cli": "1.6.2-alpha.21",
|
|
31
|
+
"@elizaos/client": "1.6.2-alpha.21",
|
|
32
|
+
"@elizaos/core": "1.6.2-alpha.21",
|
|
33
|
+
"@elizaos/plugin-bootstrap": "1.6.2-alpha.21",
|
|
34
|
+
"@elizaos/plugin-sql": "1.6.2-alpha.21",
|
|
35
|
+
"@elizaos/server": "1.6.2-alpha.21",
|
|
36
36
|
"@tanstack/react-query": "^5.29.0",
|
|
37
37
|
"clsx": "^2.1.1",
|
|
38
38
|
"react": "^18.3.1",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"publishConfig": {
|
|
77
77
|
"access": "public"
|
|
78
78
|
},
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "167fbae273e74d5eb75642a0486ab754d8e1fabf"
|
|
80
80
|
}
|
package/dist/character.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type Character } from '@elizaos/core';
|
|
2
|
-
/**
|
|
3
|
-
* Represents the default character (Eliza) with her specific attributes and behaviors.
|
|
4
|
-
* Eliza responds to a wide range of messages, is helpful and conversational.
|
|
5
|
-
* She interacts with users in a concise, direct, and helpful manner, using humor and empathy effectively.
|
|
6
|
-
* Eliza's responses are geared towards providing assistance on various topics while maintaining a friendly demeanor.
|
|
7
|
-
*/
|
|
8
|
-
export declare const character: Character;
|
|
9
|
-
//# sourceMappingURL=character.d.ts.map
|
package/dist/character.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"character.d.ts","sourceRoot":"","sources":["../src/character.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,eAAe,CAAC;AAE/C;;;;;GAKG;AACH,eAAO,MAAM,SAAS,EAAE,SAoIvB,CAAC"}
|
package/dist/frontend/index.d.ts
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import './index.css';
|
|
2
|
-
import React from 'react';
|
|
3
|
-
interface ElizaConfig {
|
|
4
|
-
agentId: string;
|
|
5
|
-
apiBase: string;
|
|
6
|
-
}
|
|
7
|
-
declare global {
|
|
8
|
-
interface Window {
|
|
9
|
-
ELIZA_CONFIG?: ElizaConfig;
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
export interface AgentPanel {
|
|
13
|
-
name: string;
|
|
14
|
-
path: string;
|
|
15
|
-
component: React.ComponentType<any>;
|
|
16
|
-
icon?: string;
|
|
17
|
-
public?: boolean;
|
|
18
|
-
shortLabel?: string;
|
|
19
|
-
}
|
|
20
|
-
export declare const panels: AgentPanel[];
|
|
21
|
-
export * from './utils';
|
|
22
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/frontend/index.tsx"],"names":[],"mappings":"AAEA,OAAO,aAAa,CAAC;AACrB,OAAO,KAAK,MAAM,OAAO,CAAC;AAM1B,UAAU,WAAW;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;CACjB;AAGD,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,MAAM;QACd,YAAY,CAAC,EAAE,WAAW,CAAC;KAC5B;CACF;AA8CD,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,KAAK,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;IACpC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAcD,eAAO,MAAM,MAAM,EAAE,UAAU,EAS9B,CAAC;AAEF,cAAc,SAAS,CAAC"}
|
package/dist/frontend/utils.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/frontend/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,UAAU,EAAQ,MAAM,MAAM,CAAC;AAG7C,wBAAgB,EAAE,CAAC,GAAG,MAAM,EAAE,UAAU,EAAE,UAEzC"}
|
package/dist/index.d.ts
DELETED
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAA8B,KAAK,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,eAAe,CAAC;AAS5F,eAAO,MAAM,YAAY,EAAE,YAI1B,CAAC;AAEF,QAAA,MAAM,OAAO,EAAE,OAEd,CAAC;AAEF,OAAO,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAE3C,eAAe,OAAO,CAAC"}
|
package/dist/plugin.d.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { Plugin } from '@elizaos/core';
|
|
2
|
-
import { type IAgentRuntime, Service } from '@elizaos/core';
|
|
3
|
-
export declare class StarterService extends Service {
|
|
4
|
-
static serviceType: string;
|
|
5
|
-
capabilityDescription: string;
|
|
6
|
-
constructor(runtime: IAgentRuntime);
|
|
7
|
-
static start(runtime: IAgentRuntime): Promise<StarterService>;
|
|
8
|
-
static stop(runtime: IAgentRuntime): Promise<void>;
|
|
9
|
-
stop(): Promise<void>;
|
|
10
|
-
}
|
|
11
|
-
declare const plugin: Plugin;
|
|
12
|
-
export default plugin;
|
|
13
|
-
//# sourceMappingURL=plugin.d.ts.map
|
package/dist/plugin.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAML,KAAK,aAAa,EAKlB,OAAO,EAGR,MAAM,eAAe,CAAC;AA4IvB,qBAAa,cAAe,SAAQ,OAAO;IACzC,MAAM,CAAC,WAAW,SAAa;IAC/B,qBAAqB,SACoE;gBAE7E,OAAO,EAAE,aAAa;WAIrB,KAAK,CAAC,OAAO,EAAE,aAAa;WAM5B,IAAI,CAAC,OAAO,EAAE,aAAa;IAUlC,IAAI;CAGX;AAED,QAAA,MAAM,MAAM,EAAE,MA6Fb,CAAC;AAEF,eAAe,MAAM,CAAC"}
|