hull marketplace search
Synopsis
hull marketplace search lists the plugins in a marketplace index. With no
keyword it prints every plugin; with a keyword it prints only those whose name or
description contains that text.
When to use it
Use it to discover plugins before installing them, and to read off a plugin’s name and who signed it so you can verify and install it.
What happens
- hull fetches the JSON index from
--index(defaulthttps://plugins.hull.dev/index.json) over HTTP(S). - If you gave a keyword, hull keeps only entries whose name or description contains it (case-sensitive substring match).
- hull prints one line per matching plugin: name, version, the signer, and the description.
No cluster is contacted, and nothing is downloaded or installed.
Usage
hull marketplace search [keyword] [flags]
Flags
| Flag | Cause → effect |
|---|---|
--index <url> |
Fetch the plugin list from this index instead of the default https://plugins.hull.dev/index.json. |
Also inherits the global flags.
Worked example
Search the default marketplace for backup-related plugins:
hull marketplace search backup
backup-restore 1.4.0 signedBy=hull-core — Snapshot and restore release state
s3-backup 0.9.2 signedBy=acme-ops — Push release snapshots to an S3 bucket
List everything in a private marketplace:
hull marketplace search --index https://plugins.example.internal/index.json
See also
marketplace verify— check an archive before installingplugin install