Agent skill · AI & Agents

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/agent/elizaos-ghostspeak-ghostspeak/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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's inside
Steps it walks through
  1. What is ElizaOS?
  2. When to Use This Skill
  3. Core Concepts
  4. Plugin Structure
  5. Actions (Agent Capabilities)
  6. Providers (Data Sources)
  7. Character Definition
  8. GhostSpeak Integration
  9. Using @ghostspeak/sdk in Actions
  10. Telegram Integration (apps/web)
  11. Testing Plugins
  12. Development Workflow
  13. Best Practices
  14. Additional Resources
Ships with 1 file
  • metadata.json
Commands it runs
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
More from claude-skill-registry
All skills →
About this skill
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.

Keep going