Submit a Plugin
Add your plugin to the Paperclip Hub registry. Submissions create a pull request — no account required beyond GitHub.
1
Read the Plugin SDK docs
Understand the manifest format, capabilities, and plugin lifecycle.
2
Build and publish to npm
Package your plugin as an npm module and publish it so we can verify it exists.
3
Submit below
Fill out the form. We'll open a pull request to the registry on your behalf.
Sign in with GitHub to continue
We use your GitHub account to open the pull request on your behalf.
Prefer the CLI?
You can also submit a plugin by manually opening a pull request to lacymorrow/paperclip-hub. Add a JSON file to registry/plugins/ that follows the schema:
# registry/plugins/your-plugin.json
{
"$schema": "../schema.json",
"name": "Your Plugin",
"npmPackage": "your-plugin",
"description": "What it does.",
"category": "tools",
"capabilities": ["tool"],
"author": "your-github-handle",
"submittedAt": "2026-05-07T00:00:00Z"
}The full schema is at registry/schema.json.