What problem does it solve? Creating a Paperclip plugin involves many moving parts: scaffolding the package, wiring the manifest, worker, and UI entries, installing it into a running Paperclip instance, and verifying everything works. This Skill guides the entire CLI-first workflow so plugins are built correctly outside Paperclip core and pass verification before being declared done. ## Core Features & Use Cases - CLI-first scaffolding: Uses paperclipai plugin init with templates, categories, and SDK snapshot options, with a documented fallback when the CLI is not on PATH. - Local install and rebuild loop: Covers paperclipai plugin install <path>, watch-mode rebuilds, worker restarts, and UI hot-reload caveats. - Verification and success checklist: Enforces pnpm typecheck, pnpm test, pnpm build, plus a structured report of scaffold path, commands run, install status, and reload limitations. - Use Case: A developer wants to add a custom connector plugin to their local Paperclip instance. The Skill scaffolds the package in an external directory, installs it by absolute path, and confirms the plugin reports ready status via paperclipai plugin list. ## Quick Start Create a new Paperclip plugin called @acme/my-plugin, install it into my running local Paperclip instance, and verify it builds and passes tests.