What problem does it solve?
It removes the repetitive setup work required to create new elizaOS plugins by generating a complete, consistent plugin package with actions, providers, services, evaluators, tests, and documentation.
Core Features & Use Cases
- Plugin scaffolding from a single request: Creates a full plugin directory with TypeScript configuration, package metadata, and an entry point that registers the plugin components.
- Action/provider/evaluator/service generation: Produces structured implementations with validation (e.g., Zod), runtime wiring, and clear extension points.
- Production-grade project setup: Adds testing scaffolds and documentation so the plugin can be iterated on and published quickly.
- Use case example: You need a new integration for an external system (e.g., a chat platform or API), including validated actions, context providers for enriched prompts, and evaluators for response quality.
- Best-fit scenarios: Start from scratch, extend an existing plugin with additional components, or generate reusable plugin packages for repeatable capabilities.
Quick Start
Scaffold a plugin named "weather" with actions, a provider, and a tested service for fetching current conditions and formatting them for the agent.