elizaos-expert-2026
Expert ElizaOS plugin and agent development (January 2026). Use when (1) Building ElizaOS plugins, (2) Creating AI agent characters, (3) Implementing actions, providers, evaluators, (4) Integrating with AgentRuntime, (5) Building platform clients (Discord, Telegram), (6) Testing plugins, or any ElizaOS architecture questions.
npx skills add majiayu000/claude-skill-registry --skill elizaos-ghostspeak-ghostspeak --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# ElizaOS Expert Guide - January 2026 ## What is ElizaOS? ElizaOS is a framework for building AI agents with: - **Plugin System** - Modular actions, providers, evaluators, services - **Multi-Platform** - Discord, Telegram, Twitter, Direct clients - **Character System** - Personality, knowledge, examples - **Memory Management** - Vector database, conversation history - **Model Flexibility** - OpenAI, Anthropic, local models **Version**: 1.7.0+ **GhostSpeak Plugin**: `@ghostspeak/plugin-elizaos` ## When to Use This Skill - Building custom ElizaOS plugins - Creating agent characters (like Caisper) - Implementing custom actions or providers - Integrating with GhostSpeak smart contracts - Setting up Telegram/Discord bots - Managing agent memory and context ## Core Concepts ### Plugin Structure ```typescript import { Plugin } from "@elizaos/core"; const myPlugin: Plugin = { name: "my-plugin", description: "My custom plugin", actions: [myAction], providers: [myProvider], evaluators: [myEvaluator], services: [myService], }; export default myPlugin; ``` ### Actions (Agent Capabilities) ```typescript import { Action, HandlerCallback } from "@elizaos/core"; export const myAction: Action = { n
- What is ElizaOS?
- When to Use This Skill
- Core Concepts
- Plugin Structure
- Actions (Agent Capabilities)
- Providers (Data Sources)
- Character Definition
- GhostSpeak Integration
- Using @ghostspeak/sdk in Actions
- Telegram Integration (apps/web)
- Testing Plugins
- Development Workflow
- Best Practices
- Additional Resources
Install ElizaOS pnpm add @elizaos/core @elizaos/client-telegram Create plugin mkdir packages/plugin-my-plugin cd packages/plugin-my-plugin pnpm init Build plugin pnpm build Test plugin pnpm test
What does the elizaos-expert-2026 skill do?
Expert ElizaOS plugin and agent development (January 2026). Use when (1) Building ElizaOS plugins, (2) Creating AI agent characters, (3) Implementing actions, providers, evaluators, (4) Integrating with AgentRuntime, (5) Building platform clients (Discord, Telegram), (6) Testing plugins, or any ElizaOS architecture questions.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill elizaos-ghostspeak-ghostspeak --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
