What problem does it solve? Developing a Todero plugin involves many moving parts: scaffolding the package, wiring the manifest, installing it into a running Todero instance, and verifying the build. This Skill guides the entire CLI-first workflow so plugins are created as external packages and installed correctly without touching Todero core. ## Core Features & Use Cases - CLI-first scaffolding: Uses todero plugin init with template, category, and SDK snapshot flags to generate a complete plugin package outside the Todero repo. - Local install and rebuild loop: Installs plugins by absolute local path with todero plugin install, leveraging server-side watching of dist/ output for automatic worker restarts. - Verification and reporting: Runs pnpm typecheck, pnpm test, and pnpm build, then reports scaffold path, install status, and reload limitations. - Use Case: You want to build a new connector plugin for Todero. The Skill scaffolds it into ~/dev/todero-plugins/my-connector, installs it into your local Todero instance, and confirms the plugin reports ready status. ## Quick Start Create a new Todero plugin called @acme/my-plugin, install it into my local Todero instance, and verify it builds and passes tests.